time /usr/bin/php test.php
real 0m0.301s
user 0m0.239s
sys 0m0.050s
--------------------------
time /usr/bin/php test.php
real 0m0.310s
user 0m0.241s
sys 0m0.054s
--------------------------
time /usr/bin/php test.php
real 0m0.289s
user 0m0.238s
PHP7版本测试:
time /usr/local/php7/bin/php test.php
real 0m0.087s
user 0m0.063s
sys 0m0.024s
-------------------------------------
time /usr/local/php7/bin/php test.php
real 0m0.106s
user 0m0.073s
sys 0m0.033s
--------------------------------------
time /usr/local/php7/bin/php test.php
real 0m0.083s
user 0m0.061s
time /usr/bin/php ./public/index.php
real 0m0.036s
user 0m0.026s
sys 0m0.010s
real 0m0.038s
user 0m0.026s
sys 0m0.012s
real 0m0.041s
user 0m0.032s
PHP7下的测试:
time /usr/local/php7/bin/php ./public/index.php
real 0m0.027s
user 0m0.021s
sys 0m0.005s
real 0m0.027s
user 0m0.018s
sys 0m0.009s
real 0m0.025s
user 0m0.023s
<?php
namespace app\index\controller;
class Index
{
public function index()
{
$arr = array();
for ($i = 0; $i < 500000; $i++) {
$arr[$i] = $i;
}
$tmp = array();
foreach ($arr as $i) {
if ($i % 2 == 0) {
$is_exists = array_key_exists($i, $arr);
if ($is_exists) {
array_push($tmp, $i);
}
}
}
}
}
PHP5版本:
time /usr/bin/php ./public/index.php
real 0m0.538s
user 0m0.463s
sys 0m0.072s
real 0m0.454s
user 0m0.386s
sys 0m0.065s
real 0m0.387s
user 0m0.331s
PHP7版本:
time /usr/local/php7/bin/php ./public/index.php
real 0m0.150s
user 0m0.123s
sys 0m0.024s
real 0m0.137s
user 0m0.105s
sys 0m0.031s
real 0m0.123s
user 0m0.096s
time /usr/bin/php ./public/index.php
real 0m0.104s
user 0m0.081s
sys 0m0.022s
real 0m0.148s
user 0m0.122s
sys 0m0.025s
real 0m0.122s
user 0m0.100s
PHP版本
time /usr/local/php7/bin/php ./public/index.php
real 0m0.079s
user 0m0.064s
sys 0m0.015s
real 0m0.081s
user 0m0.067s
sys 0m0.014s
real 0m0.067s
user 0m0.054s
public function index()
{
$arr = array();
for ($i = 0; $i < 500000; $i++) {
$arr[$i] = $i;
}
$tmp = array();
foreach ($arr as $i) {
if ($i % 2 == 0) {
$is_exists = array_key_exists($i, $arr);
if ($is_exists) {
array_push($tmp, $i);
}
}
}
}
PHP5版本
time /usr/bin/php ./public/index.php
real 0m0.510s
user 0m0.377s
sys 0m0.079s
real 0m0.627s
user 0m0.447s
sys 0m0.091s
real 0m0.519s
user 0m0.436s
PHP7版本
time /usr/local/php7/bin/php ./public/index.php
real 0m0.201s
user 0m0.167s
sys 0m0.032s
real 0m0.216s
user 0m0.174s
sys 0m0.040s
real 0m0.169s
user 0m0.134s