author:咔咔php
wechat:fangkangfkhtml
這個模式,讓倆個不相關的類經過觀察者模式實現一個功能,我的觀點吧!不能爲了使用設計模式而強硬使用設計模式,全部的模式都是同樣的,他只是一種思想而已設計模式
實現步驟:微信
1.定義一個observer接口this
2.定義發送模板消息的類設計
3.最後就是定義實際運行代碼的類payaftercode
在payafter這個類裏邊須要註冊觀察者server
<?php header("Content-type: text/html; charset=utf-8"); /** * Interface observer * 實現觀察者角色接口 */ interface Observer { public function send(); } /** * Class wxpush * 最終實現微信模板消息方法 */ class Wxpush implements observer { public function send() { echo '最終的發送消息代碼'; } } /** * Class payafter * 修改訂單消息 */ class Payafter { // 定義角色 private $_ob= []; /** * 註冊觀察者 */ public function register($obj) { $this->_ob[] = $obj; } /** * 實際觸發 */ public function trigger() { if(!empty($this->_ob)){ foreach($this->_ob as $value){ $value->send(); } } } } $payafter = new Payafter(); $payafter->register(new Wxpush()); $payafter->trigger();