示例#1
0
 /**
  * Singleton Loader
  */
 public static function getLoader()
 {
     if (self::$loader == NULL) {
         self::$loader = new self();
     }
     return self::$loader;
 }
示例#2
0
文件: Env.php 项目: zrcing/phpenv
 /**
  * Singleton Loader
  */
 public static function getLoader()
 {
     if (!self::$loader instanceof self) {
         self::$loader = new self();
     }
     return self::$loader;
 }