时间:2021-07-01 10:21:17 帮助过:30人阅读
$name='down';
header( "Cache-Control: public" );
header( "Pragma: public" );
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:attachment;filename=".$name.".xlsx");
header('Content-Type:APPLICATION/OCTET-STREAM');
echo “ID”.“\t”;
echo “username”.“\t”;
这样输出后,ID跟username还是在一个单元格里,只是中间空了一段空格。
\n 可以换行
$name='down';
header( "Cache-Control: public" );
header( "Pragma: public" );
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:attachment;filename=".$name.".xlsx");
header('Content-Type:APPLICATION/OCTET-STREAM');
echo “ID”.“\t”;
echo “username”.“\t”;
这样输出后,ID跟username还是在一个单元格里,只是中间空了一段空格。
\n 可以换行