示例#1
0
文件: Registry.php 项目: lortnus/zf1
 public static function getInstance()
 {
     if (self::$_instance == null) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }