程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 保存數據庫查詢結果到Excel

保存數據庫查詢結果到Excel

編輯:關於PHP編程

Excel可以很方便地處理數據,數據庫的數據如果能夠讀取成excel文件,會很方便地進行處理。

實現數據庫數據到Excel的轉換類excel.php

<?php
class excel
{ 
   function start()
    {
      ob_start();
     }
    function save($path)
      {
        $data = ob_get_contents();
        ob_end_clean();
        $this->wirtetoexcel($path,$data);
     }
   function wirtetoexcel ($fn,$data)
     {
       $fp=fopen($fn,"wb");
       fwrite($fp,$data);
       fclose($fp);
    }
}
?>

創建這個類的對象,再調用這個對象的方法,即可實現數據庫數據導出為Excel。

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">  
<link href="css/style.css" rel="stylesheet" type="text/css" />  
<?php   
include("conn.php");  
$query=mysql_query("select * from map order by register_date desc") ;   
$i=$perpagenum*($page-1)+1;   
include_once("excel.php");
$Excel=new Excel();
$Excel->start();
?>
<table width="600" border="0">  
	<tr>  
    <td align="center">companyname_cn</td>  
    <td align="center">companyname_en"</td>  
    <td align="center">name</td>  
    <td align="center">position</td>  
    <td align="center">tel</td>  
    <td align="center">fax</td>  
    <td align="center">email</td>  
    <td align="center">website</td>  
    <td align="center">product</td>  
  </tr> 
<?php
while($myrow = mysql_fetch_array($query)){   
?>  
  <tr>  
    <td align="center"><?php echo $myrow["companyname_cn"]; ?></td>  
    <td align="center"><?php echo $myrow["companyname_en"]; ?></td>  
    <td align="center"><?php echo $myrow["name"]; ?></td>  
    <td align="center"><?php echo $myrow["position"]; ?></td>  
    <td align="center"><?php echo $myrow["tel"]; ?></td>  
    <td align="center"><?php echo $myrow["fax"]; ?></td>  
    <td align="center"><?php echo $myrow["email"]; ?></td>  
    <td align="center"><?php echo $myrow["website"]; ?></td>  
    <td align="center"><?php echo $myrow["product"]; ?></td>  
  </tr>  
<? }  
?>  
</table>  
<p>  
<?php   
	$Excel->save("Excel/data.xls"); 
?>  
</p>

關鍵代碼其實就幾行:

// 包含類文件
include_once("excel.php");
// 創建excel類的對象
$Excel=new Excel();
// 調用對象 $Excel 的 start()方法
$Excel->start();
// 調用對象的 save() 聲稱 excel 文件。
$Excel->save("Excel/data.xls");

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved