예제 #1
0
파일: URI.php 프로젝트: rushuinet/yiee
 public static function getInstance()
 {
     if (is_null(self::$_instance) || isset(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }