码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2020-01-12 13:19:16      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:策略模式   color   option   return   button   sele   mat   add   imp   

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设计模式之策略模式实例代码

标签:策略模式   color   option   return   button   sele   mat   add   imp   

原文地址:https://www.cnblogs.com/Mishell/p/12182415.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!