str_replace与preg_replace性能对比

环境:centos7,php7.2.6

只对比相同的功能。

使用了小说Mother_West_Wind's_Children.txt进行替换,大小为155KB,全英文。

str_replace与preg_replace性能对比

 

 

 

使用str_replace函数替换字符串,耗时:

0.017s

0.014s

0.018s

0.020s

0.017s

平均使用0.0172s

 

使用preg_replace函数替换字符串,耗时:

0.018s

0.016s

0.015s

0.014s

0.016s

平均使用耗时0.0158s

 

两者性能没有明显的区别。

上一篇:mysql转sqlite


下一篇:PHP正则表达式