After analyzing most of the currency convertors services out there, I realized that no matter which one you use, all conversions are always approximate. Google finance, XE, thecurrencygraph, etc... It doesn't matter, they are all different. Some of them, not named here, claim that they are 100% accurate but that's not true, each Bank has its own interpretation of the rates, and I do understand that, as they make money with our money.
All that research was part of a personal project, a research which end up creating a simple but efficient conversion tool based on the daily rates feed from the official European Central Bank (ECB)
The conversion occurs using the EURO rate. That means that if you convert from USD to GBP, USD will be converted to EUR and then to GBP, loosing some accuracy on the way.
Unzip the contents of the package and place the file where ever you wish, but for the sake of this example, I assume you move it to your extensions folder.
Yii::import('ext.ECurrencyHelper'); $cc = new ECurrencyHelper(); // convert 10 us dollars to euros echo $cc->convert(ECurrencyHelper::US_DOLLAR, ECurrencyHelper::EUROPEAN_EURO, 10); // convert 10 chinese yuan renminbi to us dollars echo $cc->convert(ECurrencyHelper::CHINESE_YUAN_RENMINBI, ECurrencyHelper::US_DOLLAR, 10);
It has been an addition to the extension, now you can use ECB, Yahoo or Google; being ECB and Yahoo the most accurate ones (with Yahoo and Google you can use most of World Currencies abbreviations). Here is an example of use:
$cc = new ECurrencyHelper(); echo $cc->convert('USD','EUR',1, ECurrencyHelper::USE_GOOGLE).','; echo $cc->convert('USD','EUR',1, ECurrencyHelper::USE_YAHOO).','; echo $cc->convert('USD','EUR',1).'<br/>'; echo $cc->convert('ILS','EUR',1, ECurrencyHelper::USE_GOOGLE).','; echo $cc->convert('ILS','EUR',1, ECurrencyHelper::USE_YAHOO).','; echo $cc->convert('ILS','EUR',1);
important: the functions **getRates() and getRate() do work only with ECB, which automatically loads the currency rates. Would be nice to do the same with Yahoo and Google, if you guys know how to, let me know.
Solved open_basedir restrictions
Fixed silly mistype bug
web development has never been so fun
www.2amigos.us - under construction -
Be the first person to leave a comment
Please login to leave your comment.