PHP反射原理与用法深入分析


Posted in PHP onSeptember 28, 2019

本文实例讲述了PHP反射原理与用法。分享给大家供大家参考,具体如下:

说到反射,实际上包含两个概念:

  • 检视 introspection 判断类、方法是否存在,父子类关系,调用关系等,检视的函数文档
  • 反射 Reflection 获取类里的方法、属性,注释等,反射类的文档

PHP官方文档写得很清晰了,下面我就说一下具体的应用。

1.参数检测

有时候需要在函数里需要判断传入的参数类型是否合法。
这时可以使用is_a、is_subclass_of来检测。或者结合反射,做更多检测。

2.动态调用

在依赖注入中,常见到这种用法,比如Laravel5.5中的Container.php

public function build($concrete)
  {
    // If the concrete type is actually a Closure, we will just execute it and
    // hand back the results of the functions, which allows functions to be
    // used as resolvers for more fine-tuned resolution of these objects.
    if ($concrete instanceof Closure) {
      return $concrete($this, $this->getLastParameterOverride());
    }
    $reflector = new ReflectionClass($concrete);
    // If the type is not instantiable, the developer is attempting to resolve
    // an abstract type such as an Interface of Abstract Class and there is
    // no binding registered for the abstractions so we need to bail out.
    if (! $reflector->isInstantiable()) {
      return $this->notInstantiable($concrete);
    }
    $this->buildStack[] = $concrete;
    $constructor = $reflector->getConstructor();
    // If there are no constructors, that means there are no dependencies then
    // we can just resolve the instances of the objects right away, without
    // resolving any other types or dependencies out of these containers.
    if (is_null($constructor)) {
      array_pop($this->buildStack);
      return new $concrete;
    }
    $dependencies = $constructor->getParameters();
    // Once we have all the constructor's parameters we can create each of the
    // dependency instances and then use the reflection instances to make a
    // new instance of this class, injecting the created dependencies in.
    $instances = $this->resolveDependencies(
      $dependencies
    );
    array_pop($this->buildStack);
    return $reflector->newInstanceArgs($instances);
  }

上述代码先判断是否是闭包,如果是,直接返回。不是则通过new ReflectionClass($concrete);

生成反射类的实例,然后获取这个类的构造函数和参数,进行初始化的过程。

注意

反射里一个比较重要的用法invoke

当已知这个类的时候,可以通过构造ReflectionMethod来直接调用,如:

class HelloWorld {

  public function sayHelloTo($name) {
    return 'Hello ' . $name;
  }

}

$reflectionMethod = new ReflectionMethod('HelloWorld', 'sayHelloTo');
echo $reflectionMethod->invoke(new HelloWorld(), 'Mike');

当不知道这个类时,知道类的对象,可以用ReflectionObject获取ReflectionMethod后调用,如:

class HelloWorld {

  public function sayHelloTo($name) {
    return 'Hello ' . $name;
  }

}

$hello = new HelloWorld();

$refObj = new ReflectionObject($hello);
$refMethod = $refObj->getMethod('sayHelloTo');
echo $refMethod->invoke($hello,'Mike');

调用流程一般就是获取反射类ReflectionClass/反射对象ReflectionObject的实例,然后获取ReflectionMethod后,invoke。

3.获取注释,生成文档

比如PHPDoc

4.注解,增强版的注释,符合一定的规则

比如某些框架的路由,便是通过注解实现的。

5.不要为了反射而反射

PHP是一门动态语言,其实可以直接通过字符串来调用类或函数,如下:

class HelloWorld {
  public function sayHelloTo($name) {
    return 'Hello ' . $name;
  }
}
$hello = 'HelloWorld';
$helloSay = 'sayHelloTo';
$helloIntance = new $hello;
echo $helloIntance->$helloSay('Mike');

那么为什么还需要反射呢?

  • 功能更强大
  • 更安全,防止直接调用没有暴露的内部方法
  • 可维护,直接写字符串是硬编码

希望本文所述对大家PHP程序设计有所帮助。

