如何使用 PHP 的 simplexml 循环 XML 子节点

发布于 2024-10-01 04:56:46 字数 414 浏览 4 评论 0原文

好的,我在循环这些子节点时遇到问题。在此示例中,我将向您展示我用来尝试从酒店信息源获取便利设施的代码。 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2024-10-08 04:56:46
$hotel_amenities = $xml->contentDataResults->hotelContent->hotelAmenities->children();
foreach($hotel_amenities as $a)
{
  echo $a;
}
$hotel_amenities = $xml->contentDataResults->hotelContent->hotelAmenities->children();
foreach($hotel_amenities as $a)
{
  echo $a;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文