您好,登錄后才能下訂單哦!
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中如何使用注冊器模式類問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。