以前我也寫過一個注冊表類,不過那一個不能進行多個類的注冊,下面用數組對類進行了存儲。
復制代碼 代碼如下:
<?php
//基礎類
class webSite {//一個非常簡單的基礎類
private $siteName;
private $siteUrl;
function __construct($siteName,$siteUrl){
$this->siteName=$siteName;
$this->siteUrl=$siteUrl;
}
function getName(){
return $this->siteName;
}
function getUrl(){
return $this->siteUrl;
}
}
class registry {//注冊表類 單例模式
private static $instance;
private $values=array();//用數組存放類名稱
private function __construct(){}//這個用法決定了這個類不能直接實例化
static function instance(){
if (!isset(self::$instance)){self::$instance=new self();}
return self::$instance;
}
function get($key){//獲取已經注冊了的類
if (isset($this->values[$key])){
return $this->values[$key];
}
return null;
}
function set($key,$value){//注冊類方法
$this->values[$key]=$value;
}
}
$reg=registry::instance();
$reg->set("website",new webSite("WEB開發筆記","www.chhua.com"));//對類進行注冊
$website=$reg->get("website");//獲取類
echo $website->getName();//輸出WEB開發筆記
echo $website->getUrl();//輸出www.chhua.com
?>
注冊表的作用是提供系統級別的對象訪問功能。有的同學會說,這樣是多此一舉,不過小項目中的確沒有必要對類進行注冊,如果是大項目,還是非常有用的。