[关闭]
@Chiang 2019-12-24T15:18:48.000000Z 字数 1561 阅读 565

php的反射机制

PHP


反射是什么?

反射是程序可以访问、检测和修改它本身状态或行为的一种能力。就像将我反射给她,她就有了我的行为能力。

反射API

php具有完整的反射API,添加了对类、接口、函数、方法或者扩展进行反向工程的能力。反射API提供了方法来取出函数、类和方法中的文档注释。php的反射机制能拿出类里面的属性方法,private和protected也可以。

具体实现

php提供了相应的调用API,也就是方法。

  1. <?php
  2. namespace Extend;
  3. use ReflectionClass;
  4. use Exception;
  5. /**
  6. * 用户相关类
  7. * Class User
  8. * @package Extend
  9. */
  10. class User{
  11. const ROLE = 'Students';
  12. public $username = '';
  13. private $password = '';
  14. public function __construct($username, $password)
  15. {
  16. $this->username = $username;
  17. $this->password = $password;
  18. }
  19. /**
  20. * 获取用户名
  21. * @return string
  22. */
  23. public function getUsername()
  24. {
  25. return $this->username;
  26. }
  27. /**
  28. * 设置用户名
  29. * @param string $username
  30. */
  31. public function setUsername($username)
  32. {
  33. $this->username = $username;
  34. }
  35. /**
  36. * 获取密码
  37. * @return string
  38. */
  39. private function getPassword()
  40. {
  41. return $this->password;
  42. }
  43. /**
  44. * 设置密码
  45. * @param string $password
  46. */
  47. private function setPassowrd($password)
  48. {
  49. $this->password = $password;
  50. }
  51. }
  52. $class = new ReflectionClass('Extend\User'); // 将类名User作为参数,即可建立User类的反射类
  53. $properties = $class->getProperties(); // 获取User类的所有属性,返回ReflectionProperty的数组
  54. $property = $class->getProperty('password'); // 获取User类的password属性ReflectionProperty
  55. $methods = $class->getMethods(); // 获取User类的所有方法,返回ReflectionMethod数组
  56. $method = $class->getMethod('getUsername'); // 获取User类的getUsername方法的ReflectionMethod
  57. $constants = $class->getConstants(); // 获取所有常量,返回常量定义数组
  58. $constant = $class->getConstant('ROLE'); // 获取ROLE常量
  59. $namespace = $class->getNamespaceName(); // 获取类的命名空间
  60. $comment_class = $class->getDocComment(); // 获取User类的注释文档,即定义在类之前的注释
  61. $comment_method = $class->getMethod('getUsername')->getDocComment(); // 获取User类中getUsername方法的注释文档

反射可以做什么?

  • 构建插件式架构的基础
  • mvc实现也可以使用反射
  • laravel使用反射实现依赖注入

参考资料:
php的反射机制
ReflectionClass 类

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注