php simplexml获取以数字开头的对象变量
当我使用 SimpleXMLElement 解析 rss 文件时,我得到这个对象:
object(SimpleXMLElement)#307 (1) {
[0]=>
string(39) "http://workspace/wordpress/hello-world/"
}
$var->0 不起作用。
我不知道该怎么做:(
谢谢。
When I parse an rss file with SimpleXMLElement, I get this object :
object(SimpleXMLElement)#307 (1) {
[0]=>
string(39) "http://workspace/wordpress/hello-world/"
}
$var->0 doesn't works.
I don't know how to do it :(
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它的行为就像一个数组
在这种情况下 - 当只有一个(子)元素时 - 你甚至不必使用索引
It behaves like an array
In this case - when there's only one (child) element - you don't even have to use the index