1
我知道我們不應該有很多原因讓我們從控制器訪問ApplicationConfig
。但我仍然問。有沒有辦法做到這一點?zf2 - 在'ActionController'中返回'ApplicationConfig'
我確實希望這樣做是讓
module_listener_options
的持有 - >config_glob_paths
鍵...
我知道我們不應該有很多原因讓我們從控制器訪問ApplicationConfig
。但我仍然問。有沒有辦法做到這一點?zf2 - 在'ActionController'中返回'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');
會給你的應用程序的合併的配置數據的陣列。
奇怪,我以爲我tryed這一點。但現在它工作。我必須有拼寫錯誤或什麼。 – superhero