From fe386779537b055fc9061594916989e2b0a7147a Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 22 Dec 2011 11:05:04 +0800 Subject: [PATCH] I18n.php --- I18n.php | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/I18n.php b/I18n.php index 644d4492..3846f5c9 100644 --- a/I18n.php +++ b/I18n.php @@ -217,6 +217,62 @@ class Pman_Core_I18N extends Pman } return implode(', ', $ret); } + /** + * convert rate: + * usage : $i = new Pman_Core_I18n(); + * $ret = $i->convertCurrency(100,"HKD","USD"); + * if ($ret == false) { + /// something went wrong. + } + * + * @param Pman_Core_DataObjects_Person $au Authenticated user + * @param String $type c/l/m + * @param String $k 'comma' seperated list of keys to translate + */ + + + function convertCurrency($val, $from, $to) + { + $r = $this->loadRates(); + if ($r === false) { + return false; + } + if (!isset($this->rates[$from]) || !isset($this->rates[$to]) ) { + return false; + } + //echo '
';print_R($this->rates);
+        $base = (1.0 / $this->rates[$from]) * $val;
+  
+        return $this->rates[$to] * $base;
+    
+    }
+    var $rates = array();
+    function loadRates()
+    {
+        if (!empty($this->rates)) {
+            return true;
+        }
+        $target = ini_get('session.save_path').'/eurofxref-daily.xml';
+        if (!file_exists($target) || filemtime($target) < (time() - 60*60*24)) {
+            $f = file_get_contents('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
+            if (!strlen($f)) {
+                return false;
+            }
+            file_put_contents($target,$f);
+        } 
+        $dom = simplexml_load_file($target);
+        $this->rates['EUR'] = 1.0;
+        $this->rates['TWD'] = 46.7008412;
+        $this->rates['VND'] = 26405.3;
+       
+        foreach($dom->Cube->Cube->Cube as $c) {
+           //echo '
';print_r($c );
+            $this->rates[(string)$c['currency']] = (string)$c['rate'];
+        }
+         $this->rates['RMB'] = $this->rates['CNY'] ;
+    }
+    
+    
      
     
 }
\ No newline at end of file
-- 
2.39.2