Zum Beispiel: ersetzt durch
Bitte finden Sie eine Lösung.
preg_replace 正则表达式的搜索和替换
preg_replace
使用preg_replace, 写了个简单的例子:
$b = ' <a href="http://tool.chinaz.com/" title="fish link">df</a> <a href="http://tool.chinaz.com/" title="no match">df</a> <a href="http://tool.chinaz.com/" title="fish link">df</a> '; var_dump(preg_replace('/<a.*title="fish link">/', '<a href="http://bbb.com" title="fish link">', $b));
output:
string(157) " <a href="http://bbb.com" title="fish link">df</a> <a href="http://tool.chinaz.com/" title="no match">df</a> <a href="http://bbb.com" title="fish link">df</a> "
preg_replace
正则表达式的搜索和替换使用
preg_replace
, 写了个简单的例子:output: