示例#1
0
文件: Stack.php 项目: rocknoon/Stack
 /**
  * @return Stack
  */
 public static function GetInstance()
 {
     if (!self::$_instance) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }