php单例设计模式

Posted 飞狐爷

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php单例设计模式相关的知识,希望对你有一定的参考价值。

class car {
	static $obj = null;
	private function __construct(){}
	static function getObj(){
		if(is_null(self::$obj)){
			self::$obj = new car;
		}
		return self::$obj;
	}
	function __destruct(){
		echo "********************<br>";
	}
	function say(){
		echo ‘Hello World!<br>‘;
	}
}

$c = car::getObj();
$d = car::getObj();
$e = car::getObj();
$f = car::getObj();
$c = car::getObj();
$c->say();
$f->say();

  

以上是关于php单例设计模式的主要内容,如果未能解决你的问题,请参考以下文章

PHP之单例模式

PHP设计模式------单例模式

PHP设计模式之:单例模式

php设计模式-单例模式

设计模式之单例模式

php的单例模式