关键点:
使用一个静态变量去保存new出的类
<?php
class Preferences{
private static $_instance = null;
public static function getInstance(){
if ( empty(self::$_instance) ){
self::$_instance = new Preferences();
}
return self::$_instance;
}
public function setProperty($key, $val){
$this->props[$key]=$val;
}
public function getProperty($key){
return $this->props[$key];
}
}
$pref = Preferences::getInstance();
$pref->setProperty('name','matt');
unset($pref);
$pref = Preferences::getInstance();
echo $pref->getProperty('name');
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。