苦逼程序员,你还在这样写单例吗
昨天看到一个同学写了一个访问数据的单例程序,先给大家看看他写的代码:
1234567891011class
A {
public
static
function
getInstance()
{
if
(! (self::
$_instance
instanceof
self) )
{
self::
$_instance
=
new
self();
//请注意,这应应该是self
}
return
self::
$_instance
;
}
}