コード例 #1
0
ファイル: Base.php プロジェクト: nameNotNull/yafapp
 public static function factory()
 {
     if (self::$_instance === null) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
コード例 #2
0
ファイル: Table.php プロジェクト: nameNotNull/yafapp
 public function __construct($dbName, $tableName)
 {
     $this->_db = Db_Base::factory();
     $this->_dataBaseName = $dbName;
     $this->_tableName = $tableName;
 }