欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP导出excel,t无法分割单元格,而是显示一段空格

程序员文章站 2022-04-16 19:41:13
...
    $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 可以换行

相关标签: php