• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

xml – php调用新浪天气API遇到的一个问题

php 搞代码 3年前 (2022-01-25) 17次浏览 已收录 0个评论
文章目录[隐藏]

调用新浪天气的API(xml格式返回),可以得到xml字符串,可是装载到对象中后却输出不出来,是怎么回事?

    <?php       /**     *      */      $w = new Weather();      echo $w->getWeather();      class Weather       {          private $apiUrl = 'http://php.weather.sina.com.cn/xml.php?city=%B1%B1%BE%A9&password=DJOYnieT8234jlsK&day=0';          public function getWeather()          {              $xml = file_get_contents($this->apiUrl);              $result = simplexml_load_string($xml);              $weather = $result->pollutio<span style="color:transparent">~来1源gaodai#ma#com搞*代#码1网</span><abbr>搞代gaodaima码</abbr>n;//xml中的一个子节点              return $weather;                        }      }      ?>  

回复内容:

调用新浪天气的API(xml格式返回),可以得到xml字符串,可是装载到对象中后却输出不出来,是怎么回事?

    <?php       /**     *      */      $w = new Weather();      echo $w->getWeather();      class Weather       {          private $apiUrl = 'http://php.weather.sina.com.cn/xml.php?city=%B1%B1%BE%A9&password=DJOYnieT8234jlsK&day=0';          public function getWeather()          {              $xml = file_get_contents($this->apiUrl);              $result = simplexml_load_string($xml);              $weather = $result->pollution;//xml中的一个子节点              return $weather;                        }      }      ?>  

$weather = $result->pollution;//xml中的一个子节点
修改为:
$weather = $result->Weather->pollution;


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:xml – php调用新浪天气API遇到的一个问题
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址