コード例 #1
0
ファイル: Kurogo.php プロジェクト: hxfnd/Kurogo-Mobile-Web
 public static function sharedInstance()
 {
     if (!isset(self::$_instance)) {
         $c = __CLASS__;
         self::$_instance = new $c();
     }
     return self::$_instance;
 }