Вы можете конвертировать валюту с помощью Google легко с помощью приведенного ниже кода. Узнайте больше о библиотеке конвертации валют в PHP с Google здесь http://mydons.com/currency-conversion-library-in-codeigniter/
public function getResult(){
$result = file_get_contents($this->googleUrl);/* Convert the above result into Array */
$result = explode('"', $result);/* Right side text*/
$convertedAmount = explode(' ', $result[3]);
$conversion = $convertedAmount[0];
$conversion = $conversion * $this->amount;
$conversion = round($conversion, 2);//Get text for converted currency
$rightText = ucwords(str_replace($convertedAmount[0],"",$result[3]));//Make right hand side string
$rightText = $conversion.$rightText;/* Left side text*/
$googleLeft = explode(' ', $result[1]);
$fromAmount = $googleLeft[0];//Get text for converted from currency
$fromText = ucwords(str_replace($fromAmount,"",$result[1])); //Make left hand side string
$leftText = $this->amount." ".$fromText;
return $leftText." = ".$rightText;
}