主頁 > 知識庫 > PHP設計模式之觀察者模式定義與用法分析

PHP設計模式之觀察者模式定義與用法分析

熱門標簽:海南人工外呼系統(tǒng)有效果嗎 地下城堡2圖九地圖標注 西區(qū)企業(yè)怎么做地圖標注入駐 九江外呼系統(tǒng) 保定crm外呼系統(tǒng)運營商 阿里云400電話申請加工單 七魚外呼系統(tǒng)停用嗎 抖音有個地圖標注是什么意思 智能電話機器人排名前十名南京

本文實例講述了PHP設計模式之觀察者模式定義與用法。分享給大家供大家參考,具體如下:

觀察者模式 當一個對象的狀態(tài)發(fā)生改變時,依賴他的對象會全部收到通知,并自動更新

場景:當一個事件發(fā)生后,要執(zhí)行一連串更新操作,傳統(tǒng)的編程方式,就是在事件的代碼之后直接加入處理邏輯,當更新邏輯增多之后,代碼變得難以維護,這種方式是耦合式的,侵入式的,增加新的邏輯需要改變事件主題的代碼

觀察者模式實現(xiàn)了低耦合,非侵入式的通知與更新

abstract class EventGenerator
{
  private $ObServers = [];
  //增加觀察者
  public function add(ObServer $ObServer)
  {
    $this->ObServers[] = $ObServer;
  }
  //事件通知
  public function notify()
  {
    foreach ($this->ObServers as $ObServer) {
      $ObServer->update();
    }
  }
}
/**
 * 觀察者接口類
 * Interface ObServer
 */
interface ObServer
{
  public function update($event_info = null);
}
/**
 * 觀察者1
 */
class ObServer1 implements ObServer
{
  public function update($event_info = null)
  {
    echo "觀察者1 收到執(zhí)行通知 執(zhí)行完畢!\n";
  }
}
/**
 * 觀察者1
 */
class ObServer2 implements ObServer
{
  public function update($event_info = null)
  {
    echo "觀察者2 收到執(zhí)行通知 執(zhí)行完畢!\n";
  }
}
/**
 * 事件
 * Class Event
 */
class Event extends EventGenerator
{
  /**
   * 觸發(fā)事件
   */
  public function trigger()
  {
    //通知觀察者
    $this->notify();
  }
}
//創(chuàng)建一個事件
$event = new Event();
//為事件增加旁觀者
$event->add(new ObServer1());
$event->add(new ObServer2());
//執(zhí)行事件 通知旁觀者
$event->trigger();

運行結(jié)果:

觀察者1 收到執(zhí)行通知 執(zhí)行完畢!
觀察者2 收到執(zhí)行通知 執(zhí)行完畢!

1 抽象的事件產(chǎn)生類,定義一個添加觀察者方法,和通知方法(執(zhí)行觀察者方法)

2 定義觀察者接口,實現(xiàn)方法 ,觀察者實現(xiàn)

3 定義具體實現(xiàn)類繼承抽象事件,實現(xiàn)通知方法

4 創(chuàng)建對象,增加旁觀者,更新

具體注冊實例

?php
 /**
 * 3.1php設計模式-觀測者模式
 * 3.1.1概念:其實觀察者模式這是一種較為容易去理解的一種模式吧,它是一種事件系統(tǒng),意味
 *     著這一模式允許某個類觀察另一個類的狀態(tài),當被觀察的類狀態(tài)發(fā)生改變的時候,
 *     觀察類可以收到通知并且做出相應的動作;觀察者模式為您提供了避免組件之間
 *     緊密耦合的另一種方法
 * 3.1.2關鍵點:
 *    1.被觀察者->追加觀察者;->一處觀察者;->滿足條件時通知觀察者;->觀察條件
 *    2.觀察者 ->接受觀察方法
 * 3.1.3缺點:
 * 3.1.4觀察者模式在PHP中的應用場合:在web開發(fā)中觀察者應用的方面很多
 *    典型的:用戶注冊(驗證郵件,用戶信息激活),購物網(wǎng)站下單時郵件/短信通知等
 * 3.1.5php內(nèi)部的支持
 *    SplSubject 接口,它代表著被觀察的對象,
 *    其結(jié)構:
 *    interface SplSubject
 *    {
 *      public function attach(SplObserver $observer);
 *      public function detach(SplObserver $observer);
 *      public function notify();
 *    }
 *    SplObserver 接口,它代表著充當觀察者的對象,
 *    其結(jié)構:
 *    interface SplObserver
 *    {
 *      public function update(SplSubject $subject);
 *    }
 */
 /**
 * 用戶登陸-詮釋觀察者模式
 */
