0

我生成这样的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;
?>

它工作得很好。我可以让它写入服务器中的文件夹,而不是下载到客户端计算机吗?

4

1 回答 1

1

这是一种将数据写入文件的简单方法,并使用您提供的代码提供了一个建议性答案。伙计们,现在不要投反对票,这是一个建议性的答案,并且比实际的建议更容易发布。

注意:aswitch, will appendto file 和\nwill 换行。

<?php
$file = fopen('test.xls', 'a') or die("Unable to open file for output");
$test="<table border=1><tr><td>Cell 1</td><td>Cell 2</td></tr></table>\n";
fwrite($file, $test) or die("Unable to write to file");
fclose($file);
echo "$test"; // echo the output
exit();
?>
于 2013-05-28T21:02:10.970 回答