欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

php生成excel文件的簡(jiǎn)單方法

 更新時(shí)間:2014年02月08日 15:57:38   作者:  
生成excel文件,最簡(jiǎn)單的莫過于把數(shù)據(jù)庫的數(shù)據(jù)導(dǎo)入到excel就行了,下面有個(gè)不錯(cuò)的示例,大家可以參考下
生成excel 當(dāng)然使用的是 phpExcel這個(gè)類庫了,可是它太麻煩了,對(duì)于只要簡(jiǎn)單生成來說有點(diǎn)不值得

什么叫簡(jiǎn)單,把數(shù)據(jù)庫的數(shù)據(jù)導(dǎo)入到excel就行了, 這個(gè)就是簡(jiǎn)單了

下面看一段代碼(代碼來自網(wǎng)絡(luò))

注意要雙引號(hào)的字符串
復(fù)制代碼 代碼如下:

<?php
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:filename=test.xls");
echo "test1\t";
echo "test2\t\n";
echo "test1\t";
echo "test2\t\n";
echo "test1\t";
echo "test2\t\n";
echo "test1\t";
echo "test2\t\n";
echo "test1\t";
echo "test2\t\n";
echo "test1\t";
echo "test2\t\n";
?>

運(yùn)行就會(huì)下載test.xls這個(gè)文件,打開以后他是這樣的
 

相關(guān)文章

最新評(píng)論