标签:pac ack span weight instance stat line 好处 get
定义:使某个类的对象仅允许创建一个实例$db = IMooc\Database::getInstance();
<?php
namespace IMooc;
class Database
{
protected $db;
private function __construct()
{
}
static function getInstance()
{
if (self::$db)
{
return self::$db;
}
else
{
self::$db = new self();
return self::$db;
}
}
}
标签:pac ack span weight instance stat line 好处 get
原文地址:http://www.cnblogs.com/phonecom/p/c48686afa1b5382aa49e4906254d25d8.html