test.php
<?phpheader("Content-type:application/vnd.ms-excel;");
header("Content-Disposition:attachment;filename=test.xls");
echo '1'."\t";
echo '1'."\t";
echo '1'."\t";
echo '1'."\t";
?>
我使用头文件 导出 xls 
用phpExcelReader 导入
他却提示 The filename test.xls is not readable 这个文件无法读取
是不是头文件导出会 破坏 xls 文件结构呢?