Heim >Backend-Entwicklung >PHP-Tutorial >COM in PHP (winows only)_PHP教程

COM in PHP (winows only)_PHP教程

WBOY
WBOYOriginal
2016-07-21 16:01:22935Durchsuche

找了很久,终于给我找到!哈哈哈...  
//听说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支持.  

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/316877.htmlTechArticle找了很久,终于给我找到!哈哈哈... //听说php4也已经支持Java/EJB的说. ? // this script is come from zend. :) $word = new COM(word.application) or die(Unable to ins...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn