博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP : Reflection API
阅读量:5313 次
发布时间:2019-06-14

本文共 2041 字,大约阅读时间需要 6 分钟。

 

PHP Reflection API是PHP5才有的新功能,它是用来导出或提取出关于类、方法、属性、参数等的详细信息,包括注释。

PHP Reflection API有:

class Reflection { }interface Reflector { }class ReflectionException extends Exception { }class ReflectionFunction implements Reflector { }class ReflectionParameter implements Reflector { }class ReflectionMethod extends ReflectionFunction { }class ReflectionClass implements Reflector { }class ReflectionObject extends ReflectionClass { }class ReflectionProperty implements Reflector { }class ReflectionExtension implements Reflector { }

 

具体API说明:

①Reflection类

View Code

  

②ReflectionException类

该类继承标准类,没特殊方法和属性。

③ReflectionFunction类

View Code

 

④ReflectionParameter类:

View Code

 

⑤ReflectionClass类:

getModifiers())进一步读取 public bool isInstance(stdclass object) //测试传入的对象是否为该类的一个实例 public stdclass newInstance(mixed* args) //创建该类实例 public ReflectionClass getParentClass() //取得父类 public bool isSubclassOf(ReflectionClass class) //测试传入的类是否为该类的父类 public array getStaticProperties() //取得该类的所有静态属性 public mixed getStaticPropertyValue(string name [, mixed default]) //取得该类的静态属性值,若private,则不可访问 public void setStaticPropertyValue(string name, mixed value) //设置该类的静态属性值,若private,则不可访问,有悖封装原则 public array getDefaultProperties() //取得该类的属性信息,不含静态属性 public bool isIterateable() public bool implementsInterface(string name) //测试是否实现了某个特定接口 public ReflectionExtension getExtension() public string getExtensionName()}?>
View Code

  

⑥ReflectionMethod类:

View Code

 

⑦ReflectionProperty类:

View Code

  

⑧ReflectionExtension类

View Code

  

使用例子:

sex = "male"; } public function action(){ echo "来自http://www.jb51.net的测试"; }} $class = new ReflectionClass('Person');//获取属性foreach($class->getProperties() as $property) { echo $property->getName()."\n";}//获取方法print_r($class->getMethods()); $p1 = new Person();$obj = new ReflectionObject($p1); //获取对象和类的属性print_r($obj->getProperties());

 

很明显上面代码中对象和类获取的属性是不同的,这是因为对象进行了contruct实例化,因此多了sex属性,PHP Reflection确实能够获取很多有用的信息。

 

转载于:https://www.cnblogs.com/KeenLeung/p/6041277.html

你可能感兴趣的文章
consonant combination
查看>>
驱动的本质
查看>>
Swift的高级分享 - Swift中的逻辑控制器
查看>>
Swagger简单介绍
查看>>
Python数据分析入门案例
查看>>
vue-devtools 获取到 vuex store 和 Vue 实例的?
查看>>
Linux 中【./】和【/】和【.】之间有什么区别?
查看>>
内存地址对齐
查看>>
看门狗 (监控芯片)
查看>>
css背景样式
查看>>
JavaScript介绍
查看>>
开源网络漏洞扫描软件
查看>>
yum 命令跳过特定(指定)软件包升级方法
查看>>
创新课程管理系统数据库设计心得
查看>>
Hallo wolrd!
查看>>
16下学期进度条2
查看>>
Could not resolve view with name '***' in servlet with name 'dispatcher'
查看>>
Chapter 3 Phenomenon——12
查看>>
和小哥哥一起刷洛谷(1)
查看>>
遇麻烦,Win7+Ubuntu12.10+Archlinux12.10 +grub
查看>>