程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP設計模式 注冊表模式(多個類的注冊)

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

編輯:關於PHP編程

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

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved