class single{ //设置成受保护的属性 protected static $ins = null; public static function getIns(){ if(self::$ins == null){ self::$ins = new self(); } return self::$ins; } //protected 防止通过new实例化对象; //final 防止被继承 final protected function __construct() { } /** * 禁止clone产生对象 */ final protected function __clone() { } }
时间: 2024-12-21 00:57:09