php 按键对 XML 对象进行排序
好的,我有一个 XML 对象。
$articles,我正在围绕这个进行 foreach-ing,如下所示:
foreach($articles as $key => $ind_article) {
}
我遇到的问题是我需要访问的值如下所示:
$ind_article->image;
$ind_article->image2;
$ind_article->image1;
但我无法设置文章的图像源,因为密钥未知,但我知道它以image
开头。我可以对数组/对象执行什么操作来对其进行排序或显示所有 image
值?
Ok so I have an XML object.
$articles, I am foreach-ing around this, like so:
foreach($articles as $key => $ind_article) {
}
The problem I have is that the values I need to access are like so:
$ind_article->image;
$ind_article->image2;
$ind_article->image1;
But I can't set the image source of the article because the key is unknown, yet I know it starts with image
. What can I do to the array/object to either order it or display all image
values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)