示例#1
0
文件: jsloc.php 项目: rudiec/GDlib
 private static function getInstance()
 {
     if (is_null(self::$instance)) {
         $c = __CLASS__;
         self::$instance = new $c();
     }
     return self::$instance;
 }