91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在PHP項目中實現觀察者模式

發布時間:2021-02-03 17:24:31 來源:億速云 閱讀:191 作者:Leah 欄目:開發技術

如何在PHP項目中實現觀察者模式?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

具體如下:

<?php
  //定義觀察者調用接口
  class transfer{
    protected $_observers = array();
    //注冊對象
    public function register($sub){
      $this->_observers[] = $sub;
    }
    //外部統一調用
    public function trigger(){
      if(!empty($this->_observers)){
        foreach($this->_observers as $observer){
          $observer->update();
        }
      }
    }
  }
  //觀察者接口
  interface obserable{
    public function update();
  }
  //實現觀察者
  class listen implements obserable{
    public function update(){
      echo 'now first time you need to do listen<br/>';
    }
  }
  class read implements obserable{
    public function update(){
      echo 'now first time you need to read<br/>';
    }
  }
  class speak implements obserable{
    public function update(){
      echo 'now first time you need to speak<br/>';
    }
  }
  class write implements obserable{
    public function update(){
      echo 'now first time you need to write<br/>';
    }
  }
  $transfer = new transfer();
  $transfer->register(new listen());
  $transfer->register(new read());
  $transfer->register(new speak());
  $transfer->register(new write());
  $transfer->trigger();

關于如何在PHP項目中實現觀察者模式問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

广东省| 扶风县| 英山县| 台州市| 龙州县| 中阳县| 石台县| 正镶白旗| 左贡县| 德钦县| 奉化市| 平遥县| 巴彦淖尔市| 青神县| 博乐市| 海南省| 清流县| 利川市| 苍梧县| 望城县| 元朗区| 康保县| 通榆县| 安多县| 尼玛县| 定西市| 马公市| 麟游县| 上蔡县| 蚌埠市| 嘉定区| 杨浦区| 江城| 庆城县| 东明县| 明光市| 金坛市| 永济市| 蒙山县| 赣州市| 达孜县|