本文实例讲述了laravel框架源码解析之反射的使用。分享给大家供大家参考,具体如下:
php的反射类与实例化对象作用相反,实例化是调用封装类中的方法、成员,而反射类则是拆封类中的所有方法、成员变量,并包括私有方法等。就如“解刨”一样,我们可以调用任何关键字修饰的方法、成员。当然在正常业务中是建议不使用,比较反射类已经摒弃了封装的概念。
本章讲解反射类的使用及laravel对反射的使用。
反射类是php内部类,无需加载即可使用,你可以通过实例化 reflectionclass
类去使用它。
这里列举下php反射类常用的方法
等等等等…. 所有关于类的方法、属性及其继承的父类、实现的接口都可以查询到。
详细文档请参考官网:
<?php namespace a\b; class foo { } $function = new \reflectionclass('stdclass'); var_dump($function->innamespace()); var_dump($function->getname()); var_dump($function->getnamespacename()); var_dump($function->getshortname()); $function = new \reflectioncla有关数字的成语ss('a\\b\\foo'); var_dump($function->innamespace()); var_dump($function->getname()); var_dump($function->getnamespacename()); var_dump($function->getshortname());?>
输出结果
bool(fal)string(8) "stdclass"string(0) ""string(8) "stdclass"bool(true)string(7) "a\b\foo"string(3) "a\b"string(3) "foo"
laravel在实现服务容器加载时使用了反射类。现在我们开启“解刨”模式
$app = require_once __dir__.'/../bootstrap/app.php';/*|-------------------------------------------枸杞泡水喝的好处-------------------------------| run the application|--------------------------------------------------------------------------|| once we have the application, we can handle the incoming request| through the kernel, and nd the associated respon back to| the client's browr allowing them to enjoy the creative| and wonderful application we have prepared for them.|*/$kernel = $app->make(illuminate\contracts\http\kernel::class);$respon = $kernel->handle( $request = illuminate\http\request::capture());$respon->nd();$kernel->terminate($request, $凤凰山海港乐园respon);
是引用语句发生的下一行调用了make方法。各位很清楚,make方法用于解析类,所有make方法的实现一定是在引用的文件内。
$app = new illuminate\foundation\application( realpath(__dir__.'/../'));
laravel开始加载它的核心类,所有的实现从 illuminate\foundation\application
开始。
public function make($abstract, array $parameters = []){ $abstract = $this->getalias($abstract); if (ist($this->deferreds放飞梦想图片ervices[$abstract]) && ! ist($this->instances[$abstract])) { $this->loaddeferredprovider($abstract); } return parent::make($abstract, $parameters);}
在核心类中你可能准确的查找到make方法的存在,它加载了服务提供者随后调用了父类的方法make,要知道作为独立的模块 “服务容器”是绝对不能写在核心类的。懂点设计模式的都很清楚。
以 $api = $this->app->make('helpspot\api',['id'=>1]);
为例来讲解
// 真正的make方法,它直接调用了resolve继续去实现make的功能// $abstract = 'helpspot\api'public function make($abstract, array $parameters = []){ // $abstract = 'helpspot\api' return $this->resolve($abstract, $parameters);}...protected function resolve($abstract, $parameters = []){ ... // 判断是否可以合理反射 // $abstract = 'helpspot\api' if ($this->isbuildable($concrete, $abstract)) { // 实例化具体实例 (实际并不是实例化,而是通过反射“解刨”了) $object = $this->build($concrete); } el { $object = $this->make($concrete); } ...}public function build($concrete){ // $concrete = 'helpspot\api' if ($concrete instanceof closure) { return $concrete($this, $this->getlastparameteroverride()); } // 实例化反射类 $reflector = new reflectionclass($concrete); // 检查类是否可实例化 if (! $reflector->isinstantiable()) { return $this->notinstantiable($concrete); } $this->buildstack[] = $concrete; // 获取类的构造函数 $constructor = $reflector-&无锡旅游景点gt;getconstructor(); if (is_null($constructor)) { array_pop($this->buildstack); return new $concrete; } $dependencies = $constructor->getparameters(); $instances = $this->resolvedependencies( $dependencies ); array_pop($this->buildstack); // 从给出的参数创建一个新的类实例。 return $reflector->newinstanceargs($instances);}
可见一个服务容器就加载成功了。
本文发布于:2023-04-08 18:26:54,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/fef90c49489d40374776391a2de1697a.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:Laravel框架源码解析之反射的使用详解.doc
本文 PDF 下载地址:Laravel框架源码解析之反射的使用详解.pdf
留言与评论(共有 0 条评论) |