這篇文章主要介紹了PHP 反射(Reflection)使用執行個體,本文講解了ReflectionClass、ReflectionExtension、 ReflectionFunction、ReflectionMethod、ReflectionObject、ReflectionParameter等類的使用執行個體,需要的朋友可以參考下
PHP Reflection是用於擷取類、擴充、方法、函數、對象、參數、屬性的詳細資料。
ReflectionClass類擷取類相關資訊,如擷取屬性、方法、文檔注釋等。
?
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
<?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; } } //匯出類 ReflectionClass::export('Person'); $r = new ReflectionClass('Person'); //擷取所有屬性 print_r($r->getProperties()); /** * 擷取指定屬性 * ReflectionProperty::IS_STATIC * ReflectionProperty::IS_PUBLIC * ReflectionProperty::IS_PROTECTED * ReflectionProperty::IS_PRIVATE */ print_r($r->getProperties(ReflectionProperty::IS_PRIVATE)); //擷取注釋 print_r($r->getProperty('id')->getDocComment()); //擷取方法 print_r($r->getMethods()); |
ReflectionExtension 類用於擷取擴充相關資訊
?
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$re = new ReflectionExtension('Reflection'); print_r($re->getClasses()); //擴充的所有類 print_r($re->getClassNames()); //擴充所有類名 $dom = new ReflectionExtension('mysql'); print_r($dom->getConstants());//擴充常量 print_r($dom->getDependencies());//該擴充依賴 print_r($dom->getFunctions());//擴充方法 print_r($dom->getINIEntries());//擴充ini資訊 print_r($dom->getName());//副檔名稱 print_r($dom->getVersion());//擴充版本 print_r($dom->info());//擴充資訊 print_r($dom->isPersistent());//是否是持久擴充 print_r($dom->isTemporary()); //是否是臨時擴充 |
ReflectionFunction類 使用者擷取函數相關資訊
?
| 1 2 3 4 5 |
$rf = new ReflectionFunction('array_merge'); foreach($rf->getParameters() as $item) { echo $item . PHP_EOL; } |
ReflectionMethod類使用者擷取方法相關資訊
?
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
class Person { public $name; /** * get name of person */ public function getName() { return $this->name; } public function setName($v) { $this->name = $v; } } $rm = new ReflectionMethod('Person', 'getName'); print_r($rm->isPublic()); print_r($rm->getDocComment()); |
ReflectionObject 類 用於擷取對象相關資訊
?
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
class Person { public $name; public function __construct($name) { $this->name = $name; } public function getName() { return $this->name; } public function setName($v) { $this->name = $v; } } $a = new Person('a'); $ro = new ReflectionObject($a); print_r($ro->getMethods()); |
ReflectionParameter 擷取函數或方法參數的相關資訊。
?
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
class Person { public $name; public function __construct($name) { $this->name = $name; } public function getName() { return $this->name; } public function setName($v) { $this->name = $v; } } $p = new ReflectionParameter(array('Person', 'setName'), 0); print_r($p->getPosition()); //0 print_r($p->getName()); //v |
ReflectionProperty 擷取類的屬性的相關資訊。
?
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
class Person { /** 測試 */ public $name; public function __construct($name) { $this->name = $name; } public function getName() { return $this->name; } public function setName($v) { $this->name = $v; } } $p = new ReflectionProperty('Person', 'name'); print_r($p->getDocComment()); |