# 依赖容器
*****
Slim使用一个可选的依赖项容器来准备、管理和注入应用程序依赖项。Slim支持像PHP-DI一样实现PSR-11的容器。
Slim uses an optional dependency container to prepare, manage, and inject application dependencies. Slim supports containers that implement[PSR-11](http://www.php-fig.org/psr/psr-11/)like[PHP-DI](http://php-di.org/doc/frameworks/slim.html).
## PHP-DI的示例用法
You don’t*have*to provide a dependency container. If you do, however, you must provide an instance of the container to`AppFactory`before creating an`App`.
您不必提供依赖容器。但是,如果这样做,则必须在创建 **$app** 之前向`AppFactory`提供容器的实例。
~~~php
<?php
use DI\Container;
use Psr\Http\Message\ResponseInterface as Response;
use Psr\Http\Message\ServerRequestInterface as Request;
use Slim\Factory\AppFactory;
require __DIR__ . '/../vendor/autoload.php';
// Create Container using PHP-DI
$container = new Container();
// Set container to create App with on AppFactory
AppFactory::setContainer($container);
$app = AppFactory::create();
~~~
添加一个服务到您的容器:
Add a service to your container:
~~~php
$container->set('myService', function () {
$settings = [...];
return new MyService($settings);
});
~~~
You can fetch services from your container explicitly as well as from inside a Slim application route like this:
你可以显式地从你的容器中获取服务,也可以从类似这样的slim应用程序路由中获取服务:
~~~php
/**
* Example GET route
*
* @param ServerRequestInterface $request PSR-7 request
* @param ResponseInterface $response PSR-7 response
* @param array $args Route parameters
*
* @return ResponseInterface
*/
$app->get('/foo', function (Request $request, Response $response, $args) {
$myService = $this->get('myService');
// ...do something with $myService...
return $response;
});
~~~
To test if a service exists in the container before using it, use the`has()`method, like this:
要在使用服务之前测试它是否存在于容器中,可以使用`has()`方法,如下所示:
~~~php
/**
* Example GET route
*
* @param ServerRequestInterface $request PSR-7 request
* @param ResponseInterface $response PSR-7 response
* @param array $args Route parameters
*
* @return ResponseInterface
*/
$app->get('/foo', function (Request $request, Response $response, $args) {
if ($this->has('myService')) {
$myService = $this->get('myService');
}
return $response;
});
~~~
- 开始
- 安装
- 升级指南
- Web服务器
- 概念
- 生命周期
- PSR 7
- 中间件
- 依赖容器
- 实例 及通知和警告处理
- Request
- 请求方法
- 请求头信息
- 请求主体
- 上传的文件
- 请求帮助
- 路由对象
- Response
- 响应状态
- 响应标头
- 响应体
- 返回JSON
- 视图模板
- 路由
- 创建路由
- 路由回调
- 路由策略
- 路线占位符
- 路由名
- 路由组
- 路由中间件
- 路由表达式缓存
- 容器识别解析
- 封装中间件
- 路由的中间件
- 错误处理中间件
- 方法重写的中间件
- 输出缓冲中间件
- 内容长度中间件
- 扩展功能
- 以 / 结尾的路由模式
- 获取当前路由
- 设置CORS
- 使用POST表单上传文件
- 第三方组件
- slim-session
- auth
- slim-api-skeleton
- dir