PHP PHP货币转换器(谷歌版)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP PHP货币转换器(谷歌版)相关的知识,希望对你有一定的参考价值。

function currency_convert($from,$to,$amount) {
	$string = "1".$from."=?".$to;
	$google_url = "http://www.google.com/ig/calculator?hl=en&q=".$string;
	$result = file_get_contents($google_url);
	$result = explode('"', $result);
	$converted_amount = explode(' ', $result[3]);
	$conversion = $converted_amount[0];
	$conversion = $conversion * $amount;
	$conversion = round($conversion, 2);
	$rhs_text = ucwords(str_replace($converted_amount[0],"",$result[3]));
	$rhs = $conversion.$rhs_text;
	$price = preg_replace('_^\D+|\D+$_', "", $rhs);
	return number_format($price, 2, '.', ',');
}
echo currency_convert('GBP', 'USD',800.00)

以上是关于PHP PHP货币转换器(谷歌版)的主要内容,如果未能解决你的问题,请参考以下文章

php 重力Wiz //重力形式//货币转换器

PHP 货币转换

php 货币切换器

php [WooCommerce货币转换器小部件]使用国家标志而不是国家代码。

将货币字符串转换为数字 Drupal Views / PHP

Bittrex API 加密货币交易者:php 到 Java 的转换