快捷搜索:   nginx

PHP生成WORD文档

用COM函数操作 MS Word

#实例化一个对象

$word = new COM("word.application") or die("Unable to instantiate Word");

#取得并显示版本

print "Loaded Word, version {$word->Version}
";

#另一种方法去取得版本

$testversion = com_get($word->application,version);

print "Version using Com_get(): $testversion
";

#使其可见

$word->Visible = 1;

#创建新文件

$word->Documents->Add();

#写字符

$word->Selection->TypeText("This is a test...");

#保存

$word->Documents[1]->SaveAs("Useless test.doc");

#关闭

$word->Quit();

?>
//================================================
以上方法生成的word文档载服务器上的,可以让客户端下载。
具体对版面的安排,参照office的vba(宏编程)


顶(0)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论