複製程式碼 程式碼如下:
// $word = new COM(”word.application”) or die(”Can't start Word!」);
// 顯示目前正在使用的Word的版本號
//echo 「Loading Word, . {$word->Version}
”;
// 把它的可見度設為0(假),如果要使它在最前端打開,使用1(真)
// to open the application in the forefront, use 1 (true)
//$word->Visible = 0;
//打?OP
$word->Documents> .doc”);
//讀取文件內容
$test= $word->ActiveDocument->content->Text;
echo $test;
echo 「
」;
//將文件中需要換的變數更換一下
$test=str_replace(””,”這是變數”,$test);
echo $test;
$ word->Documents->Add();
// 在新文件中加入文字
$word->Selection->TypeText(”$test”);
//把文件儲存在目錄中
$word->Documents[1]->SaveAs(”d:/myweb/comtest.doc”);
// 關閉與COM元件之間的連接
$word->Quit() ;
?>