我需要替换div
中的某些特定文字,但我想从外部替换它。
我试过
<?php
// The text string
$text = "good cool levrege spam ideal";
// The word we want to replace
$oldWord = "levrege";
// The new word we want in place of the old one
$newWord = "helloo";
// Run through the text and replaces all occurrences of
$oldText
$text = str_replace($oldWord , $newWord , $text);
// Display the new text
echo $text;
这很棒! (我可以修改要在$text
上执行的div
字符串吗?)
但是如何修改它,这是我的div
文本
<div>good cool levrege spam ideal</div>
执行php代码后,我需要显示
<div>good cool hello spam ideal</div>
由于