예제 #1
0
파일: Common.php 프로젝트: JianKongBao/AAPF
 public function instance()
 {
     if (!self::$_instance instanceof self) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }