相关关键词
关于我们
最新文章
详谈php中 strtr 和 str_replace 的效率问题
发布日期:2017-05-14 00:00:00
64
在网上看了一些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 />';