str_replace和str_ireplace之间是否存在性能差异?

时间:2014-11-11 15:19:34

标签: php performance

str_replace和str_ireplace之间是否存在性能差异?

如果是,赞成哪个功能以及为什么?

2 个答案:

答案 0 :(得分:4)

str_ireplace会产生一些开销,因为它需要转换" haystack"和"针"比较之前的小写。 (c source)但是,由于这种转换只是ascii-only,它的点亮速度很快,并且不会以任何明显的方式影响性能。

这是一个小小的考验:

for($i = 2; $i < 7; $i++) {
    $x = str_repeat('a', pow(10, $i));
    $t = microtime(1); str_replace ('a', 'b', $x); $a = microtime(1) - $t;
    $t = microtime(1); str_ireplace('A', 'b', $x); $b = microtime(1) - $t;
    $t = microtime(1); strtolower($x);             $c = microtime(1) - $t;
    printf("%d replace=%.4f ireplace=%.4f lower=%.4f\n", $i, $a, $b, $c);

}

结果:

2 replace=0.0000 ireplace=0.0000 lower=0.0000
3 replace=0.0000 ireplace=0.0000 lower=0.0000
4 replace=0.0002 ireplace=0.0003 lower=0.0001
5 replace=0.0021 ireplace=0.0030 lower=0.0008
6 replace=0.0253 ireplace=0.0441 lower=0.0110

因此,对于一个1,000,000个字符的字符串str_ireplace只有0.02秒而且#34;更慢&#34;。我的建议是首先优化程序的其他部分))

答案 1 :(得分:1)

str_ireplace函数php不是敏感规则,将“abc”,“ABC”所有组合视为单个匹配。仅适用于PHP 5。

str_replace函数区分大小写,这意味着它会替换与字符串完全匹配的字符串。

str_ireplace因为转换到相同的情况需要的速度会慢一些。但是,大数据中的差异很小。