首页 > 代码库 > 3-7 PHP内置函数之间的性能测试 microtime()测试isset()和array_key_exists执行时间
3-7 PHP内置函数之间的性能测试 microtime()测试isset()和array_key_exists执行时间
<?php header(‘Content-Type:text/html;charset=utf8‘); $_start=current_time(); $array1=range(1000,2000); $i=0; while ($i<200000){ ++$i; // isset($array1[$i]); 55ms array_key_exists($i,$array1);// 80-90ms } $_end=current_time(); function current_time(){ list($usec,$sec)=explode(‘ ‘,microtime()); return ((float)$usec+(float)$sec); } echo ‘执行时间‘.number_format($_end-$_start,3);
通过microtime()测试isset()和array_key_exists执行时间
3-7 PHP内置函数之间的性能测试 microtime()测试isset()和array_key_exists执行时间
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。