我創建了一個名爲config.xml的自定義XML配置文件,並將其放置在Zend Framework的configs目錄中。我想在我的一個控制器中使用Zend_Config_Xml。我有什麼不工作,它說「發生了錯誤,應用程序錯誤」。如何從控制器讀取自定義XML配置文件?這是我在我的控制器至今:Zend Framework - 訪問自定義配置文件
class IndexController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
// action body
$config = new Zend_Config_Xml('config.xml', 'staging');
echo $config->host;
}
}
你能提供更多的細節,也許是有問題的xml文件。你也嘗試過'var_dump($ config)'來驗證文件正在讀取。這種情況是非常可能的。 – danielrsmith 2012-03-12 18:56:05
你正在提供一個沒有路徑的文件名,你確定它會被找到嗎? – 2012-03-13 13:46:21