分类: php2012-07-12 09:46 1109人阅读 评论(1) 收藏 举报

三个函数都是用来对字符串进行分割,下面分几个实验来比较之间的性能。

1. explode与split比较

都用字符进行分割,执行10次

代码:

  1. for($num=0;$num<9;$num++)
  2. {
  3. $stime=microtime();
  4. for($i=0;$i<10000;$i++)
  5. {
  6. explode(',','hello,world');
  7. }
  8. $etime=microtime();
  9. printf("explode takes %f \n",$etime-$stime);
  10. }
  11. for($num=0;$num<9;$num++)
  12. {
  13. $stime=microtime();
  14. for($i=0;$i<10000;$i++)
  15. {
  16. split(',','hello,world');
  17. }
  18. $etime=microtime();
  19. printf("split takes %f \n",$etime-$stime);
  20. }

结果:

explode takes 0.009193 
explode takes 0.007066 
explode takes 0.007623 
explode takes 0.005829 
explode takes 0.005497 
explode takes 0.005734 
explode takes 0.005502 
explode takes 0.005515 
explode takes 0.005524 
split takes 0.008976 
split takes 0.008971 
split takes 0.009030 
split takes 0.009173 
split takes 0.009913 
split takes 0.012656 
split takes 0.012153 
split takes 0.009161 
split takes 0.008948

结论:都用字符进行分割的情况下,explode性能优于split

split用正则进行分割:

代码:

  1. for($num=0;$num<9;$num++)
  2. {
  3. $stime=microtime();
  4. for($i=0;$i<10000;$i++)
  5. {
  6. explode(',','hello,world');
  7. }
  8. $etime=microtime();
  9. printf("explode takes %f \n",$etime-$stime);
  10. }
  11. for($num=0;$num<9;$num++)
  12. {
  13. $stime=microtime();
  14. for($i=0;$i<10000;$i++)
  15. {
  16. split('/,/','hello,world');
  17. }
  18. $etime=microtime();
  19. printf("split takes %f \n",$etime-$stime);
  20. }

结果:

explode takes 0.005649
explode takes 0.005719
explode takes 0.005792
explode takes 0.005975
explode takes 0.005723
explode takes 0.005812
explode takes 0.005860
explode takes 0.005756
explode takes 0.005835
split takes 0.005158 
split takes 0.005170 
split takes 0.005440 
split takes 0.005402 
split takes 0.005272 
split takes 0.005434 
split takes 0.006389 
split takes 0.005414 
split takes 0.005510

结论:在split使用正则分割的情况下,两者性能不相上下

2. split与preg_split比较

代码:

  1. for($num=0;$num<9;$num++)
  2. {
  3. $stime=microtime();
  4. for($i=0;$i<10000;$i++)
  5. {
  6. split('/,/','hello,world');
  7. }
  8. $etime=microtime();
  9. printf("split takes %f \n",$etime-$stime);
  10. }
  11. for($num=0;$num<9;$num++)
  12. {
  13. $stime=microtime();
  14. for($i=0;$i<10000;$i++)
  15. {
  16. preg_split("/,/","hello,world");
  17. }
  18. $etime=microtime();
  19. printf("preg_split takes %f \n",$etime-$stime);
  20. }

结果:

split takes 0.005381 
split takes 0.005568 
split takes 0.005107 
split takes 0.005097 
split takes 0.005444 
split takes 0.005538 
split takes 0.005095 
split takes 0.005112 
split takes 0.005087 
preg_split takes 0.009364 
preg_split takes 0.009568 
preg_split takes 0.009037 
preg_split takes 0.008957 
preg_split takes 0.009021 
preg_split takes 0.009656 
preg_split takes 0.009038 
preg_split takes 0.008962 
preg_split takes 0.009412

结论:split性能优于preg_split

