Using the Google currency converter

For a project I’m working, I needed to get shipping rates from the UPS API (a blog post about this will follow soon).

The problem I ran into was that the UPS API returns the shipping rates with the currency of the country where the rates for are asked, so you can’t force it to always return the rates in EUR.

One solution to convert the prices is to make a very big array with all currency rates in it. I then would maintain the array every day at 9’o clock to check if the rates weren’t changed. Right, that’s not an option.

Like you might know you can easily convert currencies by using the Google search engine. For example searching on “1 Euro to dollar” will retrieve the Euro in dollar.

Below the class I wrote to convert currencies using the Google currency converter.

sConvertorUrl, $this->fPrice, $this->sFrom, $this->sTo);

		$sResponse = file_get_contents($sUrl);
		if(!$sResponse) {
			throw new Exception('Google currency convertor is not available at the moment');
		}

		$oResult = json_decode($sResponse);
		if($oResult->error != '') {
			throw new Exception('The following error occurred: '.$oResult->error);
		}

		// Isolate the price
		return (float)$oResult->rhs;
	}

	/**
	 * Get, retrieve the foreign currency
	 *
	 * @param float $fPrice
	 * @param string $sFrom, currency code (EUR, USD,...)
	 * @param string $sTo, currency code (EUR, USD,...)
	 */
	public function get($fPrice, $sFrom, $sTo)
	{
		if(!is_float($fPrice)) {
			throw new Exception('The price to convert should be a float, "'.gettype($fPrice). '" given while calling: '.__FUNCTION__);
		}

		$this->fPrice	= $fPrice;
		$this->sFrom	= strtoupper($sFrom);
		$this->sTo		= strtoupper($sTo);

		return $this->exec();
	}

}
?>

Pretty straightforward as you see.

Comments

533 responses to “Using the Google currency converter”

  1. obyavlenie.ru Avatar

    References:

    Seneca buffalo creek casino

    References:
    https://aryba.kg/user/tiestew8/

  2. case.edu Avatar

    References:

    Us online casinos

    References:
    https://dreevoo.com/profile.php?pid=1328060

  3. bandori.party Avatar

    References:

    No deposit bonus blog

    References:
    https://pad.karuka.tech/s/fBIkagpz2

  4. clickrank ai Avatar

    Hi there friends, how is all, and what you want to say about this article, in my view its genuinely amazing designed for me.

  5. https://git.123doit.com Avatar

    References:

    Does ritalin stunt growth

    References:
    https://git.prime.cv/woodrowtillyar

  6. https://www.lizyum.com Avatar

    References:

    What type of steroids do bodybuilders use

    References:
    https://git.lucas-michel.fr/kristinahmelni

  7. http://182.92.251.55 Avatar

    References:

    Anabolic-steroids.biz

    References:
    http://119.91.35.154:3000/christinpetre9

  8. piscesys.com Avatar

    References:

    Anabolic injections

    References:
    https://4realrecords.com/florjenkins157

  9. git.bp-web.app Avatar

    References:

    Is testosterone illegal

    References:
    http://120.76.251.151:3000/moiseshardin1

  10. 47.107.245.0 Avatar

    References:

    Anabolic steroid

    References:
    https://tunelifystream.com/darrenshattuck

  11. 152.136.145.93 Avatar

    References:

    Losing steroid weight

    References:
    http://1.15.136.237:3000/stewartclimpso

  12. "oppna ett binance-konto Avatar

    Can you be more specific about the content of your article? After reading it, I still have some doubts. Hope you can help me.

  13. binance referal code Avatar

    Can you be more specific about the content of your article? After reading it, I still have some doubts. Hope you can help me.

  14. Timzonna Avatar

    Кемпинг хутор Каменный стол — просторная территория для отдыха у воды и в окружении леса. Удобные площадки под палатки расположены рядом с озером, что позволяет наслаждаться купанием и красивыми видами с самого утра. Место подходит для семейного отдыха, встреч с друзьями и туристических компаний. Тишина, свежий воздух и естественная природа создают атмосферу спокойствия и уединения. Формат кемпинга позволяет совместить активные прогулки, рыбалку и расслабленные вечера у костра. Отличный вариант для тех, кто выбирает отдых на природе без городской суеты.

  15. Lunatogel Avatar

    This is very fascinating, You are an overly skilled blogger.
    I have joined your feed and stay up for looking for more of your fantastic post.
    Also, I have shared your website in my social networks

Leave a Reply

Your email address will not be published. Required fields are marked *