PHP头条
热点:

COM in PHP (winows only)


找了很久,终于给我找到!哈哈哈...  
//听说php(做为现在的主流开发语言)4也已经支持Java/EJB的说.  
<?  
// this script is come from zend. :)  
$word = new COM("word.application") or die("Unable to instanciate Word  
");   
print "Loaded Word, version {$word->Version}n";   
$word->Visible = 1;   
$word->Documents->Add();   
$word->Selection->TypeText("This is a test...");   
$word->Documents[1]->SaveAs("Useless test.doc");   
$word->Quit();   
?>  
注意:先用php(做为现在的主流开发语言)info()看看你的机器是否打开了COM支持.  

www.phpzy.comtrue/phprm/33368.htmlTechArticleCOM in PHP (winows only) 找了很久,终于给我找到!哈哈哈... //听说php (做为现在的主流开发语言) 4也已经支持Java/EJB的说. ? // this script is come from zend. :) word = new COM("word.application") or die("Unable t...

相关文章

    暂无相关文章

PHP之友评论

今天推荐