函数getCurrentOrDefaultLocale()
,定义在我的服务中,可以从控制器或通过命令行脚本调用。
从CLI访问request
服务抛出一个异常,我用它来检测CLI调用。然而,仅为这个目的捕获异常对我来说似乎很糟糕。
是否有任何可靠的方法来检查请求是否可以在当前上下文中访问(执行,浏览器vs CLI)?
/**
* @return string
*/
protected function getCurrentOrDefaultLocale()
{
try {
$request = $this->container->get('request');
}
catch(InactiveScopeException $exception) {
return $this->container->getParameter('kernel.default_locale');
}
// With Symfony < 2.1.0 current locale is stored in the session
if(version_compare($this->sfVersion, '2.1.0', '<')) {
return $this->container->get('session')->getLocale();
}
// Symfony >= 2.1.0 current locale from the request
return $request->getLocale();
}
您可以简单地使用ContainerInterface::has()
/ContainerInterface::hasScope()
检查当前容器实例是否有request
服务/范围
我的错误。您必须使用ContainerInterface::isScopeActive()
,以确定request
服务是否功能齐全:
public function __construct(ContainerInterface $container, RouterInterface $router) {
if ($container->isScopeActive('request')) {
$this->request = $container->get('request');
$this->router = $router;
}
}
这个代码片段来自我自己的项目,在那里我遇到了一个非常类似的问题。