当前位置:首页 > PHP教程 > php类库 > 列表

PHP货币换算程序代码

发布:smiling 来源: PHP粉丝网  添加日期:2013-12-27 13:40:57 浏览: 评论:0 
  1. <?php 
  2.   
  3. /* 
  4. * File: CurrencyConverter.php 
  5. * Author: Simon Jarvis 
  6. * Copyright: 2005 Simon Jarvis 
  7. * Date: 10/12/05 
  8. * Link: http://www.white-hat-web-design.co.uk/articles/php-currency-conversion.php 
  9.   
  10. * 
  11. * This program is free software; you can redistribute it and/or 
  12. * modify it under the terms of the GNU General Public License 
  13. * as published by the Free Software Foundation; either version 2 
  14. * of the License, or (at your option) any later version. 
  15. * 
  16. * This program is distributed in the hope that it will be useful, 
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of 
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
  19. * GNU General Public License for more details: 
  20. * http://www.gnu.org/licenses/gpl.html 
  21. * 
  22. */ 
  23.   
  24. class CurrencyConverter { 
  25.   
  26.    var $xml_file = "www.ecb.int/stats/eurofxref/eurofxref-daily.xml"
  27.    var $mysql_host$mysql_user$mysql_pass$mysql_db$mysql_table
  28.    var $exchange_rates = array(); 
  29.   
  30.    //Load Currency Rates 
  31.   
  32.    function CurrencyConverter($host,$user,$pass,$db,$tb) { 
  33.   
  34.       $this->mysql_host = $host
  35.       $this->mysql_user = $user
  36.       $this->mysql_pass = $pass
  37.       $this->mysql_db = $db
  38.       $this->mysql_table = $tb
  39.   
  40.       $this->checkLastUpdated(); 
  41.   
  42.       $conn = mysql_connect($this->mysql_host,$this->mysql_user,$this->mysql_pass); 
  43.   
  44.       $rs = mysql_select_db($this->mysql_db,$conn); 
  45.   
  46.       $sql = "SELECT * FROM ".$this->mysql_table; 
  47.   
  48.       $rs =  mysql_query($sql,$conn); 
  49.   
  50.       while($row = mysql_fetch_array($rs)) { 
  51.   
  52.          $this->exchange_rates[$row['currency']] = $row['rate']; 
  53.       } 
  54.   
  55.    } 
  56.   
  57.    /* Perform the actual conversion, defaults to £1.00 GBP to USD */ 
  58.    function convert($amount=1,$from="GBP",$to="USD",$decimals=2) { 
  59.   
  60.       return(number_format(($amount/$this->exchange_rates[$from])*$this->exchange_rates[$to],$decimals)); 
  61.    } 
  62.   
  63.    /* Check to see how long since the data was last updated */ 
  64.    function checkLastUpdated() { 
  65.       $conn = mysql_connect($this->mysql_host,$this->mysql_user,$this->mysql_pass); 
  66.   
  67.       $rs = mysql_select_db($this->mysql_db,$conn); 
  68.   
  69.       $sql = "SHOW TABLE STATUS FROM ".$this->mysql_db." LIKE '".$this->mysql_table."'"
  70.   
  71.       $rs =  mysql_query($sql,$conn); 
  72.   
  73.       if(mysql_num_rows($rs) == 0 ) { 
  74.   
  75.          $this->createTable(); 
  76.       } else { 
  77.          $row = mysql_fetch_array($rs); 
  78.          if(time() > (strtotime($row["Update_time"])+(12*60*60)) ) { 
  79.   
  80.             $this->downloadExchangeRates(); 
  81.          } 
  82.       } 
  83.    } 
  84.   
  85.    /* Download xml file, extract exchange rates and store values in database */ 
  86.   
  87.    function downloadExchangeRates() { 
  88.       $currency_domain = substr($this->xml_file,0,strpos($this->xml_file,"/")); 
  89.       $currency_file = substr($this->xml_file,strpos($this->xml_file,"/")); 
  90.       $fp = @fsockopen($currency_domain, 80, $errno$errstr, 10); 
  91.       if($fp) { 
  92.   
  93.          $out = "GET ".$currency_file." HTTP/1.1rn"
  94.          $out .= "Host: ".$currency_domain."rn"
  95.          $out .= "User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8) Gecko/20051111 Firefox/1.5rn"
  96.          $out .= "Connection: Closernrn"
  97.          fwrite($fp$out); 
  98.          while (!feof($fp)) { 
  99.   
  100.             $buffer .= fgets($fp, 128); 
  101.          } 
  102.          fclose($fp); 
  103.   
  104.          $pattern = "{<Cubes*currency='(w*)'s*rate='([d.]*)'/>}is"
  105.          preg_match_all($pattern,$buffer,$xml_rates); 
  106.          array_shift($xml_rates); 
  107.   
  108.          for($i=0;$i<count($xml_rates[0]);$i++) { 
  109.   
  110.             $exchange_rate[$xml_rates[0][$i]] = $xml_rates[1][$i]; 
  111.          } 
  112.   
  113.          $conn = mysql_connect($this->mysql_host,$this->mysql_user,$this->mysql_pass); 
  114.   
  115.          $rs = mysql_select_db($this->mysql_db,$conn); 
  116.   
  117.          foreach($exchange_rate as $currency=>$rate) { 
  118.   
  119.             if((is_numeric($rate)) && ($rate != 0)) { 
  120.   
  121.                $sql = "SELECT * FROM ".$this->mysql_table." WHERE currency='".$currency."'"
  122.                $rs =  mysql_query($sql,$connor die(mysql_error()); 
  123.                if(mysql_num_rows($rs) > 0) { 
  124.   
  125.                   $sql = "UPDATE ".$this->mysql_table." SET rate=".$rate." WHERE currency='".$currency."'"
  126.                } else { 
  127.   
  128.                   $sql = "INSERT INTO ".$this->mysql_table." VALUES('".$currency."',".$rate.")"
  129.                } 
  130.   
  131.                $rs =  mysql_query($sql,$connor die(mysql_error()); 
  132.             } 
  133.   
  134.          } 
  135.       } 
  136.    } 
  137.   
  138.    /* Create the currency exchange table */ 
  139.    function createTable() { 
  140.   
  141.       $conn = mysql_connect($this->mysql_host,$this->mysql_user,$this->mysql_pass); 
  142.   
  143.       $rs = mysql_select_db($this->mysql_db,$conn); 
  144.   
  145.       $sql = "CREATE TABLE ".$this->mysql_table." ( currency char(3) NOT NULL default '', rate float NOT NULL default '0', PRIMARY KEY(currency) ) ENGINE=MyISAM"
  146.   
  147.       $rs =  mysql_query($sql,$connor die(mysql_error()); 
  148.   
  149.       $sql = "INSERT INTO ".$this->mysql_table." VALUES('EUR',1)"
  150.   
  151.       $rs =  mysql_query($sql,$connor die(mysql_error()); 
  152.   
  153.       $this->downloadExchangeRates(); 
  154.    } 
  155.   
  156.   
  157. ?> 

 

上面的代码复制到一个新文件并将其保存为CurrencyConverter.php。当你需要转换包含类文件,称为“转换”功能。你需要输入自己的mysql数据库变量如登录详细信息。下面的例子将£2.50英镑转换成美元(美元)。

  1. <?php 
  2.    include('CurrencyConverter.php'); 
  3.    $x = new CurrencyConverter('your_host','your_username','your_password','your_database_name','your_table_name'); 
  4.    echo $x->convert(2.50,'GBP','USD'); 
  5. ?>

Tags: PHP 货币 换算

分享到: