php数字导出excel表格中_php怎么把数据表中的数据导出到excel表中
很多時候,數據庫中的數據需要導出成excel,以下是最簡便的方法,不用導出excel的類,即使功能簡單,但是對于沒有復雜需求的項目“見效快”。
先定義頭部信息,表示輸出一個excel。然后再以table的形式把數據庫的信息循環的echo出來,就好了。
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:filename=xls_region.xls");
$cfg_dbhost?=?'localhost';
$cfg_dbname?=?'testdb';
$cfg_dbuser?=?'root';
$cfg_dbpwd?=?'root';
$cfg_db_language?=?'utf8';
//?END?配置
//鏈接數據庫
$link?=?mysql_connect($cfg_dbhost,$cfg_dbuser,$cfg_dbpwd);
mysql_select_db($cfg_dbname);
//選擇編碼?www.111Cn.net
mysql_query("set?names?".$cfg_db_language);
//users表
$sql?=?"desc?users";
$res?=?mysql_query($sql);
echo?"
//導出表頭(也就是表中擁有的字段)
while($row?=?mysql_fetch_array($res)){
$t_field[]?=?$row['Field'];?//Field中的F要大寫,否則沒有結果
echo?"
".$row['Field']."";}
echo?"
";//導出100條數據
$sql?=?"select?*?from?users?limit?100";
$res?=?mysql_query($sql);
while($row?=?mysql_fetch_array($res)){
echo?"
";foreach($t_field?as?$f_key){
echo?"
".$row[$f_key]."";}
echo?"
";}
echo?"
";?>
總結
以上是生活随笔為你收集整理的php数字导出excel表格中_php怎么把数据表中的数据导出到excel表中的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java多叉树全路径_算法实战——多叉树
- 下一篇: php获取表单$_files,PHP中$