3-5 PHP自身能力性能测试之代码测==== ab比内置函数和自定义函数性能
Posted ADSFASFDA
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3-5 PHP自身能力性能测试之代码测==== ab比内置函数和自定义函数性能相关的知识,希望对你有一定的参考价值。
ab -c 100 -n 10000 h.com/bad.php
ab -c 100 -n 10000 h.com/good.php
使用php内置函数性能和自写代码运行速度
两者差了21倍的速度
<?php $array1=array(); $array2=array(); for ($i=0;$i<rand(1000,2000);$i++){ $array1[]=rand(); } for ($y=0;$y<rand(1000,2000);$y++){ $array2[]=rand(); } $array_megred=array(); foreach ($array1 as $v){ $array_megred[]=$v; } foreach ($array2 as $v2){ if (!in_array($v2,$array_megred)){ $array_megred[]=$v2; } } print_r($array_megred);
<?php $array1=$array2=range(1000,2000); echo sizeof($array1).\'<br>\'; echo sizeof($array2).\'<br>\'; shuffle($array1); shuffle($array2); print_r(array_merge($array1,$array2));
以上是关于3-5 PHP自身能力性能测试之代码测==== ab比内置函数和自定义函数性能的主要内容,如果未能解决你的问题,请参考以下文章