doukengsha9472 2018-04-08 21:36
浏览 77
已采纳

简单的XML API调用

I am creating an application that gives users information on football matches.

I am using XML to make an API call to display data, for instance, information on multiple hotels in the area.

When the info is displayed back to the screen the first set of data is blank and no data is displayed. It's almost like it's missing the first element.

Any advice would be helpful, cheers.

enter image description here

if(!$xml=simplexml_load_file('http://xmlfeed.laterooms.com/index.aspxaid=KEYHERE&rtype=6&geolon='.$lng.'&geolat='.$lat.'')){
            trigger_error('Error reading XML file',E_USER_ERROR);
        }

        foreach($xml as $hotel){
          echo '<li>';
          echo '<img src ='.$hotel->images.' width ="200px" height ="200px">';
          echo '<strong><br>'.$hotel->hotel_name.'</br></strong>';
          echo '<br>Star Rating: '.$hotel->hotel_star.'';
          echo '<br>Postcode: '.$hotel->hotel_pcode.'';
          echo '<br>City: '.$hotel->hotel_city.'<br>';
          echo '<a href='.$hotel->hotel_link.'>';
          echo '<button>Book Now</button></a>';
          echo '<br><br>';

          echo'</li>';
  • 写回答

1条回答 默认 最新

  • douhui4831 2018-04-09 07:27
    关注

    The problem is that the first element in the returned document is a <response> which basically tells you if the call has succeeded etc. You should change your loop to just pick up the hotels returned...

    foreach($xml->hotel as $hotel){
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效