コード例 #1
0
ファイル: Config.php プロジェクト: johann-weiss/MVC
 /**
  * Load the applications config file.
  *
  * @access public
  * @param  string $projectName The project that we are working with.
  * @static
  */
 public static function load($projectName)
 {
     self::$_store = parse_ini_file(dirname(__FILE__) . '/../' . $projectName . '/config.ini', true);
 }