我需要從URL解析XML文檔並解決使用捲曲,因爲我的主機不與一些DOM或SimpleXML函數工作。我怎樣才能取代歐元符號並顯示出來。函數str_replace不幫助我。
<?php
$url = 'http://www.aviasales.ru/latest-offers.xml';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, 'app');
$query = curl_exec($ch);
curl_close($ch);
$xml=simplexml_load_string($query);
//$xml = str_replace('€', '€', $xml);
?>
<table width=100%>
<tr bgcolor="#CAE8F0" align="left">
<td><b><?= $xml->offer[1]['title']?></b></td>
<td width=5%><b><a href="<?=$xml->offer[1]["href"]?>">buy</a></td>
</tr>
</table>
我向您展示瞭如何做到這一點,但您無法理解!你想要什麼?讓我們去你的辦公桌,爲你寫出最好的代碼......好嗎? http://stackoverflow.com/questions/14511687/parsing-xml-from-url-php –