php的底层分析(PHP反射原理与用法深入分析)
类别:编程学习 浏览量:2159
时间:2021-10-16 00:11:18 php的底层分析
PHP反射原理与用法深入分析本文实例讲述了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程序设计有所帮助。
原文链接:https://www.cnblogs.com/xdao/p/php_reflection.html
您可能感兴趣
- jqueryajax实现部分刷新(php+jQuery ajax实现的实时刷新显示数据功能示例)
- 虚拟机windows server安装php环境(winxp apache用php建本地虚拟主机的方法)
- thinkphp框架切换数据库(ThinkPHP3.2.3框架实现执行原生SQL语句的方法示例)
- php运行实例(php实例化一个类的具体方法)
- php代码最可靠的加密方式(php DES加密算法实例分析)
- php怎么创建一个文件(PHP文件后缀不强制为.php方法)
- php系统转换的三种方式(PHP容器类的两种实现方式示例)
- php验证码思路(PHP实现字母数字混合验证码功能)
- php 静态方法(PHP的静态方法与普通方法用法实例分析)
- php常用执行函数(PHP自动载入类文件函数__autoload的使用方法)
- phpstudyv8.0部署多站点(phpstudy v8.1 全站301重定向设置教程)
- thinkphp接口开发实例(ThinkPHP5.0框架结合Swoole开发实现WebSocket在线聊天案例详解)
- dedecms新字段(DEDECMSv5.6 tags.php标签不能按照时间排序的问题)
- phpstudy创建本地服务器(phpstudy linux小皮面板防火墙的开启与关闭)
- thinkphp伪静态实例(thinkPHP+mysql+ajax实现的仿百度一下即时搜索效果详解)
- php抽奖功能(php+lottery.js实现九宫格抽奖功能)
- 泰国美女(泰国人妖和女性如何区分)
- 泰国旅游业怎么样(泰国的旅游产业)
- 越南新娘(越南新娘婚介网站)
- 越南新娘(越南新娘骗婚套路流程)
- 菲律宾游学(菲律宾游学中介机构)
- 菲律宾美食(菲律宾美食排行榜前十名)
热门推荐
- docker搭建elasticsearch(docker安装ElasticSearch:7.8.0集群的详细教程)
- mysql binlog模式实际使用(实例验证MySQL|update字段为相同的值是否会记录binlog)
- python面向对象实例教程(Python面向对象程序设计类的多态用法详解)
- thinkphp中view视图的作用(Thinkphp5.0框架视图view的模板布局用法分析)
- linux如何搭建ftp服务器(Linux下搭建ftp服务器)
- tomcat在linux系统安装步骤(Tomcat的卸载和重装的实现图文)
- 从客户端检测到有潜在危险的Request.Form值
- 微信小程序企业微信打卡(使用Python实现企业微信的自动打卡功能)
- amaze如何创建作品(AmazeUI 网格的实现示例)
- 在mysql中如何授权(MySQL 角色role功能介绍)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9