简介
就算是类成员定义为 private 也可以在外部访问,不用创建类的实例也可以访问类的成员和方法。
PHP自5.0版本以后添加了反射机制,它提供了一套强大的反射API,允许你在PHP运行环境中,访问和使用类、方法、属性、参数和注释等,其功能十分强大,经常用于高扩展的PHP框架,自动加载插件,自动生成文档,甚至可以用来扩展PHP语言。由于它是PHP內建的oop扩展,为语言本身自带的特性,所以不需要额外添加扩展或者配置就可以使用。更多内容见官方文档。
反射类型
PHP反射API会基于类,方法,属性,参数等维护相应的反射类,已提供相应的调用API。
类型 |
说明 |
Reflector |
Reflector 是一个接口,被所有可导出的反射类所实现(implement) |
Reflection |
反射(reflection)类 |
ReflectionClass |
报告了一个类的有关信息 |
ReflectionClassConstant |
报告有关类常量的信息 |
ReflectionZendExtension |
报告Zend扩展的相关信息 |
ReflectionExtension |
报告了PHP扩展的有关信息 |
ReflectionFunction |
报告了一个函数的有关信息 |
ReflectionFunctionAbstract |
ReflectionFunction 的父类 |
ReflectionMethod |
报告了一个方法的有关信息 |
ReflectionObject |
报告了一个对象(object)的相关信息 |
ReflectionParameter |
取回了函数或方法参数的相关信息 |
ReflectionProperty |
报告了类的属性的相关信息 |
ReflectionType |
获取函数、类方法的参数或者返回值的类型 |
ReflectionGenerator |
获取生成器的信息 |
ReflectionException |
反射异常类 |
访问
假设定义了一个类 User,我们首先需要建立这个类的反射类实例,然后基于这个实例可以访问 User 中的属性或者方法。不管类中定义的成员权限声明是否为 public,都可以获取到。
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 66 67 68
| <?php namespace Extend;
use ReflectionClass; use Exception;
class User{ const ROLE = 'Students'; public $username = ''; private $password = '';
public function __construct($username, $password) { $this->username = $username; $this->password = $password; }
public function getUsername() { return $this->username; }
public function setUsername($username) { $this->username = $username; }
private function getPassword() { return $this->password; }
private function setPassowrd($password) { $this->password = $password; } }
$class = new ReflectionClass('Extend\User'); $properties = $class->getProperties(); $property = $class->getProperty('password'); $methods = $class->getMethods(); $method = $class->getMethod('getUsername'); $constants = $class->getConstants(); $constant = $class->getConstant('ROLE'); $namespace = $class->getNamespaceName(); $comment_class = $class->getDocComment(); $comment_method = $class->getMethod('getUsername')->getDocComment();
|
交互
一旦创建了反射类的实例,我们不仅可以通过反射类访问原来类的方法和属性,还能创建原来类的实例或则直接调用类里面的方法。
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
| $class = new ReflectionClass('Extend\User'); $instance = $class->newInstance('youyou', 1, '***');
$instance->setUsername('youyou_2'); $value = $instance->getUsername(); echo $value;echo "\n";
$class->getProperty('username')->setValue($instance, 'youyou_3'); $value = $class->getProperty('username')->getValue($instance); echo $value;echo "\n";
$class->getMethod('setUsername')->invoke($instance, 'youyou_4'); $value = $class->getMethod('getUsername')->invoke($instance); echo $value;echo "\n";
try { $property = $class->getProperty('password_1'); $property->setAccessible(true); $property->setValue($instance, 'password_2'); $value = $property->getValue($instance); echo $value;echo "\n"; $class->getProperty('password')->setAccessible(true); $class->getProperty('password')->setValue($instance, 'password'); $value = $class->getProperty('password')->getValue($instance); $value = $instance->password; }catch(Exception $e){echo $e;}
|