当前位置:Gxlcms > PHP教程 > PHP设计模式——单例模式

PHP设计模式——单例模式

时间:2021-07-01 10:21:17 帮助过:31人阅读

PHP5中更容易实现单件模式,PHP5 对于类内部变量和函数的访问控制被加强了。将DbConn::_construct()构造方法设置为私有(private),这个类就不能被直接实例化。

组合使用静态方法和静态变量保持这个实例,并且设置构造函数为私有,以防止直接实例化类而创建实例,代码如下:

class DbConn {
/**
* static property to hold singleton instance
*/
static $instance = false;

/**
* constructor
* private so only getInstance() method can instantiate
* @return void
*/
private function __construct() {}

/**
* factory method to return the singleton instance
* @return DbConn
*/
public function getInstance() {
if (!DbConn::$instance) {
DbConn::$instance = new DbConn;
}
return DbConn::$instance;
}
}

以上就介绍了PHP设计模式——单例模式,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行