大话设计模式-单例模式

class Singleton {
	private static $instance;

	//构造方法让其私有,就堵死了外界利用new创建此类实例的可能
	private function __construct() {
	}

	//此方法是获得本类实例的唯一全局访问点
	public static function getInstance() {
		//若实例不存在,则new一个新实例,否则返回已有的实例
		if(self::$instance == null) {
			self::$instance = new Singleton();
		}
		return self::$instance;
	}
}

$s1 = Singleton::getInstance();
$s2 = Singleton::getInstance();
//比较两次实例化后对象的结果是实例相同
if($s1 === $s2) {
	echo '两个对象时相同的实例';
}


你可能感兴趣的:(大话设计模式-单例模式)