单例模式
Posted wangfenphph2
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单例模式相关的知识,希望对你有一定的参考价值。
<?php class DB{ //私有属性,用来保存单例; private static $instance; //私有构造函数,阻止在类的外部实例化 private function __construct(){ } //私有克隆函数,阻止在类的外部克隆对象; private function __clone(){ } //公有方法用来获取单例; public function getInstance(){ //当前对象不属于当前类的实例; if(! self :: $instance instanceof self) self::$instance=new self; return self::$instance; } } $object1=DB::getInstance(); $object2=DB::getInstance(); var_dump($object1,$object2); //object(DB)[1]
以上是关于单例模式的主要内容,如果未能解决你的问题,请参考以下文章