PHP 相关文章推荐
3
Oct 09 PHP
PHP insert语法详解
Jun 07 PHP
PHP 引用是个坏习惯
Mar 12 PHP
php利用cookie实现访问次数统计代码
May 19 PHP
浅谈thinkphp的实例化模型
Jan 04 PHP
PHP模拟post提交数据方法汇总
Feb 16 PHP
[原创]smarty简单模板变量输出方法
Jul 09 PHP
php中preg_replace_callback函数简单用法示例
Jul 21 PHP
PHP simplexml_load_string()函数实例讲解
Feb 03 PHP
实例讲解PHP表单处理
Feb 15 PHP
php web环境和命令行环境下查找php.ini的位置
Jul 17 PHP
php慢查询日志和错误日志使用详解
Feb 27 PHP
Windows服务器中PHP如何安装redis扩展
Sep 27 #PHP
php-fpm超时时间设置request_terminate_timeout资源问题分析
Sep 27 #PHP
thinkPHP+LayUI 流加载实现功能
Sep 27 #PHP
PHP的cookie与session原理及用法详解
Sep 27 #PHP
PHP下载文件函数与用法示例
Sep 27 #PHP
PHP的JSON封装、转变及输出操作示例
Sep 27 #PHP
php面向对象重点知识分享
Sep 27 #PHP
You might like
thinkPHP的Html模板标签使用方法
2012/11/13 PHP
PHP正则表达式 /i, /is, /s, /isU等介绍
2014/10/23 PHP
用JS操作FRAME中的IFRAME及其内容的实现代码
2008/07/26 Javascript
ExtJS扩展 垂直tabLayout实现代码
2009/06/21 Javascript
jQuery EasyUI API 中文文档 - Panel面板
2011/09/30 Javascript
js实现浏览器窗口大小被改变时触发事件的方法
2015/02/02 Javascript
JavaScript对象反射用法实例
2015/04/17 Javascript
JavaScript的变量声明提升问题浅析(Hoisting)
2016/11/30 Javascript
JQuery.validationEngine表单验证插件(推荐)
2016/12/10 Javascript
jQuery层级选择器实例代码
2017/02/06 Javascript
JQuery 封装 Ajax 常用方法(推荐)
2017/05/21 jQuery
NodeJS收发GET和POST请求的示例代码
2017/08/25 NodeJs
微信小程序之批量上传并压缩图片的实例代码
2018/07/05 Javascript
JS实现li标签的删除
2019/04/12 Javascript
javascript的惯性运动实现代码实例
2019/09/07 Javascript
JavaScript实现京东放大镜效果
2019/12/03 Javascript
js在HTML的三种引用方式详解
2020/08/29 Javascript
OpenLayers3实现地图鹰眼以及地图比例尺的添加
2020/09/25 Javascript
[00:47]DOTA2荣耀之路6:玩不了啦!
2018/05/30 DOTA
Python环境下安装使用异步任务队列包Celery的基础教程
2016/05/07 Python
Python的collections模块中namedtuple结构使用示例
2016/07/07 Python
Python科学计算之Pandas详解
2017/01/15 Python
python实现支付宝当面付(扫码支付)功能
2018/05/30 Python
windows下python安装小白入门教程
2018/09/18 Python
Python直接赋值、浅拷贝与深度拷贝实例分析
2019/06/18 Python
python处理excel绘制雷达图
2019/10/18 Python
利用OpenCV和Python实现查找图片差异
2019/12/19 Python
python中sklearn的pipeline模块实例详解
2020/05/21 Python
使用OpenCV实现道路车辆计数的使用方法
2020/07/15 Python
vscode配置anaconda3的方法步骤
2020/08/08 Python
美国著名的婴儿学步鞋老品牌:Robeez
2016/08/20 全球购物
给排水工程师岗位职责
2013/11/21 职场文书
小学竞选班长演讲稿
2014/09/09 职场文书
交通肇事罪辩护词
2015/05/21 职场文书
立秋之描写立秋的作文(五年级)
2019/08/08 职场文书
Spring-cloud Config Server的3种配置方式
2021/09/25 Java/Android