摘要: PHP经典设计模式 <?php /** * 单例模式 */ class Site { #定义属性 public $siteName; #定义本类的静态实例 protected static $instance=null; #禁用构造方法 private function __construct($s 阅读全文
posted @ 2019-11-08 16:17 苑儿飞雪 阅读(287) 评论(0) 推荐(0)