当前位置:Gxlcms > PHP教程 > 一段PHP的preg_replace正则替换代码求优化更好的。谢谢大家

一段PHP的preg_replace正则替换代码求优化更好的。谢谢大家

时间:2021-07-01 10:21:17 帮助过:17人阅读

$text1 =
'

123345




  • https://img.gxlcms.com/


  • https://img.gxlcms.com/


  • https://img.gxlcms.com/


  • https://img.gxlcms.com/


';

$test2 = ' echo preg_replace($pattern, $test2, $text1);

我用了 $pattern = '/
$pattern = '/  
$pattern = '#  
str_replace('src="/','src="http://www.qq.com/',$text1);

str_replace('src="/','src="http://www.qq.com/',$text1);


用文本替换效率肯定没正则高吧?

字符串替换要比正则至少快10倍


str_replace('src="/','src="http://www.qq.com/',$text1);


用文本替换效率肯定没正则高吧?

人气教程排行