以前我也寫過一個註冊表類,不過那一個不能進行多個類的註冊,下面用數組對類進行了儲存。
複製代碼 代碼如下:<?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
?>
註冊表的作用是提供系統層級的對象訪問功能。有的同學會說,這樣是多此一舉,不過小項目中的確沒有必要對類進行註冊,如果是大項目,還是非常有用的。