PHP Warning: require(/var/www/html/App/Imooc/IDatabase.php): failed to open stream: No such file or directory in /var/www/html/App/Imooc/Loader.php on line 7
2014-12-25
这个函数我觉得这么写能简化代码
static function getInstance(){
if (!self::$db) {
self::$db = new self();
}
return self::$db;
}
static function getInstance(){
if (!self::$db) {
self::$db = new self();
}
return self::$db;
}
2014-12-24