PHP中strtr与str_replace函数运行性能简单测试示例
发布:smiling 来源: PHP粉丝网 添加日期:2021-11-27 16:00:19 浏览: 评论:0
这篇文章主要介绍了PHP中strtr与str_replace函数运行性能简单测试,结合具体实例形式对比分析了PHP中strtr与str_replace函数的测试运行效率,需要的朋友可以参考下。
本文实例讲述了PHP中strtr与str_replace函数运行性能简单测试,分享给大家供大家参考,具体如下:
strtr与str_replace函数性能,很简单的一个测试,只是简单的测下,供参考,代码如下:
- <?php
- require_once('Timer.php');
- $target = 'qwertyuiop[]asdfghjkl;\'zxcvbnm,./qwertyuiop[]asdfghjkl;\'zxcvbnm,./qwertyuiop[]asdfghjkl;\'zxcvbnm,./qwertyuiop[]asdfghjkl;\'zxcvbnm,./qwertyuiop[]asdfghjkl;\'zxcvbnm,./qwertyuiop[]asdfghjkl;\'zxcvbnm,./qwertyuiop[]asdfghjkl;\'zxcvbnm,./qwertyuiop[]asdfghjkl;\'zxcvbnm,./qwertyuiop[]asdfghjkl;\'zxcvbnm,./qwertyuiop[]asdfghjkl;\'zxcvbnm,./';
- $count = isset($argv[1]) ? (int)$argv[1] : 1;
- $needle = 'vb';
- Timer::getInstance()->begin();
- for($i = 0; $i < $count; $i++) {
- strtr($target, $needle, '*');
- }
- echo "strtr exec {$count} times used time: " . Timer::getInstance()->end()->gone() . " sec.\n";
- //----------------------------------------------------------------------------------------------
- Timer::getInstance()->begin();
- for($i = 0; $i < $count; $i++) {
- str_replace($needle, '*', $target);
- }
- echo "str_replace exec {$count} times used time: " . Timer::getInstance()->end()->gone() . " sec.\n";
结果如下:
那个正则替换的那个就不测了,应该是赶不上这两个的。
Tags: strtr str_replace PHP性能测试
- 上一篇:PHP判断函数是否被定义的方法
- 下一篇:最后一页
相关文章
- ·php strtr 函数与str_replace性能比较(2013-11-29)
- ·PHP中strtr 字符串替换介绍(2014-09-14)
- ·php中 strtr 和 str_replace 的效率问题(2018-06-04)
- ·php去空格trim无效用str_replace实现(2014-01-19)
- ·php substr_replace替换字符串一些实例(2014-02-16)
- ·PHP利用str_replace()函数防注入(2014-08-22)
- ·php str_replace 函数参数为数组时的使用(2014-09-13)
- ·php中str_replace函数只替换一次实例(2014-09-14)
- ·php str_replace 输入框回车替换br(2014-09-18)
- ·php str_replace函数,可限制替换个数(2014-09-19)
- ·php 字符替换函数 substr_replace 与 str_replace 用法(2015-04-10)
- ·php字符串替换函数substr_replace()用法实例(2021-05-16)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)