類 | 描 述 |
Reflection | 爲類的摘要信息提供靜態函數export() |
ReflectionClass | 類信息和工具 |
ReflectionMethod | 類方法信息和工具 |
ReflectionParameter | 方法參數信息 |
ReflectionProperty | 類屬性信息 |
ReflectionFunction | 函數信息和工具 |
ReflectionExtension | PHP擴展信息 |
ReflectionException | 錯誤類 |
使用反射API這些類,咱們能夠得到在運行時訪問對象、函數和腳本中的擴展的信息。經過這些信息咱們能夠用來分析類或者構建框架。php
咱們在工做中使用過一些用於檢查類屬性的函數,例如:get_class_methods、getProduct等。這些方法對獲取詳細類信息有很大的侷限性。java
咱們能夠經過反射API類:Reflection 和 ReflectionClass 提供的靜態方法 export 來獲取類的相關信息, export 能夠提供類的幾乎全部的信息,包括屬性和方法的訪問控制狀態、每一個方法須要的參數以及每一個方法在腳本文檔中的位置。這兩個工具類, export 靜態方法輸出結果是一致的,只是使用方式不一樣。設計模式
首先,構建一個簡單的類數組
1 <?php 2 3 class Student { 4 public $name; 5 protected $age; 6 private $sex; 7 8 public function __construct($name, $age, $sex) 9 { 10 $this->setName($name); 11 $this->setAge($age); 12 $this->setSex($sex); 13 } 14 15 public function setName($name) 16 { 17 $this->name = $name; 18 } 19 20 protected function setAge($age) 21 { 22 $this->age = $age; 23 } 24 25 private function setSex($sex) 26 { 27 $this->sex = $sex; 28 } 29 }
ReflectionClass::export('Student');
打印結果:框架
Class [ class Student ] {
@@ D:\wamp\www\test2.php 3-29
- Constants [0] { }
- Static properties [0] { }
- Static methods [0] { }
- Properties [3] {
Property [ public $name ]
Property [ protected $age ]
Property [ private $sex ]
}
- Methods [4] {
Method [ public method __construct ] {
@@ D:\wamp\www\test2.php 8 - 13
- Parameters [3] {
Parameter #0 [ $name ]
Parameter #1 [ $age ]
Parameter #2 [ $sex ]
}
}
Method [ public method setName ] {
@@ D:\wamp\www\test2.php 15 - 18
- Parameters [1] {
Parameter #0 [ $name ]
}
}
Method [ protected method setAge ] {
@@ D:\wamp\www\test2.php 20 - 23
- Parameters [1] {
Parameter #0 [ $age ]
}
}
Method [ private method setSex ] {
@@ D:\wamp\www\test2.php 25 - 28
- Parameters [1] {
Parameter #0 [ $sex ]
}
}
}
}
ReflectionClass類提供了很是多的工具方法,官方手冊給的列表以下:ide
ReflectionClass::__construct — 初始化 ReflectionClass 類 ReflectionClass::export — 導出一個類 ReflectionClass::getConstant — 獲取定義過的一個常量 ReflectionClass::getConstants — 獲取一組常量 ReflectionClass::getConstructor — 獲取類的構造函數 ReflectionClass::getDefaultProperties — 獲取默認屬性 ReflectionClass::getDocComment — 獲取文檔註釋 ReflectionClass::getEndLine — 獲取最後一行的行數 ReflectionClass::getExtension — 根據已定義的類獲取所在擴展的 ReflectionExtension 對象 ReflectionClass::getExtensionName — 獲取定義的類所在的擴展的名稱 ReflectionClass::getFileName — 獲取定義類的文件名 ReflectionClass::getInterfaceNames — 獲取接口(interface)名稱 ReflectionClass::getInterfaces — 獲取接口 ReflectionClass::getMethod — 獲取一個類方法的 ReflectionMethod。 ReflectionClass::getMethods — 獲取方法的數組 ReflectionClass::getModifiers — 獲取類的修飾符 ReflectionClass::getName — 獲取類名 ReflectionClass::getNamespaceName — 獲取命名空間的名稱 ReflectionClass::getParentClass — 獲取父類 ReflectionClass::getProperties — 獲取一組屬性 ReflectionClass::getProperty — 獲取類的一個屬性的 ReflectionProperty ReflectionClass::getReflectionConstant — Gets a ReflectionClassConstant for a class's constant ReflectionClass::getReflectionConstants — Gets class constants ReflectionClass::getShortName — 獲取短名 ReflectionClass::getStartLine — 獲取起始行號 ReflectionClass::getStaticProperties — 獲取靜態(static)屬性 ReflectionClass::getStaticPropertyValue — 獲取靜態(static)屬性的值 ReflectionClass::getTraitAliases — 返回 trait 別名的一個數組 ReflectionClass::getTraitNames — 返回這個類所使用 traits 的名稱的數組 ReflectionClass::getTraits — 返回這個類所使用的 traits 數組 ReflectionClass::hasConstant — 檢查常量是否已經定義 ReflectionClass::hasMethod — 檢查方法是否已定義 ReflectionClass::hasProperty — 檢查屬性是否已定義 ReflectionClass::implementsInterface — 接口的實現 ReflectionClass::inNamespace — 檢查是否位於命名空間中 ReflectionClass::isAbstract — 檢查類是不是抽象類(abstract) ReflectionClass::isAnonymous — 檢查類是不是匿名類 ReflectionClass::isCloneable — 返回了一個類是否可複製 ReflectionClass::isFinal — 檢查類是否聲明爲 final ReflectionClass::isInstance — 檢查類的實例 ReflectionClass::isInstantiable — 檢查類是否可實例化 ReflectionClass::isInterface — 檢查類是不是一個接口(interface) ReflectionClass::isInternal — 檢查類是否由擴展或核心在內部定義 ReflectionClass::isIterateable — 檢查是否可迭代(iterateable) ReflectionClass::isSubclassOf — 檢查是否爲一個子類 ReflectionClass::isTrait — 返回了是否爲一個 trait ReflectionClass::isUserDefined — 檢查是否由用戶定義的 ReflectionClass::newInstance — 從指定的參數建立一個新的類實例 ReflectionClass::newInstanceArgs — 從給出的參數建立一個新的類實例。 ReflectionClass::newInstanceWithoutConstructor — 建立一個新的類實例而不調用它的構造函數 ReflectionClass::setStaticPropertyValue — 設置靜態屬性的值 ReflectionClass::__toString — 返回 ReflectionClass 對象字符串的表示形式。
$prodClass = new ReflectionClass('Student'); Reflection::export($prodClass);
打印結果函數
Class [ class Student ] { @@ D:\wamp\www\test2.php 3-29 - Constants [0] { } - Static properties [0] { } - Static methods [0] { } - Properties [3] { Property [ public $name ] Property [ protected $age ] Property [ private $sex ] } - Methods [4] { Method [ public method __construct ] { @@ D:\wamp\www\test2.php 8 - 13 - Parameters [3] { Parameter #0 [ $name ] Parameter #1 [ $age ] Parameter #2 [ $sex ] } } Method [ public method setName ] { @@ D:\wamp\www\test2.php 15 - 18 - Parameters [1] { Parameter #0 [ $name ] } } Method [ protected method setAge ] { @@ D:\wamp\www\test2.php 20 - 23 - Parameters [1] { Parameter #0 [ $age ] } } Method [ private method setSex ] { @@ D:\wamp\www\test2.php 25 - 28 - Parameters [1] { Parameter #0 [ $sex ] } } } }
建立 ReflectionClass對象後,就可使用 Reflection 工具類輸出 Student 類的相關信息。Reflection::export() 能夠格式化和輸出任何實現 Reflector 接口的類的實例。工具
前面咱們瞭解的 ReflectionClass 工具類,知道此類提供了不少的工具方法用於獲取類的信息。例如,咱們能夠獲取到 Student 類的類型,是否能夠實例化測試
工具函數ui
function classData(ReflectionClass $class) { $details = ''; $name = $class->getName(); // 返回要檢查的類名 if ($class->isUserDefined()) { // 檢查類是否由用戶定義 $details .= "$name is user defined" . PHP_EOL; } if ($class->isInternal()) { // 檢查類是否由擴展或核心在內部定義 $details .= "$name is built-in" . PHP_EOL; } if ($class->isInterface()) { // 檢查類是不是一個接口 $details .= "$name is interface" . PHP_EOL; } if ($class->isAbstract()) { // 檢查類是不是抽象類 $details .= "$name is an abstract class" . PHP_EOL; } if ($class->isFinal()) { // 檢查類是否聲明爲 final $details .= "$name is a final class" . PHP_EOL; } if ($class->isInstantiable()) { // 檢查類是否可實例化 $details .= "$name can be instantiated" . PHP_EOL; } else { $details .= "$name can not be instantiated" . PHP_EOL; } return $details; } $prodClass = new ReflectionClass('Student'); print classData($prodClass);
打印結果
Student is user defined
Student can be instantiated
除了獲取類的相關信息,還能夠獲取 ReflectionClass 對象提供自定義類所在的文件名及文件中類的起始和終止行等相關源代碼信息。
function getClassSource(ReflectionClass $class) { $path = $class->getFileName(); // 獲取類文件的絕對路徑 $lines = @file($path); // 得到由文件中全部行組成的數組 $from = $class->getStartLine(); // 提供類的起始行 $to = $class->getEndLine(); // 提供類的終止行 $len = $to - $from + 1; return implode(array_slice($lines, $from - 1, $len)); } $prodClass = new ReflectionClass('Student'); var_dump(getClassSource($prodClass));
打印結果
string 'class Student {
public $name;
protected $age;
private $sex;
public function __construct($name, $age, $sex)
{
$this->setName($name);
$this->setAge($age);
$this->setSex($sex);
}
public function setName($name)
{
$this->name = $name;
}
protected function setAge($age)
{
$this->age = $age;
}
private function setSex($sex)
{
$this->sex = $sex;
}
}
' (length=486)
咱們看到 getClassSource 接受一個 ReflectionClass 對象做爲它的參數,並返回相應類的源代碼。該函數忽略了錯誤處理,在實際中應該要檢查參數和結果代碼!
相似於檢查類,ReflectionMethod 對象能夠用於檢查類中的方法。
得到 ReflectionMethod 對象的方法有兩種:
第一種是經過 ReflectionClass::getMethods() 得到 ReflectionMethod 對象的數組,這種方式的好處是不用提早知道方法名,會返回類中全部方法的 ReflectionMethod 對象。
第二種是直接使用 ReflectionMethod 類實例化對象,這種方式只能獲取一個類方法對象,須要提早知道方法名。
ReflectionMethod 對象的工具方法:
ReflectionMethod::__construct — ReflectionMethod 的構造函數
ReflectionMethod::export — 輸出一個回調方法
ReflectionMethod::getClosure — 返回一個動態創建的方法調用接口,譯者注:可使用這個返回值直接調用非公開方法。
ReflectionMethod::getDeclaringClass — 獲取反射函數調用參數的類表達
ReflectionMethod::getModifiers — 獲取方法的修飾符
ReflectionMethod::getPrototype — 返回方法原型 (若是存在)
ReflectionMethod::invoke — Invoke
ReflectionMethod::invokeArgs — 帶參數執行
ReflectionMethod::isAbstract — 判斷方法是不是抽象方法
ReflectionMethod::isConstructor — 判斷方法是不是構造方法
ReflectionMethod::isDestructor — 判斷方法是不是析構方法
ReflectionMethod::isFinal — 判斷方法是否認義 final
ReflectionMethod::isPrivate — 判斷方法是不是私有方法
ReflectionMethod::isProtected — 判斷方法是不是保護方法 (protected)
ReflectionMethod::isPublic — 判斷方法是不是公開方法
ReflectionMethod::isStatic — 判斷方法是不是靜態方法
ReflectionMethod::setAccessible — 設置方法是否訪問
ReflectionMethod::__toString — 返回反射方法對象的字符串表達
咱們能夠經過 ReflectionClass::getMethods() 得到 ReflectionMethod 對象的數組。
$prodClass = new ReflectionClass('Student'); $methods = $prodClass->getMethods(); var_dump($methods);
打印結果
array (size=4)
0 => &
object(ReflectionMethod)[2]
public 'name' => string '__construct' (length=11)
public 'class' => string 'Student' (length=7)
1 => &
object(ReflectionMethod)[3]
public 'name' => string 'setName' (length=7)
public 'class' => string 'Student' (length=7)
2 => &
object(ReflectionMethod)[4]
public 'name' => string 'setAge' (length=6)
public 'class' => string 'Student' (length=7)
3 => &
object(ReflectionMethod)[5]
public 'name' => string 'setSex' (length=6)
public 'class' => string 'Student' (length=7)
能夠看到咱們獲取到了 Student 的 ReflectionMethod 對象數組,每一個元素是一個對象,其中有兩個公共的屬性,name 爲方法名,class 爲所屬類。咱們能夠調用對象方法來獲取方法的信息。
直接使用 ReflectionMethod 類獲取類方法有關信息
$method = new ReflectionMethod('Student', 'setName'); var_dump($method);
打印結果
object(ReflectionMethod)[1]
public 'name' => string 'setName' (length=7)
public 'class' => string 'Student' (length=7)
在PHP5中,若是被檢查的方法只返回對象(即便對象是經過引用賦值或傳遞的),那麼 ReflectionMethod::retursReference() 不會返回 true。只有當被檢測的方法已經被明確聲明返回引用(在方法名前面有&符號)時,ReflectionMethod::returnsReference() 才返回 true。
在PHP5中,聲明類方法時能夠限制參數中對象的類型,所以檢查方法的參數變得很是必要。
相似於檢查方法,ReflectionParameter 對象能夠用於檢查類中的方法,該對象能夠告訴你參數的名稱,變量是否能夠按引用傳遞,還能夠告訴你參數類型提示和方法是否接受空值做爲參數。
得到 ReflectionParameter 對象的方法有一樣兩種,這和獲取 ReflectionMethod 對象很是相似:
第一種是經過 ReflectionMethod::getParameters() 方法返回 ReflectionParameter 對象數組,這種方法能夠獲取到一個方法的所有參數對象。
第二種是直接使用 ReflectionParameter 類實例化獲取對象,這種方法只能獲取到單一參數的對象。
ReflectionParameter 對象的工具方法:
ReflectionParameter::allowsNull — Checks if null is allowed
ReflectionParameter::canBePassedByValue — Returns whether this parameter can be passed by value
ReflectionParameter::__clone — Clone
ReflectionParameter::__construct — Construct
ReflectionParameter::export — Exports
ReflectionParameter::getClass — Get the type hinted class
ReflectionParameter::getDeclaringClass — Gets declaring class
ReflectionParameter::getDeclaringFunction — Gets declaring function
ReflectionParameter::getDefaultValue — Gets default parameter value
ReflectionParameter::getDefaultValueConstantName — Returns the default value's constant name if default value is constant or null
ReflectionParameter::getName — Gets parameter name
ReflectionParameter::getPosition — Gets parameter position
ReflectionParameter::getType — Gets a parameter's type
ReflectionParameter::hasType — Checks if parameter has a type
ReflectionParameter::isArray — Checks if parameter expects an array
ReflectionParameter::isCallable — Returns whether parameter MUST be callable
ReflectionParameter::isDefaultValueAvailable — Checks if a default value is available
ReflectionParameter::isDefaultValueConstant — Returns whether the default value of this parameter is constant
ReflectionParameter::isOptional — Checks if optional
ReflectionParameter::isPassedByReference — Checks if passed by reference
ReflectionParameter::isVariadic — Checks if the parameter is variadic
ReflectionParameter::__toString — To string
同獲取方法,此方法會返回一個數組,包含方法每一個參數的 ReflectionParameter 對象
$method = new ReflectionMethod('Student', 'setName'); $params = $method->getParameters(); var_dump($params);
打印結果
array (size=1)
0 => &
object(ReflectionParameter)[2]
public 'name' => string 'name' (length=4)
咱們來了解一下這種方式,爲了更好的理解,我修改一下 Student 類的 setName方法,增長兩個參數 a, b
... public function setName($name, $a, $b) { $this->name = $name; } ...
首先咱們看一下 ReflectionParameter 類的構造方法
public ReflectionParameter::__construct ( string $function , string $parameter )
能夠看到該類實例化時接收兩個參數:
$function:當須要獲取函數爲公共函數時只需傳函數名稱便可。當該函數是某個類方法時,須要傳遞一個數組,格式爲:array('class', 'function')。
$parameter:這個參數能夠傳遞兩種,第一種爲參數名(無$符號),第二種爲參數索引。注意:不管是參數名仍是索引,該參數都必須存在,不然會報錯。
下面舉例:
$params = new ReflectionParameter(array('Student', 'setName'), 1); var_dump($params);
打印結果
object(ReflectionParameter)[1]
public 'name' => string 'a' (length=1)
咱們再定義一個函數測試一下
function foo($a, $b, $c) { } $reflect = new ReflectionParameter('foo', 'c'); var_dump($reflect);
打印結果
object(ReflectionParameter)[2] public 'name' => string 'c' (length=1)
php的反射API功能很是的強大,它能夠將一個類的詳細信息獲取出來。咱們能夠經過反射API編寫個類來動態調用Module對象,該類能夠自由加載第三方插件並集成進已有的系統。而不須要把第三方的代碼硬編碼進原有的代碼中。雖然實際開發中使用反射狀況比較少,但瞭解反射API對工做中對代碼結構的瞭解和開發業務模式幫助仍是很是大的。此篇博文斷斷續續的寫了好久(主要就是懶!),若有錯誤與不足歡迎指正,建議!!