摘要: <?php class Singleton{ //私有的静态属性 用于保存实例 private static $instance = null; //私有的构造方法 private function __construct() { //echo "this is construct\n"; } // 阅读全文
posted @ 2019-12-26 19:17 X__cicada 阅读(90) 评论(0) 推荐(0) 编辑