门面模式(singleton pattern)

  • 必须拥有一个访问级别为 private 的构造函数,有效防止类被随意实例化;
  • 必须拥有一个保存类的实例的静态变量;
  • 必须拥有一个访问这个实例的公共的静态方法,该方法通常被命名为 getInstance();
  • 必须拥有一个私有的空的__clone方法,防止实例被克隆复制
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
class Singleton
{

private $name;

private static $instance;

private function __construct()
{

}

private function __clone()
{
// TODO: Implement __clone() method.
}


public static function getInstance()
{

if (!self::$instance instanceof self) {
self::$instance = new self();
}
return self::$instance;
}


public function getName()
{
return $this->name;
}

public function setName($name)
{
$this->name = $name;
}

public function sayHi()
{
echo "hi";
}

}


// 调用demo

$single = Singleton::getInstance();
//$c_single= clone $single;
$single->setName("TOM");
echo $single->getName();
分享即是成长