關於php strtr 和 str_replace 效率的問題
阿新 • • 發佈:2017-05-13
abcde 優化 bcd php 7 abcdefg 5.6 nginx 網上 環境 在網上看了一些php優化的指南,裏面提到:使用strtr 函數 比 str_replace快4倍。 本著探索的精神動手驗證。
代碼
$string = ‘abcdefg‘;
set_time_limit(300);
$start = microtime(true);
for ($i = 0; $i < 10000000; $i++) {
$str = str_replace(‘a‘, ‘123‘, $string);
}
echo microtime(true)-$start, ‘<br />‘;
$start = microtime(true);
for ($i = 0; $i < 10000000; $i++) {
$str = strtr($string, [‘a‘=>‘123‘]);
}
echo microtime(true)-$start, ‘<br />‘;
平臺(筆記本):win10 + i5 + 8G固態
環境1:php 5.6 nts +apache
測試條件: 10000000次循環
結果: str_replace :3.2446131706238 秒
strtr: 36.379708051682 秒
環境2:php 7.0 nts +apache
測試條件: 10000000次循環
結果: str_replace :9.3426380157471秒
strtr: 9.3660399913788秒
環境3:php 5.6 nts + nginx
測試條件: 10000000次循環
結果: str_replace :3.2784769535065 秒
strtr: 35.701732158661 秒
環境4:php 7.0nts +nginx
測試條件: 10000000次循環
結果: str_replace :9.5572259426117 秒
strtr: 9.4987349510193 秒
意外發現, 5.6版本 str_replace 比 strtr 效率高10+倍, 7.0版本效率基本相同, 但5.6的 str_replace 竟比 7.0高 3倍
ps:以上測試,每個環境都測試了3+次,結果取平均值
關於php strtr 和 str_replace 效率的問題