萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> php生成Excel文件 實現代碼

php生成Excel文件 實現代碼

 <p>有段日子沒有更新博客了,生怕被百度遺忘啊,biu~biu~.最近有個項目需要統計網站的url和title,保存在excel裡面,下面是具體的代碼</p>

<pre class="php" name="code"><!--p

//php生成excel報表,是通過發送header()頭信息完成的
header("Content-Type: application/vnd.ms-execl");
header("Content-Type: application/vnd.ms-excel; charset=gb2312");
//告知浏覽器文件名稱,並要求客戶端下載
header("Content-Disposition:filename=test.xls");
header("Pragma: no-cache");
header("Expires: 0");

$link = mysql_connect('localhost', 'root', '') or die('Could not connect: ' . mysql_error());
mysql_select_db('novartis') or die('Could not select database');

mysql_query("SET NAMES gb2312");
$query = 'SELECT title,keywords,url,description FROM cms_content';
$result = mysql_query($query) or die('Query failed: ' . mysql_error());
// 用 HTML 顯示結果
//$str =mb_convert_encoding ("測試1","gb2312","utf-8");
echo "Titlet";
echo "Keywordst";
echo "Descriptiont";
echo "URLtn";
/* 格式: 換行:"tn": 單元格之間: "t" */

while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) {
echo $line['title']."t";
echo $line['keywords']."t";
echo $line['description']."t";
echo $line['url']."tn";

}


// 釋放結果集
mysql_free_result($result);
// 關閉連接
mysql_close($link);
-->
</pre>
<div>&nbsp;</div>

copyright © 萬盛學電腦網 all rights reserved