PHP设计模式——策略模式

Posted

tags:

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

<?php
/**
 * 策略模式
 * 策略模式帮助构建的对象不必自身包含逻辑,而是能够根据需要利用其他对象中的算法
 * 
 * 在能够创建基于对象的,由自包含算法组成的可互换对象时,最佳的做法是使用策略模式 
 */
interface Math{
    function calc($op1,$op2);
}

class Add implements Math{
    public function calc($op1,$op2) {
        return $op1 + $op2;
    }
}

class Sub implements Math{
    public function calc($op1,$op2) {
        return $op1 - $op2;
    }
}

//策略类
class CMath{
    protected $_calc = NULL;
    public function __construct($type) {
        $this->_calc = new $type;
    }
    public function calc($op1,$op2) {
        return $this->_calc->calc($op1,$op2);
    }
}

//使用
$type  = ‘Add‘;
$calc = new CMath($type);
$result = $calc->calc(1, 100);
echo ‘1 + 100 = ‘.$result.‘<br>‘;

//使用
$type  = ‘Sub‘;
$calc = new CMath($type);
$result = $calc->calc(1, 100);
echo ‘1 - 100 = ‘.$result;

 

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

php设计模式-策略模式

PHP 策略模式

策略模式-设计模式

PHP面向对象之策略模式

设计模式之策略模式PHP实现

php PHP片段保存模式