我在服务器上调用 PHP cURL 方法,响应是 XML 类型。cURL 将输出(删除标签后)保存在标量类型变量中。有没有办法将它存储在对象/哈希/数组中以便于解析?
Rakesh
问问题
142514 次
6 回答
117
<?php
function download_page($path){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$path);
curl_setopt($ch, CURLOPT_FAILONERROR,1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_TIMEOUT, 15);
$retValue = curl_exec($ch);
curl_close($ch);
return $retValue;
}
$sXML = download_page('http://alanstorm.com/atom');
$oXML = new SimpleXMLElement($sXML);
foreach($oXML->entry as $oEntry){
echo $oEntry->title . "\n";
}
于 2009-02-18T23:08:29.827 回答
8
只需header('Content-type: application/xml');
在 XML 响应的回显之前添加,您就会看到一个 XML 页面。
于 2011-10-25T14:17:39.397 回答
5
例子:
<songs>
<song dateplayed="2011-07-24 19:40:26">
<title>I left my heart on Europa</title>
<artist>Ship of Nomads</artist>
</song>
<song dateplayed="2011-07-24 19:27:42">
<title>Oh Ganymede</title>
<artist>Beefachanga</artist>
</song>
<song dateplayed="2011-07-24 19:23:50">
<title>Kallichore</title>
<artist>Jewitt K. Sheppard</artist>
</song>
然后:
<?php
$mysongs = simplexml_load_file('songs.xml');
echo $mysongs->song[0]->artist;
?>
浏览器上的输出:游牧民族之船
学分:http ://blog.teamtreehouse.com/how-to-parse-xml-with-php5
于 2013-05-04T13:38:23.580 回答
2
不,CURL 没有解析 XML 的任何内容,它对返回的内容一无所知。它充当获取内容的代理。由你决定如何处理它。
尽可能使用 JSON(和 json_decode) - 如果不可能,使用任何 XML 库进行解析更容易,例如 DOMXML: http ://php.net/domxml
于 2009-02-18T16:28:19.023 回答
2
$sXML = download_page('http://alanstorm.com/atom');
// Comment This
// $oXML = new SimpleXMLElement($sXML);
// foreach($oXML->entry as $oEntry){
// echo $oEntry->title . "\n";
// }
// Use json encode
$xml = simplexml_load_string($sXML);
$json = json_encode($xml);
$arr = json_decode($json,true);
print_r($arr);
于 2016-09-21T16:10:49.717 回答
1
简单加载xml文件..
$xml = @simplexml_load_string($retValuet);
$status = (string)$xml->Status;
$operator_trans_id = (string)$xml->OPID;
$trns_id = (string)$xml->TID;
?>
于 2015-07-22T06:17:40.463 回答