2021年4月1日

PHP设计模式-单例

摘要: <?php/** * 三私一公 */ class singleSimple{ private static $instante = ''; private function __construct(){ } public static function instanteMethod(){ if(se 阅读全文

posted @ 2021-04-01 22:01 totau 阅读(22) 评论(0) 推荐(0) 编辑

PHP设计模式-抽象工厂

摘要: interface technology{ public function top(); } interface humanity{ public function most(); } class american implements technology{ public function top 阅读全文

posted @ 2021-04-01 19:38 totau 阅读(52) 评论(0) 推荐(0) 编辑

PHP设计模式-简单工厂模式

摘要: <?php class american{ public function talk(){ echo 'english'; } public function skin(){ echo 'while'; } } class chiness{ public function talk(){ echo 阅读全文

posted @ 2021-04-01 18:41 totau 阅读(19) 评论(0) 推荐(0) 编辑

PHP设计模式-普通工厂模式

摘要: ####普通工厂模式 interface person{ function talk();###说话 function skin();###肤色 } ###中国人特征 class chiness implements person{ public function talk(){ echo '中国话 阅读全文

posted @ 2021-04-01 17:43 totau 阅读(37) 评论(0) 推荐(0) 编辑

导航