php设计模式之策略模式实例代码

Posted 毛毛 - 非科班的理科生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php设计模式之策略模式实例代码相关的知识,希望对你有一定的参考价值。

html

<html>
<head>
    <meta charset="UTF-8">
    <title>简单计算器</title>
</head>
<body>

<h1>简单计算器</h1>
    <form action="10.php" method="post">
        <input type="text" name="v1" id="">
        <select name="op" id="">
            <option value="add">+</option>
            <option value="reduce">-</option>
            <option value="multi">*</option>
            <option value="div">/</option>
        </select>
        <input type="text" name="v2" id="">
        <button type="submit">结果</button>
    </form>
</body>
</html>

php

<?php 
header("Content-type:text/html;charset=utf-8");

interface math{
    function cal($v1, $v2);
}

class mathadd implements math
{
    public function cal($v1, $v2){
        return $v1 + $v2;
    }
}

class mathreduce implements math
{
    public function cal($v1, $v2){
        return $v1 - $v2;
    }
}

class mathmulti implements math
{
    public function cal($v1, $v2){
        return $v1 * $v2;
    }
}

class mathdiv implements math
{
    public function cal($v1, $v2){
        return $v1 / $v2;
    }
}

/**
* 
*/
class Cmath 
{
    protected $type;
    protected $calc = null;
    function __construct($type)
    {
        $this->type = $type;
        $cal = math.$type;
        $this->calc = new $cal();

    }
    public function cal($v1, $v2){
        return $this->calc->cal($v1, $v2);
    }

}

$op = $_POST[op];
$cal = new Cmath($op);
echo $cal->cal($_POST[v1], $_POST[v2]);

以上是关于php设计模式之策略模式实例代码的主要内容,如果未能解决你的问题,请参考以下文章

PHP面向对象之策略模式

php设计模式之桥接模式实例代码

php设计模式之适配器模式实例代码

php设计模式之责任链模式实现举报功能实例代码

php设计模式之观察者模式实例代码

php设计模式之单例实例代码