如何在Zend框架中读取application.ini中的数组
如何使用 zend_config 对象读取 application.ini 文件中声明的数组。
例如1: 支持.prop[]="abc" support.prop[]="def"
当我说 $config->supported->prop 时,它返回 zend_config 对象,而我期望返回一个数组。
例如2: 支持.prop=“abc” 这很简单,你说 $config->supported->prop 给出字符串“abc”。
那么,有人可以帮我解决例如 1 ,我试图用 zend_config 对象读取数组。
谢谢
How to read an array declared in the application.ini file using zend_config object.
eg 1 :
supported.prop[]="abc"
supported.prop[]="def"
when I say $config->supported->prop, it returns zend_config object, while I was expecting an array to be returned.
eg 2:
supported.prop="abc"
This is straightforward though, where you say $config->supported->prop gives string "abc".
So, can someone help me with the eg 1 , where I am trying to read the array with zend_config object.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
$config->supported->prop->toArray() 将为您提供一个数组。
$config->supported->prop->toArray() will givie you an array.
Zend_Config
实现 迭代器 和 Countable 接口,因此您可以像与数组一样与实例交互:Zend_Config
implements the Iterator and Countable interfaces, so you can interact with an instance just like you would an array: