通過PHP程式碼,就可以得到某object的所有資訊,並且可以和它互動反射api是php內建的oop技術擴充套件,包括一些類,異常和介面,綜合使用他們可用來幫助我們分析其它類,介面,方法,屬性,方法和擴充套件。這些oop擴充套件被稱為反射。
通過ReflectionClass,我們可以得到Person類的以下資訊:
- 常量Contants
- 屬性 Property Names
- 方法 Method Names靜態
- 屬性 Static Properties
- 名稱空間 Namespace
- Person類是否為final或者abstract
<?php
class Person
{
/**
* For the sake of demonstration, we"re setting this private
*/
private $_allowDynamicAttributes = false;
/** type=primary_autoincrement */
protected $id = 0;
/** type=varchar length=255 null */
protected $name;
/** type=text null */
protected $biography;
public function getId()
{
return $this->id;
}
public function setId($v)
{
$this->id = $v;
}
public function getName()
{
return $this->name;
}
public function setName($v)
{
$this->name = $v;
}
public function getBiography()
{
return $this->biography;
}
public function setBiography($v)
{
$this->biography = $v;
}
}
接下來反射它,只要把類名"Person"傳遞給ReflectionClass就可以了:
<?php
$class = new ReflectionClass('Person'); //建立Person這個類的反射類
$instance = $class->newInstanceArgs();//相當於例項化Person類
1)獲取屬性(Properties)
<?php
$properties = $class->getProperties();
foreach ($properties as $property) {
echo $property->getName() . "\n";
}
// 輸出:
// _allowDynamicAttributes
// id
// name
// biography
預設情況下,ReflectionClass會獲取到所有的屬性,private 和 protected的也可以。如果只想獲取到private屬性,就要額外傳個引數:
$private_properties = $class->getProperties(ReflectionProperty::IS_PRIVATE);
可用引數列表:
- ReflectionProperty::IS_STATIC
- ReflectionProperty::IS_PUBLIC
- ReflectionProperty::IS_PROTECTED
- ReflectionProperty::IS_PRIVATE
如果要同時獲取public 和protected屬性,就這樣寫:ReflectionProperty::IS_PUBLIC | ReflectionProperty::IS_PROTECTED。
2)獲取註釋
通過getDocComment可以得到寫給property的註釋。
<?php
foreach ($properties as $property) {
if ($property->isProtected()) {
$docblock = $property->getDocComment();
preg_match('/ type\=([a-z_]*) /', $property->getDocComment(), $matches);
echo $matches[1] . "\n";
}
}
// Output:
// primary_autoincrement
// varchar
// text
3)獲取類的方法
獲取方法(methods):通過getMethods() 來獲取到類的所有methods。
4)執行類的方法:
<?php
$instance->getName(); //執行Person裡的方法getName
//或者:
$ec = $class->getmethod('getName'); //獲取Person 類中的getName方法
$ec->invoke($instance); //執行getName 方法
555