我的功能
function xlstest(){
$headers='SN'."\t".'Reservation ID'."\t".'Hotel Name'."\t".'Customer Name';
$data='1'."\t".'234'."\t".'My hotel name'."\t".'Jonny';
$filename='testing';
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=".$filename.".xls");
header("Pragma: no-cache");
header("Expires: 0");
echo "$headers\n$data";
}
在管理面板中调用此函数时,它将导出到 excel,但文件没有上面的标题和数据,但它显示了管理面板中存在的所有文本
有谁知道为什么会这样?