コード例 #1
0
ファイル: Amber.php プロジェクト: BackupTheBerlios/amber-svn
 /**
  * @static
  * @access public
  * @param AmberConfig
  * @return Amber reference to singleton
  */
 function &getInstance($config = null)
 {
     static $instance = null;
     if (is_null($instance)) {
         $instance = new Amber();
         $instance->init($config);
     }
     return $instance;
 }