我已按照this example设置我的应用程序以使用模块配置xml。
现在我需要为一个配置键定义一个空数组。等效的php配置文件是:
<?php
return array (
//...the other configurations
'sample' => array(
'empty' => array()
)
);
我无法弄清楚如何在xml中构建它。 如果我尝试以下xml,解析器会返回一个空字符串,但我需要一个空数组。
<?xml version="1.0" encoding="UTF-8"?>
<zend-config>
<!-- ...the other configurations -->
<sample>
<empty></empty>
</sample>
</zend-config>
是否有一个选项可以强制Zend \ Config \ Factory返回数组而不是字符串?
答案 0 :(得分:1)
你是说这个?
<zend-config>
<sample>
<empty/>
</sample>
</zend-config>