コード例 #1
0
ファイル: Session.php プロジェクト: drehere/shenmegui
 public static function getInstance()
 {
     if (is_null(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }