1

我意识到我们不应该有太多理由ApplicationConfig从控制器访问。但我仍然在问..有没有办法做到这一点?

我真正想做的是抓住
module_listener_options->config_glob_paths键......

4

2 回答 2

1

我认为@timdev 没有明白你的意思,你的问题可以通过以下方式解决:

$applicationConfig = $this->getServiceLocator()->get('ApplicationConfig');
于 2013-01-18T03:41:57.400 回答
0
<?php
// in a controller (or anything that is ServiceLocatorAware)
$config = $this->getServiceLocator()->get('Config');

将为您提供应用程序的合并配置数据数组。

于 2013-01-18T00:56:15.967 回答