Beispiel #1
0
 public static function getInstance($db)
 {
     if (is_null(self::$_instance) === true) {
         self::$_instance = new self($db);
     }
     return self::$_instance;
 }
Beispiel #2
0
 public function main()
 {
     $dbh = Tokyofr_Lib_Db::getInstance('blog');
     $dbh->select()->from(array(), array());
 }