我想将XE货币转换器集成到我的网站中,但是想在我的网站上输出同一页而不是重定向到XE网站,如何实现这一点?用iframe?你能告诉我一个例子吗?非常感谢。
答案 0 :(得分:2)
您实际上可以向xe.com提交查询并使用curl
解析来自它的数据 <?php
$url = "http://www.xe.com/currencyconverter/convert/?Amount=1&From=USD&To=PHP";
$ch = curl_init(); // Initialize a CURL session.
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Return Page contents.
curl_setopt($ch, CURLOPT_URL, $url); // Pass URL as parameter.
$data = curl_exec($ch); // grab URL and pass it to the variable.
curl_close($ch); // close curl resource, and free up system resources.
$dom = new DOMDocument();
@$dom->loadHTML($data);
$xpath = new DOMXPath($dom);
$tableRows = $xpath->query('//table//tr');
$details = array();
foreach ($tableRows as $row) {
// fetch all 'tds' inside this 'tr'
$td = $xpath->query('td', $row);
if ($td->length == 3 ):
foreach($td as $key => $val){
if($key==0 Or $key ==2) {
$details[] = preg_replace('/[^a-zA-Z0-9, \'\.:]*/i', '',$val->nodeValue);
}
}
endif;
}
print "<pre>";
print_r($details);
print "</pre>";
?>
访问:http://myphptroubles.blogspot.com/2013/09/convert-currency-using-xecom-via-curl.html
答案 1 :(得分:0)
您可以从他们的页面订购数据Feed,它看起来像: http://www.xe.com/datafeed/
有了这个,您可以通过PHP / curl等检索货币,并像普通数据一样使用它。