我想將XE貨幣轉換器集成到我的網站,但希望在我的網站上輸出相同的網頁,而不是重定向到XE網站,如何實現這一點?與iframe?請你能提供一個例子嗎?非常感謝。cakephp和XE貨幣轉換器?
0
A
回答
0
你可以從他們的網頁數據的飼料,它看起來像: http://www.xe.com/datafeed/
這樣,您可以通過PHP /捲曲等檢索貨幣和與它只是正常的數據。
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. 貨幣轉換器
- 2. 貨幣XE計算
- 3. 轉換貨幣
- 4. greasemonkey貨幣轉換器
- 5. 谷歌貨幣轉換器
- 6. angularjs貨幣轉換器
- 7. 貨幣轉換器問題
- 8. 貨幣轉換器JSONp
- 9. WebServicex貨幣轉換器API
- 10. 貨幣轉換器不轉換
- 11. Javascript貨幣轉換
- 12. 貨幣轉換 - AngularJS
- 13. Django貨幣轉換
- 14. 收集從geoplugin貨幣轉換器返回的貨幣 - PHP
- 15. 貨幣轉換器在HTML + PHP
- 16. UNIREST objective c貨幣轉換器Api
- 17. 貨幣轉換器Web服務
- 18. 貨幣轉換器! (如果語句)
- 19. Knockout Circular Reference(簡單貨幣轉換器)
- 20. 貨幣轉換器(用戶輸入)
- 21. 使用angularjs的貨幣轉換器
- 22. 如何包含貨幣轉換器?
- 23. 貨幣轉換器幫助c#
- 24. C++貨幣轉換器尾隨零
- 25. ruby中的貨幣轉換器
- 26. jQuery Mobile中的貨幣轉換器
- 27. Magento貨幣轉換器不工作
- 28. 在Swift中創建貨幣轉換器
- 29. Android |貨幣轉換器實時匯率
- 30. 使用PHP的貨幣轉換器
我仍然在規劃一個新手,你有什麼例子?這將非常感激。謝謝。 – Nick 2013-04-08 10:15:28
嗯,飼料成本540美元,忘記那部分:-) – Nick 2013-04-08 10:27:31
我只是使用這個:https://github.com/dereuromark/tools/blob/master/Lib/CurrencyLib.php – mark 2013-04-08 10:46:03