在Windows 平台上,PHP4 現在支持COM了。
這意味著,實際上PHP4 可以操作所有的Windows 應用了。
位於微軟心髒結構的COM 模塊讓任何Windows 應用能
提供一定數量的元件以及其他方法,作為操縱另外一個
應用的切入點。
幾行簡短的代碼或許比詳細的敘述更加有效。下面,我們來看看
一段例子:它啟動Word ,新建一個文檔,添加文本並存盤。
$word = new COM("word.application") or die("Impossible to instantiate WordApp");
print "Word is running, version {$word->Version}n";
$word->Visible=1;
$word->Documents->Add();
$word->Selection->TypeText("This is a test...");
$word->Documents[1]->SaveAs("test_com_php.doc");
$word->Quit();
?>