我有一个运行在PHP 5.2.7版上的Wordpress站点。
我尝试使用\n\t
导出带有数据的Excel文件,
但该文件不接受此标记,导出仅显示“总计”一词。
我的输出:
$Output = "total\t" . count($home->leads) . "\n";
我正在使用此标题:
header('Content-type: application/vnd.ms-excel');
header('Content-Disposition: attachment; filename=' . $filename);