找了很久,終于給我找到!哈哈哈... //聽說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支持.
|