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