(PHP 5, PHP 7, PHP 8)
COMPersistHelper::SaveToFile — 将对象保存到文件
将对象的副本保存到指定文件。
如果关联对象未实现 COM 接口 IPersistFile,或者在调用 IPersistFile::Save() 方法失败时,将抛出 com_exception。
示例 #1 基本 COMPersistHelper::saveToFile() 用法
<?php
$word = new COM('Word.Application');
$doc = $word->Documents->Add();
$ph = new COMPersistHelper($doc);
$ph->SaveToFile('C:\\Users\\cmb\\Documents\\my.docx');
$word->Quit();
?>