示例#1
0
文件: User.php 项目: bjtenao/tudu-web
 /**
  * 获取对象实例
  */
 public static function getInstance()
 {
     if (null === self::$_instance) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }