PHP設計模式 註冊表模式(多個類的註冊)

來源:互聯網
上載者:User

以前我也寫過一個註冊表類,不過那一個不能進行多個類的註冊,下面用數組對類進行了儲存。 複製代碼 代碼如下:<?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
?>

註冊表的作用是提供系統層級的對象訪問功能。有的同學會說,這樣是多此一舉,不過小項目中的確沒有必要對類進行註冊,如果是大項目,還是非常有用的。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.