在PHP中替换多个字符串

时间:2017-07-06 19:35:34

标签: php

我想替换docx文件中的多个单词。我使用了输入元素中的单词,并通过'POST'方法传递它们。我已经替换了'$ bedrijfsnaam',但我想添加更多str替换。我创建'$ newContents2',但正如我所想,它没有用。我怎么解决这个问题?我是否必须添加另一个'oldContents',如'oldContents2'?

$bedrijfsnaam = $_POST['bedrijfsnaam'];
$offertenummer = $_POST['offertenummer'];
$naam = $_POST['naam'];

$zip = new ZipArchive;
//This is the main document in a .docx file.
$fileToModify = 'word/document.xml';
$wordDoc = "Document.docx";
$newFile = $offertenummer . ".docx";

copy("Document.docx", $newFile);

if ($zip->open($newFile) === TRUE) {

    $oldContents = $zip->getFromName($fileToModify);

    $newContents = str_replace('$bedrijfsnaam', $bedrijfsnaam, $oldContents);

    $newContents2 = str_replace('$naam', $naam, $oldContents);

    $zip->deleteName($fileToModify);

    $zip->addFromString($fileToModify, $newContents);


    $return =$zip->close();
    If ($return==TRUE){
        echo "Success!";
    }
} else {
    echo 'failed';
}

$newFilePath = 'offerte/' . $newFile;

$fileMoved = rename($newFile, $newFilePath);

1 个答案:

答案 0 :(得分:1)

您希望继续编辑相同的内容。

$newContents = str_replace('$bedrijfsnaam', $bedrijfsnaam, $oldContents);

第一次替换的结果是$newContents,所以如果你想在此基础上构建,你需要替换$newContents中的第二个字符串并将结果存储在$newContents中,现在包含两个字符串替换的结果。

$newContents = str_replace('$naam', $naam, $newContents);

编辑:更好的是,您可以使用数组并在一行中完成所有操作

$newContent = str_replace(
    ['$bedrijfsnaam', '$naam'],
    [ $bedrijfsnaam, $naam], 
    $oldContents
);