时间:2021-07-01 10:21:17 帮助过:4人阅读
class VService {
private static $_Instance;
private function __clone() {}
private function __construct() {}
public static function getInstance() {
if(empty(self::$_Instance)) self::$_Instance = new self();
return self::$_Instance;
}
}