示例#1
0
文件: Db.php 项目: namerows/sandbox
 public static function getInstance($db)
 {
     if (is_null(self::$_instance) === true) {
         self::$_instance = new self($db);
     }
     return self::$_instance;
 }
示例#2
0
 public function main()
 {
     $dbh = Tokyofr_Lib_Db::getInstance('blog');
     $dbh->select()->from(array(), array());
 }