«
php导出excel

时间:2021-11-26    作者:文博    分类: PHP


ob_end_clean();//清除缓冲区,避免乱码

header('Content-type:application/vnd.ms-excel');

header('Content-Disposition:attachment;filename='. $filename .'.xls');//文件名自己取

$THead = array('姓名' ,'性别' ,'年龄' ,'手机' ,'邮箱');//这里是要输出的列头

$TBody = array(//这里是模拟数据     这里的数据来自你要导出的数据  比如查询数据库的数据

array('name'=>'Tom' ,'sex'=>1 ,'age'=>18 ,'phone'=>'13533335555' ,'email'=>'xxx@xxx.com'),

array('name'=>'Iory' ,'sex'=>1 ,'age'=>18 ,'phone'=>'13533335555' ,'email'=>'xxx@xxx.com'),

array('name'=>'Lily' ,'sex'=>1 ,'age'=>18 ,'phone'=>'13533335555' ,'email'=>'xxx@xxx.com'),

);



echo '<table border="1px solid #000">';//以表格的形式输出  也可以字符串拼接

//输出head

echo '<tr>';

foreach ( $THead as $h )

{

echo '<th>' . $h . '</th>';//直接输出即可,    

}

echo '</tr>';

//输出body

foreach ( $TBody as $row )

{

echo '<tr>';

foreach ($row as $v) {

echo '<td>' . $v . '</td>';

}

echo '</tr>';

}

echo '</table>';//OK