你会发现
PHPWord
是有用的。
PHPWord是一个用PHP编写的库
创建word文档。
更新:
Here is a method using COM
方法二:
header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=document_name.doc");
echo "<html>";
echo "<body>";
echo "<b>My first document</b>";
echo "</body>";
echo "</html>";