好的,我在这些子节点之间循环有问题。在本例中,我将向您展示我试图从酒店信息源获取便利设施时使用的代码。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;
}

然而,它只是返回第一个礼仪。

最佳答案

$hotel_amenities = $xml->contentDataResults->hotelContent->hotelAmenities->children();
foreach($hotel_amenities as $a)
{
  echo $a;
}

10-07 14:46