设计模式 注册表模式

<?php 
class webSite {//一个非常简单的基础类
    private $siteName;
    private $siteUrl;
    
    public function __construct($siteName,$siteUrl){
        $this->siteName=$siteName;
        $this->siteUrl=$siteUrl;
    }
    public function getName(){
        return $this->siteName;
    }
    public 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;
    }
    
    static function get($key){//获取已经注册了的类
        if (isset($this->values[$key])){
        return $this->values[$key];
        }
        return null;
    }
    static function set($key,$value){//注册类方法
        $this->values[$key]=$value;
    }
}

$reg=registry::instance();
$reg->set("website",new webSite("1","2"));//对类进行注册
$website=$reg->get("website");//获取类
echo $website->getName();//输出1
echo $website->getUrl();//输出2


你可能感兴趣的:(设计模式 注册表模式)