예제 #1
0
파일: jsloc.php 프로젝트: rudiec/GDlib
 private static function getInstance()
 {
     if (is_null(self::$instance)) {
         $c = __CLASS__;
         self::$instance = new $c();
     }
     return self::$instance;
 }