您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關怎么在php中應用裝飾者模式,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
裝飾模式指的是在不必改變原類文件和使用繼承的情況下,動態地擴展一個對象的功能。它是通過創建一個包裝對象,也就是裝飾來包裹真實的對象。
示例:
A、B、C編輯同一篇文章。
class Article{ protected $content; public function __construct($info){ $this->content = $info; } } class editor_A extends Article{ public function __construct(Article $obj){ $this->content = $obj->content . '<br/>' . '編輯A新寫的內容'; } public function decorator(){ return $this->content; } } class editor_B extends Article{ public function __construct(Article $obj){ $this->content = $obj->content . '<br/>' . '編輯B新寫的內容'; } public function decorator(){ return $this->content; } } class editor_C extends Article{ public function __construct(Article $obj){ $this->content = $obj->content . '<br/>' . '編輯C新寫的內容'; } public function decorator(){ return $this->content; } } $artCls = new Article('你好'); //編輯A先秀修改,然后編輯B修改,然后編輯C修改 $a = new editor_A($artCls); $b = new editor_B($a); $c = new editor_C($b); echo $c->decorator(); //編輯B先秀修改,然后編輯A修改 $b = new editor_B($artCls); $a = new editor_A($b); echo $a->decorator(); //重點是傳遞參數的地方,使用Article $obj傳遞上一個操作的對象, //來實現對同一個對象進行連續操作
運行結果:
你好
編輯A新寫的內容
編輯B新寫的內容
編輯C新寫的內容你好
編輯B新寫的內容
編輯A新寫的內容
上述就是小編為大家分享的怎么在php中應用裝飾者模式了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。