str_replace 和 str_ireplace 之间有性能差异吗? [已关闭]

问题描述 投票:0回答:2

str_replace 和 str_ireplace 之间有性能差异吗?

如果是,支持哪个功能以及为什么?

php performance
2个回答
5
投票

str_ireplace
会带来一点开销,因为它需要在比较之前将“haystack”和“needle”都转换为小写。 (c 源)但是,由于此转换仅支持 ASCII,因此速度很快,并且不会以任何明显的方式影响性能。

这里有一个小测试:

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 秒。我的建议是首先优化程序的其他部分))


4
投票

php 中的

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

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

str_ireplace
的速度会慢一些,因为它需要转换为相同的大小写。但即使数据很大,差异也很小。

© www.soinside.com 2019 - 2024. All rights reserved.