From 8e59c5c1ed796961c2616e818ee774200d2a07e6 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 26 Mar 2013 16:16:02 +0800 Subject: [PATCH] I18n.php --- I18n.php | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/I18n.php b/I18n.php index abffb4f0..d5a65d94 100644 --- a/I18n.php +++ b/I18n.php @@ -290,17 +290,28 @@ class Pman_Core_I18n extends Pman if (!empty($this->rates)) { return true; } + // load our default rates to start with.. + $dom = simplexml_load_file(dirname(__FILE__).'/eurofxref-daily.xml'); + $this->rates['EUR'] = 1.0; + $this->rates['TWD'] = 46.7008412; + $this->rates['VND'] = 26405.3; + $this->rates['RMB'] = $this->rates['CNY'] ; + + foreach($dom->Cube->Cube->Cube as $c) { + //echo '
';print_r($c );
+            $this->rates[(string)$c['currency']] = (string)$c['rate'];
+        }
+        // now try loading from latest..
         $target = ini_get('session.save_path').'/eurofxref-daily.xml';
+        
         if (!file_exists($target) || filemtime($target) < (time() - 60*60*24)) {
             // this may fail...
             $f = @file_get_contents('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
             if (!strlen($f)) {
-                $target = dirname(__FILE__).'/eurofxref-daily.xml';
-                
-                
-            } else {
-                file_put_contents($target,$f);
-            }
+                return;
+            } 
+            file_put_contents($target,$f);
+        
         } 
         $dom = simplexml_load_file($target);
         $this->rates['EUR'] = 1.0;
@@ -311,7 +322,7 @@ class Pman_Core_I18n extends Pman
            //echo '
';print_r($c );
             $this->rates[(string)$c['currency']] = (string)$c['rate'];
         }
-         $this->rates['RMB'] = $this->rates['CNY'] ;
+        $this->rates['RMB'] = $this->rates['CNY'] ;
     }
     
     
-- 
2.39.2