explode,split,preg_split性能比较的更多相关文章

  1. split(),preg_split()与explode()函数分析与介

    split(),preg_split()与explode()函数分析与介 发布时间:2013-06-01 18:32:45   来源:尔玉毕业设计   评论:0 点击:965 split()函数可以实 ...

  2. Deprecated: Function split() is deprecated in ... 解决办法

    本地测试的程序上传到服务器出现很多错误,Deprecated: Function split() is deprecated  查了原因是因为PHP的版本不同所导致的,本身程序开发的时候用的是PHP5 ...

  3. PHP:错误 Deprecated: Function split() is deprecated in ... 解决办法

    PHP:错误 Deprecated: Function split() is deprecated in ... 解决办法 PHP5.3 split() 不建议使用的原因:PHP 5.3.0 之后的r ...

  4. php Function split() is deprecated 的解决办法

    原文地址: http://www.cnblogs.com/mfryf/archive/2012/05/31/2527307.html php升级为5.3后,程序会报 Function split() ...

  5. 转义字符\(在hive+shell以及java中注意事项):正则表达式的转义字符为双斜线,split函数解析也是正则

    转义字符 将后边字符转义,使特殊功能字符作为普通字符处理,或者普通字符转化为特殊功能字符. 各个语言中都用应用,如java.python.sql.hive.shell等等. 如sql中 "\ ...

  6. Hive表生成函数explode讲解

    Hive中的表分析函数接受零个或多个输入,然后产生多列或多行输出. 1.explode函数 explode函数以array类型数据输入,然后对数组中的数据进行迭代,返回多行结果,一行一个数组元素值 A ...

  7. hive lateral view 与 explode详解

    ref:https://blog.csdn.net/bitcarmanlee/article/details/51926530 1.explode hive wiki对于expolde的解释如下: e ...

  8. hive splict, explode, lateral view, concat_ws

    hive> create table arrays (x array<string>) > row format delimited fields terminated by ...

  9. PHP之string之explode()函数使用

    explode (PHP 4, PHP 5, PHP 7) explode - Split a string by string explode - 使用一个字符串分割另一个字符串 Descripti ...

随机推荐

  1. .NET程序优化

    一.数据库操作 1. 用完马上关闭数据库连接 访问数据库资源需要创建连接.打开连接和关闭连接几个操作.这些过程需要多次与数据库交换信息以通过身份验证, 比较耗费服务器资 源.ASP.NET 中提供了连 ...

  2. MVC将服务器端的物理路径转换为服务器路径

    以图片为例 后台Controller.cs public FileResult ImageUrl(string file) { return File("物理路径"+file, & ...

  3. python学习之——splinter使用

    开始学习使用splinter工具了,目前是摸索中,先熟悉splinter工具的使用方法~~ 实现功能: 打开firefox浏览器->www.baidu.com->输入关键词 python, ...

  4. Java中从控制台输入数据的几种常用方法

    Java中从控制台输入数据的几种常用方法 一.使用标准输入串System.in //System.in.read()一次只读入一个字节数据,而我们通常要取得一个字符串或一组数字 //System.in ...

  5. Ubuntu 安装tftp服务器

    Ubuntu下搭建tftp服务器最简单方法   转 linux公社       今天开始调试ARM的板子,要通过tftp下载到板子上,所以又要配置tftp服务器,真的烦死了... (本人酷爱装系统,所 ...

  6. bootstrap-标题

    1.重置了margin-top和margin-bottom的值,h1到h3重置后margin-top的值都是20px:h4到h6重置后的值都是10px: 2.所有标题的行高都是1.1(也就是font- ...

  7. myBatis总结,以及Spring

    myBatis是持久层框架.相对于hibernate是半自动的——手写sql语句,较灵活. myBatis中个人觉得主要是对sql语句的练习,对要实现业务层的功能在mapper.java中写出相应或辅 ...

  8. JAVA期末设计第十三周

    一.项目完成计划 十三周和十四周完成用户交互界面的设计(1.登陆界面2.订票以及查询界面3.用户管理界面4.退票界面): 十三周完成登陆界面,十四周完成订票以及查询界面,用户管理界面和退票界面 十五周 ...

  9. js动态时间

    一.在<head></head> 之间写入下面js代码 <script type="text/javascript" language="J ...

  10. HDU2471_History of Languages

    有意思的题目,给出两个自动机,判断这个两个自动机是否是等价的? 两个自动机是等价的,那么他们可接受的字符串集合一定是完全一样的. 于是我们可以从(0,0)开始bfs,每次看看在两个自动机上走到的两个点 ...