单态设计模式

创新互联-企业级云服务器提供商,为用户提供云服务器、CDN、云安全服务、服务器托管、服务器租用、高防主机等全方位云服务与各行业解决方案,帮助企业及个人极速备案,轻松上云,安全无忧。

class DB{

private static $obj=null;

private function __construct(){

echo "链接数据库成功
";

}

static function getInstance(){

if(is_null(self::$obj))

self::$obj=new self();

return self::$obj;

}

function query($sql){

echo $sql;

}

}

$db=DB::getInstance();

$db->query("select * from user");

?>


网页标题:单态设计模式
标题URL:http://pwwzsj.com/article/jhcdgh.html