如何使用 PHP 的 simplexml 循环 XML 子节点
好的,我在循环这些子节点时遇到问题。在此示例中,我将向您展示我用来尝试从酒店信息源获取便利设施的代码。 XML 的格式似乎不太好,不幸的是我无法控制它。这是我的代码。
$xml = simplexml_load_file("http://www.2-20.com/hotelRoomSearchDetails.cfm?pnum_hotel_seq_id=210&pchr_room_type=STUDIO%22")
$hotel_amenities = $xml->contentDataResults->hotelContent->hotelAmenities;
foreach($hotel_amenities as $a){
echo $a->amenity;
}
然而,它只是返回第一个便利设施。
OK, I'm having trouble looping through these sub-nodes. For this example, I'll show you the code I am using to try to grab the Amenities from a Hotel Info feed. The XML doesn't appear to be formatted great, and unfortunately I don't have control over that. Here's my code.
$xml = simplexml_load_file("http://www.2-20.com/hotelRoomSearchDetails.cfm?pnum_hotel_seq_id=210&pchr_room_type=STUDIO%22")
$hotel_amenities = $xml->contentDataResults->hotelContent->hotelAmenities;
foreach($hotel_amenities as $a){
echo $a->amenity;
}
It is only returning the first amenity however.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)