COMPersistHelper::SaveToFile
(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();
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google