예제 #1
0
파일: Registry.php 프로젝트: lortnus/zf1
 public static function getInstance()
 {
     if (self::$_instance == null) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }