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) 编辑