我生成这样的excel:
<?php
$file="test.xls";
$test="<table border=1><tr><td>Cell 1</td><td>Cell 2</td></tr></table>";
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$file");
echo $test;
?>
它工作得很好。我可以让它写入服务器中的文件夹,而不是下载到客户端计算机吗?