您的位置:首页 >> Web开发 >> PHP技术 >> PHP技巧 >> 正文
RSS
 

COM in PHP (winows only)

http://www.rdxx.com 00年12月20日 00:00 网络 我要投稿

关键词: PHP , COM
找了很久,终于给我找到!哈哈哈...  
//听说php4也已经支持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();   
?>  
注意:先用phpinfo()看看你的机器是否打开了COM支持.  

 
 
标签: PHP , COM 打印本文
 
 
  热点搜索
 
 
 



Valid XHTML 1.0 Transitional
Copyright ©2005 - 2008 Rdxx.Com,All Rights Reserved
收藏本页
收藏本站