为了账号安全,请及时绑定邮箱和手机立即绑定

在PHP 5中创建单例设计模式

在PHP 5中创建单例设计模式

慕桂英4014372 2019-06-24 10:44:40
在PHP 5中创建单例设计模式如何使用PHP 5类创建Singleton类?
查看完整描述

3 回答

?
MMTTMM

TA贡献1869条经验 获得超4个赞

PHP 5.3允许通过后期静态绑定创建可继承的Singleton类:

class Singleton{
    protected static $instance = null;

    protected function __construct()
    {
        //Thou shalt not construct that which is unconstructable!
    }

    protected function __clone()
    {
        //Me not like clones! Me smash clones!
    }

    public static function getInstance()
    {
        if (!isset(static::$instance)) {
            static::$instance = new static;
        }
        return static::$instance;
    }}

这解决了这个问题,在PHP5.3之前,任何扩展Singleton的类都会生成它的父类的实例,而不是它自己的实例。

现在你可以:

class Foobar extends Singleton {};$foo = Foobar::getInstance();

$foo将是Foobar的实例,而不是Singleton的实例。


查看完整回答
反对 回复 2019-06-24
  • 3 回答
  • 0 关注
  • 590 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信