如果我想用不同的名称保存编辑的文件而不是替换原始文件?

时间:2013-07-30 00:58:33

标签: php

<?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文件中的某些单词,但如果我想将其保存为不同的文件名而不是替换原始文件。感谢。

0 个答案:

没有答案