本文实例讲述了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相关内容感兴趣的读者可查看本站专题:《php面向对象程序设计入门教程》、《PHP基本语法入门教程》、《PHP网络编程技巧总结》、《PHP数组(Array)操作技巧大全》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。
您可能感兴趣的文章:PHP设计模式之观察者模式(Observer)详细介绍和代码实例php观察者模式应用场景实例详解ruby、javascript、php中的观察者模式实现代码PHP中常用的三种设计模式详解【单例模式、工厂模式、观察者模式】PHP观察者模式示例【Laravel框架中有用到】php设计模式之适配器模式原理、用法及注意事项详解php设计模式之工厂模式用法经典实例分析php设计模式之单例模式用法经典示例分析php设计模式之观察者模式定义与用法经典示例php设计模式之职责链模式定义与用法经典示例php模式设计之观察者模式应用实例分析