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