在PHP5中创建Singleton设计模式

在PHP5中创建Singleton设计模式,第1张

在PHP5中创建Singleton设计模式
final class UserFactory{        public static function Instance()    {        static $inst = null;        if ($inst === null) { $inst = new UserFactory();        }        return $inst;    }        private function __construct()    {    }}

使用方法

$fact = UserFactory::Instance();$fact2 = UserFactory::Instance();

$fact == $fact2;

但:

$fact = new UserFactory()

引发错误。

参阅http://php.net/manual/zh-
CN/language.variables.scope.php#language.variables.scope.static
了解静态变量范围以及为什么设置

static $inst = null;
有效。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5114610.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存