程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php中注冊器模式類用法實例分析,注冊器實例分析

php中注冊器模式類用法實例分析,注冊器實例分析

編輯:關於PHP編程

php中注冊器模式類用法實例分析,注冊器實例分析


本文實例講述了php中注冊器模式類用法。分享給大家供大家參考,具體如下:

注冊器讀寫類
Registry.class.php

<?php
/** 
 * 注冊器讀寫類 
 */
class Registry extends ArrayObject
{
  /** 
   * Registry實例
   *
   * @var object 
   */
  private static $_instance = null;
  /**
   * 取得Registry實例
   * 
   * @note 單件模式
   * 
   * @return object
   */
  public static function getInstance()
  {
    if (self::$_instance === null) {
      self::$_instance = new self();
      echo "new register object!";
    }
    return self::$_instance;
  }
  /**
   * 保存一項內容到注冊表中
   * 
   * @param string $name 索引
   * @param mixed $value 數據
   * 
   * @return void
   */
  public static function set($name, $value)
  {
    self::getInstance()->offsetSet($name, $value);
  }
  /**
   * 取得注冊表中某項內容的值
   * 
   * @param string $name 索引
   * 
   * @return mixed
   */
  public static function get($name)
  {
    $instance = self::getInstance();
    if (!$instance->offsetExists($name)) {
      return null;
    }
    return $instance->offsetGet($name);
  }
  /**
   * 檢查一個索引是否存在 
   * 
   * @param string $name 索引
   * 
   * @return boolean
   */
  public static function isRegistered($name)
  {
    return self::getInstance()->offsetExists($name);
  }
  /**
   * 刪除注冊表中的指定項
   * 
   * @param string $name 索引
   * 
   * @return void
   */
  public static function remove($name)
  {
    self::getInstance()->offsetUnset($name);
  }
}

需要注冊的類
 
test.class.php

<?php
class Test
{
   function hello()
   {
    echo "hello world";
    return;
   }
} 
?>

測試 test.php

<?php
//引入相關類
require_once "Registry.class.php";
require_once "test.class.php";
//new a object
$test=new Test();
//$test->hello();
//注冊對象
Registry::set('testclass',$test);
//取出對象
$t = Registry::get('testclass');
//調用對象方法
$t->hello();
?>

希望本文所述對大家php程序設計有所幫助。

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