admin 管理员组文章数量: 887021
php 新浪天气api,xml
调用新浪天气的API(xml格式返回),可以得到xml字符串,可是装载到对象中后却输出不出来,是怎么回事?getWeather();
class Weather
{
private $apiUrl = '.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;
}
}
?>
回复内容:
调用新浪天气的API(xml格式返回),可以得到xml字符串,可是装载到对象中后却输出不出来,是怎么回事?getWeather();
class Weather
{
private $apiUrl = '.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; 本条技术文章来源于互联网,如果无意侵犯您的权益请点击此处反馈版权投诉 本文系统来源:php中文网
本文标签: php 新浪天气api XML
版权声明:本文标题:php 新浪天气api,xml 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1713261326h633317.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论