41 lines
1.0 KiB
PHP
41 lines
1.0 KiB
PHP
<?php
|
|
/*
|
|
$Id: localization.php,v 1.12 2003/06/25 20:36:48 hpdl Exp $
|
|
|
|
osCommerce, Open Source E-Commerce Solutions
|
|
http://www.oscommerce.com
|
|
|
|
Copyright (c) 2003 osCommerce
|
|
|
|
Released under the GNU General Public License
|
|
*/
|
|
|
|
function quote_oanda_currency($code, $base = DEFAULT_CURRENCY) {
|
|
$page = file('http://www.oanda.com/convert/fxdaily?value=1&redirected=1&exch=' . $code . '&format=CSV&dest=Get+Table&sel_list=' . $base);
|
|
|
|
$match = array();
|
|
|
|
preg_match('/(.+),(\w{3}),([0-9.]+),([0-9.]+)/i', implode('', $page), $match);
|
|
|
|
if (sizeof($match) > 0) {
|
|
return $match[3];
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function quote_xe_currency($to, $from = DEFAULT_CURRENCY) {
|
|
$page = file('http://www.xe.net/ucc/convert.cgi?Amount=1&From=' . $from . '&To=' . $to);
|
|
|
|
$match = array();
|
|
|
|
preg_match('/[0-9.]+\s*' . $from . '\s*=\s*([0-9.]+)\s*' . $to . '/', implode('', $page), $match);
|
|
|
|
if (sizeof($match) > 0) {
|
|
return $match[1];
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
?>
|