類型 | 說明 |
---|---|
Reflector | Reflector 是一個接口,被所有可導出的反射類所實現(xiàn)(implement) |
Reflection | 反射(reflection)類 |
ReflectionClass | 報告了一個類的有關(guān)信息 |
ReflectionZendExtension | 報告Zend擴展的相關(guān)信息 |
ReflectionExtension | 報告了PHP擴展的有關(guān)信息 |
ReflectionFunction | 報告了一個函數(shù)的有關(guān)信息 |
ReflectionFunctionAbstract | ReflectionFunction 的父類 |
ReflectionMethod | 報告了一個方法的有關(guān)信息 |
ReflectionObject | 報告了一個對象(object)的相關(guān)信息 |
ReflectionParameter | 取回了函數(shù)或方法參數(shù)的相關(guān)信息 |
ReflectionProperty | 報告了類的屬性的相關(guān)信息 |
假設定義了一個類 User,我們首先需要建立這個類的反射類實例,然后基于這個實例可以訪問 User 中的屬性或者方法。不管類中定義的成員權(quán)限聲明是否為public,都可以獲取到。
?php namespace Extend; use ReflectionClass; use Exception; /** * 用戶相關(guān)類 * Class User * @package Extend */ class User{ const ROLE = 'Students'; public $username = ''; private $password = ''; public function __construct($username, $password) { $this->username = $username; $this->password = $password; } /** * 獲取用戶名 * @return string */ public function getUsername() { return $this->username; } /** * 設置用戶名 * @param string $username */ public function setUsername($username) { $this->username = $username; } /** * 獲取密碼 * @return string */ private function getPassword() { return $this->password; } /** * 設置密碼 * @param string $password */ private function setPassowrd($password) { $this->password = $password; } } $class = new ReflectionClass('Extend\User'); // 將類名User作為參數(shù),即可建立User類的反射類 $properties = $class->getProperties(); // 獲取User類的所有屬性,返回ReflectionProperty的數(shù)組 $property = $class->getProperty('password'); // 獲取User類的password屬性ReflectionProperty $methods = $class->getMethods(); // 獲取User類的所有方法,返回ReflectionMethod數(shù)組 $method = $class->getMethod('getUsername'); // 獲取User類的getUsername方法的ReflectionMethod $constants = $class->getConstants(); // 獲取所有常量,返回常量定義數(shù)組 $constant = $class->getConstant('ROLE'); // 獲取ROLE常量 $namespace = $class->getNamespaceName(); // 獲取類的命名空間 $comment_class = $class->getDocComment(); // 獲取User類的注釋文檔,即定義在類之前的注釋 $comment_method = $class->getMethod('getUsername')->getDocComment(); // 獲取User類中g(shù)etUsername方法的注釋文檔
注意:創(chuàng)建反射類時傳送的類名,必須包含完整的命名空間,即使使用了 use 關(guān)鍵字。否則找不到類名會拋出異常。
一旦創(chuàng)建了反射類的實例,我們不僅可以通過反射類訪問原來類的方法和屬性,還能創(chuàng)建原來類的實例或則直接調(diào)用類里面的方法。
$class = new ReflectionClass('Extend\User'); // 將類名User作為參數(shù),即可建立User類的反射類 $instance = $class->newInstance('youyou', 1, '***'); // 創(chuàng)建User類的實例 $instance->setUsername('youyou_2'); // 調(diào)用User類的實例調(diào)用setUsername方法設置用戶名 $value = $instance->getUsername(); // 用過User類的實例調(diào)用getUsername方法獲取用戶名 echo $value;echo "\n"; // 輸出 youyou_2 $class->getProperty('username')->setValue($instance, 'youyou_3'); // 通過反射類ReflectionProperty設置指定實例的username屬性值 $value = $class->getProperty('username')->getValue($instance); // 通過反射類ReflectionProperty獲取username的屬性值 echo $value;echo "\n"; // 輸出 youyou_3 $class->getMethod('setUsername')->invoke($instance, 'youyou_4'); // 通過反射類ReflectionMethod調(diào)用指定實例的方法,并且傳送參數(shù) $value = $class->getMethod('getUsername')->invoke($instance); // 通過反射類ReflectionMethod調(diào)用指定實例的方法 echo $value;echo "\n"; // 輸出 youyou_4 try { $property = $class->getProperty('password_1'); $property->setAccessible(true); // 修改 $property 對象的可訪問性 $property->setValue($instance, 'password_2'); // 可以執(zhí)行 $value = $property->getValue($instance); // 可以執(zhí)行 echo $value;echo "\n"; // 輸出 password_2 $class->getProperty('password')->setAccessible(true); // 修改臨時ReflectionProperty對象的可訪問性 $class->getProperty('password')->setValue($instance, 'password');// 不能執(zhí)行,拋出不能訪問異常 $value = $class->getProperty('password')->getValue($instance); // 不能執(zhí)行,拋出不能訪問異常 $value = $instance->password; // 不能執(zhí)行,類本身的屬性沒有被修改,仍然是private }catch(Exception $e){echo $e;}
有時間會整理出反射類的API表,詳細的API列表可以先查閱官方文檔。
到此這篇關(guān)于PHP反射機制案例講解的文章就介紹到這了,更多相關(guān)PHP反射機制內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
上一篇:PHP垃圾回收機制講解