laravel5.5探究容器的秘密
1. 定义一个契约(接口)
app\Contracts\SuperModuleContract.php
<?php
namespace App\Contracts;
interface SuperModuleContract
{
//激活超能力,这里参数必须是array,这就是一个规范
public function activate(array $target);
}
2. 一个实现这个接口的类
app\Services\FlyPower.php
<?php
namespace App\Services;
use App\Contracts\SuperModuleContract;
class FlyPower implements SuperModuleContract
{
public function activate(array $target)
{
//..可以根据$target 参数进行一些操作
$ability = 'fly ability';
return $ability;
}
}
3. 创建服务提供者
app\Providers\SuperPowerProvider.php
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use App\Services\FlyPower;
class SuperPowerProvider extends ServiceProvider
{
public function boot()
{
//
}
public function register()
{
//singleton绑定单例
//如何使用:App::make('fly_power')方法时调用
$this->app->singleton('fly_power',function(){
return new FlyPower();
});
//bind绑定实例到接口以便依赖注入
// 如何使用:在类构造方法中实例化,并指定接口类型
$this->app->bind('App\Contracts\SuperModuleContract',function(){
return new FlyPower();
});
}
}
4. 注册服务提供者
配置文件config/app.php的providers数组中:
'providers' => [
//其他服务提供者
App\Providers\SuperPowerProvider::class,
],
5. 创建facades
app\Facades\FlyPower.php
<?php
namespace App\Facades;
use Illuminate\Support\Facades\Facade;
class FlyPower extends Facade
{
protected static function getFacadeAccessor()
{
return 'fly_power';
}
}
6. 再然后需要到配置文件config/app.php中注册门面类别名:
'aliases' => [
...//其他门面类别名映射
'FlyPower' => App\Facades\FlyPower::class,
],
7. 写一个控制器进行测试
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Contracts\SuperModuleContract;
use App;
use FlyPower;
class TestController extends Controller
{
protected $superower;
public function __construct(SuperModuleContract $super_power)
{
$this->super_power = $super_power;
}
public function getPower(Request $request){
//实现超人的几种方式
# 使用make方式
$superman1 = App::make('fly_power')->activate(array());
# 使用facades
$superman2 = FlyPower::activate(array());
# 构造函数,类型提示,依赖注入
$superman3 = $this->super_power->activate(array());
dd($superman1, $superman2, $superman3);
}
}
结果:
"fly ability"
"fly ability"
"fly ability"
证明三个超人类都实现了。
8. 进一步分析
当有超人有多种超能力的时候怎么办
8.1 定义一个获取超能力的接口
app\Contracts\GetPowerContract.php
<?php
namespace App\Contracts;
interface GetPowerContract
{
public function init();
}
8.2 一个实现获取超能力接口的类
app\Services\GetPower.php
<?php
namespace App\Services;
use App\Contracts\GetPowerContract;
use App;
class GetPower implements GetPowerContract
{
public function init()
{
$config = config('power');
$ability = $config['ability'];
$ability = App::make($ability);
return $ability;
}
}
8.3 创建配置文件
app\config\power.php
<?php
return [
'ability' => 'fly_power',
];
8.4 增加一个超能力类,需要实现超能力接口
app\Services\ShotPower.php
<?php
namespace App\Services;
use App\Contracts\SuperModuleContract;
class ShotPower implements SuperModuleContract
{
public function activate(array $target)
{
//..可以根据$target 参数进行一些操作
$ability = 'shot ability';
return $ability;
}
}
8.5 修改服务提供器
app\Providers\SuperPowerProvider.php
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use App\Services\FlyPower;
use App\Services\ShotPower;
use App\Services\GetPower;
class SuperPowerProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register the application services.
*
* @return void
*/
public function register()
{
//singleton绑定单例
//如何使用:App::make('fly_power')方法时调用
$this->app->singleton('fly_power',function(){
return new FlyPower();
});
$this->app->singleton('shot_power',function(){
return new ShotPower();
});
//bind绑定实例到接口以便依赖注入
// 如何使用:在类构造方法中实例化,并指定接口类型
$this->app->bind('App\Contracts\SuperModuleContract',function(){
return new FlyPower();
});
$this->app->bind('App\Contracts\GetPowerContract',function(){
//return new FlightPower();
return new GetPower();
});
}
}
8.6 修改控制器测试代码
app\Services\ShotPower.php
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
//use App\Services\XPower;
use App\Contracts\SuperModuleContract;
use App\Contracts\GetPowerContract;
use App;
use FlyPower;
class TestController extends Controller
{
protected $superower;
//public function __construct(XPower $XPower)
//{
// $this->XPower = $XPower;
//}
//public function __construct(SuperModuleContract $super_power)
//{
// $this->super_power = $super_power;
//}
public function __construct(GetPowerContract $super_power)
{
$this->super_power = $super_power;
}
public function getPower(Request $request){
//实现超人的几种方式
$superman1 = App::make('fly_power')->activate(array());
$superman2 = FlyPower::activate(array());
$superman3 = $this->super_power->init()->activate(array());
$superman4 = App::make('shot_power')->activate(array());
d($superman1, $superman2, $superman3, $superman4);
}
}
结果
"fly ability"
"fly ability"
"fly ability"
"shot ability"
说明我们赋予的shot超能力可以正常激活
修改config/power.php内容
<?php
return [
'ability' => 'shot_power',
];
结果
"fly ability"
"fly ability"
"shot ability"
"shot ability"
第三行的更改,说明我们可以通过更改config的方式实现快速切换超人拥有的超能力
laravel5.5探究容器的秘密的更多相关文章
- laravel5.8 IoC 容器
网上 对容器的解释有很多,这里只是记录,搬运! 1.简单理解: 2019-10-10 11:24:09 解析 lavarel 容器 IoC 容器 作用 就是 “解耦” .“依赖注入(DI) IoC 容 ...
- Linux中以单容器部署Nginx+ASP.NET Core
引言 正如前文提到的,强烈推荐在生产环境中使用反向代理服务器转发请求到Kestrel Http服务器,本文将会实践将Nginx --->ASP.NET Core 部署架构容器化的过程. Ng ...
- 深入理解Docker容器执行引擎runC
1 简介 根据官方的定义:runC是一个根据OCI标准创建并运行容器的CLI tool. Docker就是基于runC创建的,简单地说,runC就是docker中最为核心的部分,容器的创建,运行,销毁 ...
- 老Python带你从浅入深探究List
列表 Python中的列表(list)是最常用的数据类型之一. Python中的列表可以存储任意类型的数据,这与其他语言中的数组(array)不同. 被存入列表中的内容可称之为元素(element)或 ...
- 【震惊】padding-top的百分比值参考对象竟是父级元素的宽度
引言 书写页面样式与布局是前端工程师Coding 中必不可少的一项工作,在定义页面元素的样式时,padding 属性也是经常被使用到的. padding 属性用于设置元素的内边距,其值可以是lengt ...
- docker-compose v3版本命令详解参考
参考和指南 这些主题描述了Compose文件格式的第3版.这是最新的版本. Compose and Docker 兼容性矩阵 有几个版本的Compose文件格式 - 1,2,2.x和3.x.下表是快速 ...
- 031、none和host网络的适用场景(2019-02-18 周一)
参考https://www.cnblogs.com/CloudMan6/p/7053617.html 本节开始,会学习docker的几种原生网络,以及如何创建自定义网络.然后探究容器之间如何通信, ...
- Kubernetes集群安全概述
API的访问安全性 API Server的端口和地址 在默认情况下,API Server通过本地端口和安全端口两个不同的HTTP端口,对外提供API服务,其中本地端口是基于HTTP协议的,用于在本机( ...
- Linus与陈庆
Linus 1969年末,李纳斯出生于芬兰的赫尔辛基市,算是赶上了60后的尾巴.小时候他是个其貌不扬的孩子,除了一个鼻子长的「富丽堂皇」之外乏善可陈.他为了让鼻子看上去小一些,经常戴上眼镜就不愿意摘下 ...
随机推荐
- javascript代码工具库
1. 垃圾收集 另一个块作用域非常有用的原因和闭包及回收内存垃圾的回收机制相关.这里简要说明一 下,而内部的实现原理,也就是闭包的机制会在第 5 章详细解释. 考虑以下代码: function pro ...
- 笨办法学Python(二十一)
习题 21: 函数可以返回东西 你已经学过使用 = 给变量命名,以及将变量定义为某个数字或者字符串.接下来我们将让你见证更多奇迹.我们要演示给你的是如何使用 = 以及一个新的 Python 词汇ret ...
- PHP:return与exit的区别
return 虽然返回数据,并且不再往下执行,但是它会返回执行上一步的操作,所以return的只是当前function而不会影响其他function的执行: exti 是完全将整个项 ...
- 解决使用phpmyadmin导出导入数据库时提示的“超出长度”、“超时”问题
IIS请求筛选模块被配置为拒绝超过请求内容长度的请求 1. 修改IIS的applicationhost.config a.文件位置: %windir%/system32/inetsrv/config/ ...
- IOS 公司标示和方向域名
1. 公司标示使用反向域名========================================正向域名 www.baidu.com 用来标示一台网络主机反向域名 cn.itcast.Myd ...
- Gym 100169A 最短路
题意:不久后滑铁卢将会变得非常冷,但是幸运的是,很多建筑都被桥梁和隧道连接着,所以你不需要总是走在外面.但是现在建筑 物之间的连接是错综复杂的,很难知道某两个建筑物之间的最优路线,所以需要你写程序判断 ...
- 背包问题模板,POJ(1014)
题目链接:http://poj.org/problem?id=1014 背包问题太经典了,之前的一篇博客已经讲了背包问题的原理. 这一个题目是多重背包,但是之前的枚举是超时的,这里采用二进制优化. 这 ...
- 在使用HTMLTestRunner时,报告为空,错误提示<_io.TextIOWrapper name='<stderr>' mode='w' encoding='utf_8'>
<_io.TextIOWrapper name='<stderr>' mode='w' encoding='utf_8'> Time Elapsed: 0:00:21.3163 ...
- 1006: Hero In Maze
1006: Hero In Maze 时间限制: 1000 Sec 内存限制: 64 MB提交: 417 解决: 80[提交][状态][讨论版][命题人:外部导入] 题目描述 500年前,Jess ...
- webapi中配置返回的时间数据格式
web api返回的是标准格式UTC时间,如果要转成我们需要的格式,可以在WebApiConfig.cs的Register函数中新增以下配置来定义返回的时间类型格式: //配置返回的时间类型数据格式 ...