中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php中如何使用注冊器模式類

發布時間:2021-07-12 10:21:03 來源:億速云 閱讀:148 作者:Leah 欄目:開發技術

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中如何使用注冊器模式類問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

定陶县| 沐川县| 宜黄县| 云阳县| 临朐县| 沭阳县| 宜君县| 阳信县| 临沧市| 宣城市| 凤凰县| 金塔县| 丰台区| 繁昌县| 炎陵县| 长宁县| 阳春市| 祁阳县| 玉林市| 蚌埠市| 常州市| 保德县| 图木舒克市| 普洱| 青铜峡市| 五家渠市| 福泉市| 新乡市| 三穗县| 三亚市| 安图县| 来安县| 大埔区| 洛阳市| 临汾市| 剑河县| 如东县| 云阳县| 海兴县| 民权县| 泸水县|