class User implements SplSubject {
  //注冊觀察者
  public $observers = array();
  //動作類型
  CONST OBSERVER_TYPE_REGISTER = 1;//注冊
  CONST OBSERVER_TYPE_EDIT = 2;//編輯
  /**
   * 追加觀察者
   * @param SplObserver $observer 觀察者
   * @param int $type 觀察類型
   */
  public function attach(SplObserver $observer, $type)
  {
    $this->observers[$type][] = $observer;
  }
  /**
   * 去除觀察者
   * @param SplObserver $observer 觀察者
   * @param int $type 觀察類型
   */
  public function detach(SplObserver $observer, $type)
  {
    if($idx = array_search($observer, $this->observers[$type], true))
    {
      unset($this->observers[$type][$idx]);
    }
  }
  /**
   * 滿足條件時通知觀察者
   * @param int $type 觀察類型
   */
  public function notify($type)
  {
    if(!empty($this->observers[$type]))
    {
      foreach($this->observers[$type] as $observer)
      {
        $observer->update($this);
      }
    }
  }
  /**
   * 添加用戶
   * @param str $username 用戶名
   * @param str $password 密碼
   * @param str $email 郵箱
   * @return bool
   */
  public function addUser()
  {
    //執(zhí)行sql
    //數(shù)據(jù)庫插入成功
    $res = true;
    //調(diào)用通知觀察者
    $this->notify(self::OBSERVER_TYPE_REGISTER);
    return $res;
  }
  /**
   * 用戶信息編輯
   * @param str $username 用戶名
   * @param str $password 密碼
   * @param str $email 郵箱
   * @return bool
   */
  public function editUser()
  {
    //執(zhí)行sql
    //數(shù)據(jù)庫更新成功
    $res = true;
    //調(diào)用通知觀察者
    $this->notify(self::OBSERVER_TYPE_EDIT);
    return $res;
  }
}
/**
* 觀察者-發(fā)送郵件
*/
class Send_Mail implements SplObserver
{
  /**
   * 相應被觀察者的變更信息
   * @param SplSubject $subject
   */
  public function update(SplSubject $subject)
  {
    $this->sendMail($subject->email, $title, $content);
  }
  /**
   *發(fā)送郵件
   *@param str $email 郵箱地址
   *@param str $title 郵件標題
   *@param str $content 郵件內(nèi)容
   */
  public function sendEmail($email, $title, $content)
  {
    //調(diào)用郵件接口,發(fā)送郵件
  }
}
?>

更多關于PHP相關內(nèi)容感興趣的讀者可查看本站專題:《php面向?qū)ο蟪绦蛟O計入門教程》、《PHP數(shù)組(Array)操作技巧大全》、《PHP基本語法入門教程》、《PHP運算與運算符用法總結(jié)》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》

希望本文所述對大家PHP程序設計有所幫助。

您可能感興趣的文章:
  • php設計模式之觀察者模式實例詳解【星際爭霸游戲案例】
  • PHP設計模式之觀察者模式入門與應用案例詳解
  • php設計模式之觀察者模式定義與用法經(jīng)典示例
  • PHP中常用的三種設計模式詳解【單例模式、工廠模式、觀察者模式】
  • PHP設計模式(觀察者模式)

標簽:昭通 九江 涼山 遼陽 梅河口 甘肅 十堰 韶關

巨人網(wǎng)絡通訊聲明:本文標題《PHP設計模式之觀察者模式定義與用法分析》,本文關鍵詞  PHP,設計模式,之,觀察者,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《PHP設計模式之觀察者模式定義與用法分析》相關的同類信息!
  • 本頁收集關于PHP設計模式之觀察者模式定義與用法分析的相關信息資訊供網(wǎng)民參考!
  • 推薦文章