PHP 反射,学习

学习参考:http://cn.php.net/manual/en/book.reflection.php

反射API,包含一系列的类、异常和接口。可用来检测分析其他的类、接口、方法、属性、函数和扩展。

============

eg:


============

Reflector ,是其它反射类的接口类。

Reflection

ReflectionExtension 分析报告扩展类有关扩展
ReflectionClass类: 分析报告类有关扩展

ReflectionFunction 分析报告函数有关扩展


ReflectionFunctionAbstract: A parent class to ReflectionFunction, read its description for details.

ReflectionMethod 类报告有关方法的信息。

ReflectionObject 类报告有关对象的信息。

ReflectionParameter类检索一个函数或方法的参数信息。

ReflectionProperty类报告一个类的属性信息。

ReflectionException


eg:



你可能感兴趣的:(PHP)