主頁 > 知識(shí)庫 > PHP使用標(biāo)準(zhǔn)庫spl實(shí)現(xiàn)的觀察者模式示例

PHP使用標(biāo)準(zhǔn)庫spl實(shí)現(xiàn)的觀察者模式示例

熱門標(biāo)簽:合肥企業(yè)外呼系統(tǒng)線路 企業(yè)400電話辦理多少費(fèi)用 宿州正規(guī)外呼系統(tǒng)軟件 代理打電話機(jī)器人 桂陽公司如何做地圖標(biāo)注 萍鄉(xiāng)商鋪地圖標(biāo)注 電信外呼系統(tǒng)多少錢一個(gè)月 太原400電話申請(qǐng)流程 神龍斗士電話機(jī)器人

本文實(shí)例講述了PHP使用標(biāo)準(zhǔn)庫spl實(shí)現(xiàn)的觀察者模式。分享給大家供大家參考,具體如下:

前面使用純php實(shí)現(xiàn)了一個(gè)觀察者模式(php觀察者模式), 現(xiàn)在使用php標(biāo)準(zhǔn)庫spl在次實(shí)現(xiàn)觀察者模式,好處是:隨意的生成您想使用的觀察者!

?php
/**
 * Created by PhpStorm.
 * User: evolution
 * Date: 14-12-27
 * Time: 下午5:50
 */
class Login implements SplSubject {
  private $storage;
  public $status;
  public $ip;
  const LOGIN_ACCESS = 1;
  const LOGIN_WRONG_PASS = 2;
  const LOGIN_USER_UNKNOWN = 3;
  function __construct(){
    $this->storage = new SplObjectStorage();
  }
  function attach (SplObserver $observer) {
    $this->storage->attach($observer);
  }
  function detach(SplObserver $observer){
    $this->storage->detach($observer);
  }
  function notify(){
    foreach ($this->storage as $obs) {
      $obs->update($this);
    }
  }
  /**
   * @author jichao.wang
   * 執(zhí)行登陸
   */
  function handleLogin()
  {
    $ip = rand(1,100);
    switch (rand(1, 3)) {
      case 1:
        $this->setStatus(self::LOGIN_ACCESS, $ip);
        $ret = true;
        break;
      case 2:
        $this->setStatus(self::LOGIN_WRONG_PASS, $ip);
        $ret = false;
        break;
      case 3:
        $this->setStatus(self::LOGIN_USER_UNKNOWN, $ip);
        $ret = false;
        break;
    }
    /**
     * handle event
     */
    $this->notify();
    return $ret;
  }
  /**
   * @param $status
   * @author jichao.wang
   * set login status
   */
  function setStatus($status,$ip)
  {
    $this->status = $status;
    $this->ip = $ip;
  }
  /**
   * @return mixed
   * @author jichao.wang
   * get login status
   */
  function getStatus()
  {
    return $this->status;
  }
}
/**
 * 只針對(duì)登陸的貫觀察者
 * Class LoginObserver
 */
abstract class LoginObserver implements SplObserver {
  private $login;
  function __construct(Login $login){
    $this->login = $login;
    $login->attach($this);
  }
  /**
   * 對(duì)外統(tǒng)一的訪問點(diǎn)
   * @param SplSubject $subject
   */
  function update( SplSubject $subject ){
    if($subject === $this->login){
      $this->doUpdate($subject);
    }
  }
  abstract function doUpdate( Login $login );
}
/**
 * Class EmailObserver
 */
class EmailObserver extends LoginObserver{
  //不同功能的觀察者實(shí)現(xiàn)不同的功能
  function doUpdate( Login $login ){
    $status = $login->getStatus();
    if($status == Login::LOGIN_ACCESS){
//      $this->sendMail('用戶ip:'.$observable->ip.'登陸成功!');
      echo __CLASS__.'用戶ip:'.$login->ip.'登陸成功!'.'------------------';
    }
    if($status == Login::LOGIN_WRONG_PASS){
//      $this->sendMail('用戶ip:'.$observable->ip.'登陸失敗,密碼錯(cuò)誤!');
      echo __CLASS__.'用戶ip:'.$login->ip.'登陸失敗,密碼錯(cuò)誤!'.'------------------';
    }
    if($status == Login::LOGIN_USER_UNKNOWN){
//      $this->sendMail('用戶ip:'.$observable->ip.'登陸失敗,無此用戶!');
      echo __CLASS__.'用戶ip:'.$login->ip.'登陸失敗,無此用戶!'.'------------------';
    }
  }
}
//實(shí)例化登陸信息
$login = new Login();
//實(shí)現(xiàn)發(fā)郵件觀察者
new EmailObserver($login);
//開始登陸
$login->handleLogin();

運(yùn)行結(jié)果:

EmailObserver用戶ip:77登陸成功!------------------

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

希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • PHP SPL標(biāo)準(zhǔn)庫之文件操作(SplFileInfo和SplFileObject)實(shí)例
  • PHP SPL標(biāo)準(zhǔn)庫之?dāng)?shù)據(jù)結(jié)構(gòu)棧(SplStack)介紹
  • PHP SPL標(biāo)準(zhǔn)庫之?dāng)?shù)據(jù)結(jié)構(gòu)堆(SplHeap)簡單使用實(shí)例
  • 解析PHP SPL標(biāo)準(zhǔn)庫的用法(遍歷目錄,查找固定條件的文件)
  • PHP SPL標(biāo)準(zhǔn)庫之SplFixedArray使用實(shí)例
  • PHP標(biāo)準(zhǔn)庫(PHP SPL)詳解
  • PHP SPL標(biāo)準(zhǔn)庫中的常用函數(shù)介紹
  • PHP SPL標(biāo)準(zhǔn)庫之接口(Interface)詳解
  • PHP標(biāo)準(zhǔn)庫 (SPL)——Countable用法示例

標(biāo)簽:白銀 衡陽 崇左 辛集 廊坊 太原 鄂州 綏化

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