我意识到我们不应该有太多理由ApplicationConfig
从控制器访问。但我仍然在问..有没有办法做到这一点?
我真正想做的是抓住
module_listener_options
->config_glob_paths
键......
我意识到我们不应该有太多理由ApplicationConfig
从控制器访问。但我仍然在问..有没有办法做到这一点?
我真正想做的是抓住
module_listener_options
->config_glob_paths
键......
我认为@timdev 没有明白你的意思,你的问题可以通过以下方式解决:
$applicationConfig = $this->getServiceLocator()->get('ApplicationConfig');
<?php
// in a controller (or anything that is ServiceLocatorAware)
$config = $this->getServiceLocator()->get('Config');
将为您提供应用程序的合并配置数据数组。