从div外部替换scecify文本

时间:2013-04-08 08:46:17

标签: php

我需要替换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>

由于

0 个答案:

没有答案