首页 > 开发 > PHP > 正文

PHP 反射(Reflection)使用实例

2024-05-04 23:35:03
字体:
来源:转载
供稿:网友

这篇文章主要介绍了PHP 反射(Reflection)使用实例,本文讲解了ReflectionClass、ReflectionExtension、 ReflectionFunction、ReflectionMethod、ReflectionObject、ReflectionParameter等类的使用实例,需要的朋友可以参考下

PHP Reflection是用于获取类、扩展、方法、函数、对象、参数、属性的详细信息。

ReflectionClass类获取类相关信息,如获取属性、方法、文档注释等。

  1. <?php 
  2.  
  3. class Person { 
  4. /** 
  5. * For the sake of demonstration, we"re setting this private 
  6. */ 
  7. private $_allowDynamicAttributes = false; 
  8.  
  9. /** type=primary_autoincrement */ 
  10. protected $id = 0; 
  11.  
  12. /** type=varchar length=255 null */ 
  13. protected $name
  14.  
  15. /** type=text null */ 
  16. protected $biography
  17.  
  18. public function getId() 
  19. return $this->id; 
  20. public function setId($v
  21. $this->id = $v
  22. public function getName() 
  23. return $this->name; 
  24. public function setName($v
  25. $this->name = $v
  26. public function getBiography() 
  27. return $this->biography; 
  28. public function setBiography($v
  29. $this->biography = $v
  30.  
  31. //导出类 
  32. ReflectionClass::export('Person'); 
  33.  
  34. $r = new ReflectionClass('Person'); 
  35.  
  36. //获取所有属性 
  37. print_r($r->getProperties()); 
  38.  
  39. /** 
  40. * 获取指定属性 
  41. * ReflectionProperty::IS_STATIC 
  42. * ReflectionProperty::IS_PUBLIC 
  43. * ReflectionProperty::IS_PROTECTED 
  44. * ReflectionProperty::IS_PRIVATE 
  45. */ 
  46. print_r($r->getProperties(ReflectionProperty::IS_PRIVATE)); 
  47.  
  48. //获取注释 
  49. print_r($r->getProperty('id')->getDocComment()); 
  50.  
  51. //获取方法 
  52. print_r($r->getMethods()); 


ReflectionExtension 类用于获取扩展相关信息

 

 
  1. $re = new ReflectionExtension('Reflection'); 
  2. print_r($re->getClasses()); //扩展的所有类 
  3. print_r($re->getClassNames()); //扩展所有类名 
  4.  
  5. $dom = new ReflectionExtension('mysql'); 
  6. print_r($dom->getConstants());//扩展常量 
  7. print_r($dom->getDependencies());//该扩展依赖 
  8. print_r($dom->getFunctions());//扩展方法 
  9. print_r($dom->getINIEntries());//扩展ini信息 
  10. print_r($dom->getName());//扩展名称 
  11. print_r($dom->getVersion());//扩展版本 
  12. print_r($dom->info());//扩展信息 
  13. print_r($dom->isPersistent());//是否是持久扩展 
  14. print_r($dom->isTemporary()); //是否是临时扩展 

ReflectionFunction类 用户获取函数相关信息

 

 
  1. $rf = new ReflectionFunction('array_merge'); 
  2.  
  3. foreach($rf->getParameters() as $item) { 
  4. echo $item . PHP_EOL; 

ReflectionMethod类用户获取方法相关信息

 

 
  1. class Person { 
  2.  
  3. public $name
  4.  
  5. /** 
  6. * get name of person 
  7. */ 
  8. public function getName() 
  9. return $this->name; 
  10. public function setName($v
  11. $this->name = $v
  12.  
  13. $rm = new ReflectionMethod('Person''getName'); 
  14.  
  15. print_r($rm->isPublic()); 
  16. print_r($rm->getDocComment()); 

ReflectionObject 类 用于获取对象相关信息

 

 
  1. class Person { 
  2.  
  3. public $name
  4.  
  5. public function __construct($name
  6. $this->name = $name
  7.  
  8. public function getName() 
  9. return $this->name; 
  10.  
  11. public function setName($v
  12. $this->name = $v
  13.  
  14. $a = new Person('a'); 
  15.  
  16. $ro = new ReflectionObject($a); 
  17.  
  18. print_r($ro->getMethods()); 

ReflectionParameter 获取函数或方法参数的相关信息。

 

 
  1. class Person { 
  2.  
  3. public $name
  4.  
  5. public function __construct($name
  6. $this->name = $name
  7.  
  8. public function getName() 
  9. return $this->name; 
  10.  
  11. public function setName($v
  12. $this->name = $v
  13.  
  14. $p = new ReflectionParameter(array('Person''setName'), 0); 
  15.  
  16. print_r($p->getPosition()); //0 
  17. print_r($p->getName()); //v 

ReflectionProperty 获取类的属性的相关信息。

  1. class Person { 
  2.  
  3. /** 测试 */ 
  4. public $name
  5.  
  6. public function __construct($name
  7. $this->name = $name
  8.  
  9. public function getName() 
  10. return $this->name; 
  11.  
  12. public function setName($v
  13. $this->name = $v
  14.  
  15. $p = new ReflectionProperty('Person''name'); 
  16.  
  17. print_r($p->getDocComment()); 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表