0

我正在尝试对数组进行字符串替换。

我有..

str_replace('texts', 'testssssss', $test->html);

$test->html回报_

我想将所有文本替换为testssssss ..

key 1

<div>
   <a href='texts.company.name.html'>test</a>
</div>



Key 2

<div>
    other html...
</div>


Key 3

<div>
    other html...
</div>

Key 4

<div>
   <a href='texts.department.name.html'>department</a>
</div>

more...

谢谢您的帮助!

4

2 回答 2

5

您需要在某处分配新值, str_replace 不会自动覆盖主题:

$test->html = str_replace('texts', 'testssssss', $test->html);
于 2012-10-18T16:54:34.833 回答
0

该函数返回字符串,因此您需要启动它 $variable =str_replace

于 2012-10-18T16:56:15.027 回答