<?php
$zip = new ZipArchive;
if ($zip->open('test.docx') === TRUE) {
$xmlString = $zip->getFromName('word/document.xml');
$xmlString = str_replace('$FIRST_AND_LAST_NAME', 'John Doe', $xmlString);
$zip->addFromString('word/document.xml', $xmlString);
echo 'ok';
$zip->close();
} else {
echo 'failed';
}
?>
このコードを使用してdocxファイル内の単語を置き換えましたが、元のファイルを置き換えるのではなく、別のファイル名で保存したい場合はどうすればよいですか. ありがとう。