码迷,mamicode.com
首页 > Web开发 > 详细

3-5 PHP自身能力性能测试之代码测==== ab比内置函数和自定义函数性能

时间:2017-03-07 08:27:30      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:性能测试   分享   range   int   image   span   lap   isp   splay   

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);
View Code
技术分享
<?php
$array1=$array2=range(1000,2000);
echo sizeof($array1).‘<br>‘;
echo sizeof($array2).‘<br>‘;
shuffle($array1);
shuffle($array2);
print_r(array_merge($array1,$array2));
View Code

 

3-5 PHP自身能力性能测试之代码测==== ab比内置函数和自定义函数性能

标签:性能测试   分享   range   int   image   span   lap   isp   splay   

原文地址:http://www.cnblogs.com/jiaochengli/p/6512766.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!