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 相关文章推荐
PHP.MVC的模板标签系统(三)
Sep 05 PHP
php中截取中文字符串的代码小结
Jul 17 PHP
php 转换字符串编码 iconv与mb_convert_encoding的区别说明
Nov 10 PHP
谨慎使用PHP的引用原因分析
Sep 06 PHP
用Simple Excel导出xls实现方法
Dec 06 PHP
浅析PHP递归函数返回值使用方法
Feb 18 PHP
PHP中的闭包(匿名函数)浅析
Feb 07 PHP
为百度UE编辑器上传图片添加水印功能
Apr 16 PHP
Laravel学习教程之IOC容器的介绍与用例
Aug 15 PHP
php微信扫码支付 php公众号支付
Mar 24 PHP
PHP实现带进度条的Ajax文件上传功能示例
Jul 02 PHP
php设计模式之观察者模式实例详解【星际争霸游戏案例】
Mar 30 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
一个域名查询的程序
2006/10/09 PHP
php 魔术方法使用说明
2009/10/20 PHP
Linux下实现PHP多进程的方法分享
2012/08/16 PHP
PHP自定义错误用法示例
2016/09/28 PHP
PHP使用new StdClass()创建空对象的方法分析
2017/06/06 PHP
Laravel框架分页实现方法分析
2018/06/12 PHP
jQuery 1.7.2中getAll方法的疑惑分析
2012/05/23 Javascript
鼠标移动到图片名上,显示图片的简单实例
2013/07/14 Javascript
jQuery中scrollLeft()方法用法实例
2015/01/16 Javascript
JS实现浏览器状态栏显示时间的方法
2015/10/27 Javascript
利用JS提交表单的几种方法和验证(必看篇)
2016/09/17 Javascript
jquery延迟对象解析
2016/10/26 Javascript
JS高级运动实例分析
2016/12/20 Javascript
checkbox:click事件触发span元素内容改变的方法
2017/09/11 Javascript
Vue2 监听属性改变watch的实例代码
2018/08/27 Javascript
react脚手架如何配置less和ant按需加载的方法步骤
2018/11/28 Javascript
使用JS实现动态时钟
2020/03/12 Javascript
vue实现输入框自动跳转功能
2020/05/20 Javascript
Vue父子之间值传递的实例教程
2020/07/02 Javascript
JS实现4位随机验证码
2020/10/19 Javascript
[00:18]天涯墨客三技能展示
2018/08/25 DOTA
Python实现从url中提取域名的几种方法
2014/09/26 Python
全球领先的各类汽车配件零售商:Advance Auto Parts
2016/08/26 全球购物
美国皮靴公司自1863年:The Frye Company
2016/11/30 全球购物
英国折扣高尔夫商店:Discount Golf Store
2019/11/19 全球购物
Pandora西班牙官方商店:PandoraShop.es
2020/10/05 全球购物
Linux面试题LINUX系统类
2014/11/19 面试题
毕业生幼师求职自荐信
2013/10/01 职场文书
电气自动化大学生求职信
2013/10/16 职场文书
党建示范点实施方案
2014/03/12 职场文书
竞选生活委员演讲稿
2014/04/28 职场文书
大型演出策划方案
2014/05/28 职场文书
婚礼父母答谢词
2015/01/04 职场文书
优秀党员个人总结
2015/02/14 职场文书
详细分析PHP7与PHP5区别
2021/06/26 PHP
elementui的el-popover修改样式不生效的解决
2021/06/30 Javascript