Tests/I18n.php
[Pman.Core] / Tests / I18n.php
1 <?php
2
3 class Pman_Core_Tests_I18n extends Pman
4 {
5     function getAuth()
6     {
7         if (!$this->cli) {
8             die("not cli?");
9         }
10         
11     }
12     function get()
13     {
14         require_once 'Pman/Core/I18n.php';
15          $i = new Pman_Core_I18n();
16          $ret = $i->convertCurrency(100,"HKD","USD");
17         var_dump($ret); 
18         
19         
20     }
21     
22     
23 }