Yii隱藏URL中index.php的方法
688
2024-01-30
本文實例講述了PHP簡單裝飾器模式實現與用法。分享給大家供大家參考,具體如下:
<?php //裝飾器模式-在不改變原有類的結構上,對類的功能那個作補充 //武器基類 abstract class Weapon{ abstract public function descriptions(); abstract public function cost(); } //劍類 class Glave extends Weapon{ public function descriptions(){ return 'Glave'; } public function cost(){ return "100"; } } //匕首類 class Knife extends Weapon{ public function descriptions(){ return __CLASS__; } public function cost(){ return "80"; } } //斧類 class Axe extends Weapon{ public function descriptions(){ return __CLASS__; } public function cost(){ return "200"; } } //屬性類 class Property extends Weapon{ protected $_weapon = null; protected $_price = 0; protected $_descriptions = ''; public function __construct(Weapon $weapon){ $this->_weapon = $weapon; } public function cost(){ return $this->_weapon->cost() + $this->_price; } public function descriptions(){ return $this->_weapon->descriptions().$this->_descriptions; } } //力量屬性 class Strength extends Property{ protected $_price = 30; protected $_descriptions = '+ Strength'; } //敏捷屬性 class Agility extends Property{ protected $_price = 50; protected $_descriptions = '+ Agility'; } //智力屬性 class Intellect extends Property{ protected $_price = 20; protected $_descriptions = '+ Intellect'; } $weapon = new Agility(new Strength(new Strength(new Glave()))); echo $weapon->cost(); echo $weapon->descriptions();
更多關于PHP相關內容感興趣的讀者可查看本站專題:《php面向對象程序設計入門教程》、《PHP基本語法入門教程》、《PHP網絡編程技巧總結》、《PHP數組(Array)操作技巧大全》、《php字符串(string)用法總結》、《php+mysql數據庫操作入門教程》及《php常見數據庫操作技巧匯總》
希望本文所述對大家PHP程序設計有所幫助。
#免責聲明#
本站[綠夏技術導航]提供的一切軟件、教程和內容信息僅限用于學習和研究目的;不得將上述內容用于商業或者非法用途,否則,一切后果請用戶自負。本站信息來自網絡收集整理,版權爭議與本站無關。您必須在下載后的24個小時之內,從您的電腦或手機中徹底刪除上述內容。如果您喜歡該程序或內容,請支持正版,購買注冊,得到更好的正版服務。我們非常重視版權問題,如有侵權請郵件[admin@lxwl520.com]與我們聯系進行刪除處理。敬請諒解!