欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP观察者模式示例【Laravel框架中有用到】

程序员文章站 2022-06-14 12:01:57
本文实例讲述了php观察者模式。分享给大家供大家参考,具体如下:

本文实例讲述了php观察者模式。分享给大家供大家参考,具体如下:

<?php
//观察者模式
//抽象主题类
interface subject
{
  public function attach(observer $observer);
  public function detach(observer $observer);
  //通知所有注册过的观察者对象
  public function notifyobservers();
}
//具体主题角色
class concretesubject implements subject
{
  private $_observers;
  public function __construct()
  {
    $this->_observers = array();
  }
  //增加一个观察者对象
  public function attach(observer $observer)
  {
    return array_push($this->_observers,$observer);
  }
  //删除一个已经注册过的观察者对象
  public function detach(observer $observer)
  {
    $index = array_search($observer,$this->_observers);
    if($index === false || !array_key_exists($index, $this->_observers)) return false;
    unset($this->_observers[$index]);
    return true;
  }
  //通知所有注册过的观察者
  public function notifyobservers()
  {
    if(!is_array($this->_observers)) return false;
    foreach($this->_observers as $observer)
    {
      $observer->update();
    }
    return true;
  }
}
//抽象观察者角色
interface observer
{
  //更新方法
  public function update();
}
//观察者实现
class concreteobserver implements observer
{
  private $_name;
  public function __construct($name)
  {
    $this->_name = $name;
  }
  //更新方法
  public function update()
  {
    echo 'observer'.$this->_name.' has notify';
  }
}
$subject = new concretesubject();
//添加第一个观察者
$observer1 = new concreteobserver('baixiaoshi');
$subject->attach($observer1);
echo 'the first notify:';
$subject->notifyobservers();
//添加第二个观察者
$observer2 = new concreteobserver('hurong');
echo '<br/>second notify:';
$subject->attach($observer2);
/*echo $subject->notifyobservers();
echo '<br/>';
$subject->notifyobservers();*/
?>

运行结果:

the first notify:observerbaixiaoshi has notify
second notify:

更多关于php相关内容感兴趣的读者可查看本站专题:《php面向对象程序设计入门教程》、《php数组(array)操作技巧大全》、《php基本语法入门教程》、《php运算与运算符用法总结》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家php程序设计有所帮助。