php如何解析xml数据 php 读取xml( 二 )


sex = $sex
age = $age

}
$i++;
}
}
//print_r($arr)
lishixinzhi/Article/program/PHP/201311/21636
php怎么解析从网页中获取的xml数据先给你个以前写的读取xml格式的天气预报的代码吧,比着葫芦画瓢 , 不懂再追问
?php
$apistr=file_get_contents(";ak=B8aced94da0b345579f481a1294c9094"); //获取xml内容
$apiobj=simplexml_load_string($apistr);//解析xml代码
$todayobj=$apiobj-results-result[0]-date;//读取星期
$weatherobj=$apiobj-results-result[0]-weather;//读取天气
$windobj=$apiobj-results-result[0]-wind;//读取风力
$temobj=$apiobj-results-result[0]-temperature;//读取温度
$contentStr = "上海\n{$todayobj}\n天气:{$weatherobj}\n风力:{$windobj}\n温度:{$temobj}";
echo $contentStr;
?
php如何解析xml数据的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于php 读取xml、php如何解析xml数据的信息别忘了在本站进行查找喔 。

推荐阅读