示例#1
0
文件: Mysql.php 项目: kevinwan/xf
 public static function getInstance()
 {
     if (self::$_instance === null) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }