Php观察者模式

php观察者模式

  • 观察者模式也称之为发布-订阅模式

  • 观察者设计模式能够更便利创建和查看目标对象状态的对象,并且提供和核心对象非耦合的置顶功能性。

  • 观察者设计模式非常常用,在一般复杂的WEB系统中,观察者模式可以帮你减轻代码设计的压力,降低代码耦合。

  • 以一个购物流程为例子

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    class order {

    protected $observers = array(); // 存放观察容器

    //观察者新增
    public function addObServer($type, $observer) {
    $this->observers[$type][] = $observer;
    }

    //运行观察者
    public function obServer($type) {
    if (isset($this->observers[$type])) {
    foreach ($this->observers[$type] as $obser) {
    $a = new $obser;
    $a->update($this); //公用方法
    }
    }
    }

    //下单购买流程
    public function create() {
    echo '购买成功' ."\n";
    $this->obServer('buy'); // buy动作
    }
    }
    class orderEmail {
    public static function update($order) {
    echo '发送购买成功一个邮件' ."\n";
    }
    }
    class orderStatus {
    public static function update($order) {
    echo '改变订单状态' ."\n";
    }
    }
    $ob = new order;
    $ob->addObServer('buy', 'orderEmail');
    $ob->addObServer('buy', 'orderStatus');
    $ob->create();
  • 输出

    1
    2
    3
    购买成功
    发送购买成功一个邮件
    改变订单状态
  • 观察者设计模式能够更便利创建和查看目标对象状态的对象,并且提供和核心对象非耦合的置顶功能性。观察者设计模式非常常用,在一般复杂的WEB系统中,观察者模式可以帮你减轻代码设计的压力,降低代码耦合。