我无法弄清楚为什么 php 5.4 中出现此错误。
严格标准:不应静态调用非静态方法 dbInstance::getInstance()
课程是:
class dbInstance
{
private static $db;
public static function getInstance()
{
if (! self::$db) self::$db = new db();
return self::$db;
}
}
我这样称呼它:
$registry->db = $db = dbInstance::getInstance()
谢谢