3v4l.org

run code in 300+ PHP versions simultaneously
<?php //date_default_timezone_set('UTC'); set_time_limit(120); ini_set('max_execution_time', 120); echo "PHP VERSION: ".PHP_VERSION."\n"; function simple() { $a = 0; for ($i = 0; $i < 1000000; $i++) $a++; $thisisanotherlongname = 0; for ($thisisalongname = 0; $thisisalongname < 1000000; $thisisalongname++) $thisisanotherlongname++; } /****/ function simplecall() { for ($i = 0; $i < 1000000; $i++) strlen("hallo"); } /****/ function hallo($a) { } function simpleucall() { for ($i = 0; $i < 1000000; $i++) hallo("hallo"); } /****/ function simpleudcall() { for ($i = 0; $i < 1000000; $i++) hallo2("hallo"); } function hallo2($a) { } /****/ function mandel() { $w1=50; $h1=150; $recen=-.45; $imcen=0.0; $r=0.7; $s=0; $rec=0; $imc=0; $re=0; $im=0; $re2=0; $im2=0; $x=0; $y=0; $w2=0; $h2=0; $color=0; $s=2*$r/$w1; $w2=40; $h2=12; for ($y=0 ; $y<=$w1; $y=$y+1) { $imc=$s*($y-$h2)+$imcen; for ($x=0 ; $x<=$h1; $x=$x+1) { $rec=$s*($x-$w2)+$recen; $re=$rec; $im=$imc; $color=1000; $re2=$re*$re; $im2=$im*$im; while( ((($re2+$im2)<1000000) && $color>0)) { $im=$re*$im*2+$imc; $re=$re2-$im2+$rec; $re2=$re*$re; $im2=$im*$im; $color=$color-1; } if ( $color==0 ) { print "_"; } else { print "#"; } } print "<br>"; flush(); } } /****/ function mandel2() { $b = " .:,;!/>)|&IH%*#"; //float r, i, z, Z, t, c, C; for ($y=30; printf("\n"), $C = $y*0.1 - 1.5, $y--;){ for ($x=0; $c = $x*0.04 - 2, $z=0, $Z=0, $x++ < 75;){ for ($r=$c, $i=$C, $k=0; $t = $z*$z - $Z*$Z + $r, $Z = 2*$z*$Z + $i, $z=$t, $k<5000; $k++) if ($z*$z + $Z*$Z > 500000) break; echo $b[$k%16]; } } } /****/ function Ack($m, $n){ if($m == 0) return $n+1; if($n == 0) return Ack($m-1, 1); return Ack($m - 1, Ack($m, ($n - 1))); } function ackermann($n) { $r = Ack(3,$n); print "Ack(3,$n): $r\n"; } /****/ function ary($n) { for ($i=0; $i<$n; $i++) { $X[$i] = $i; } for ($i=$n-1; $i>=0; $i--) { $Y[$i] = $X[$i]; } $last = $n-1; print "$Y[$last]\n"; } /****/ function ary2($n) { for ($i=0; $i<$n;) { $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; $X[$i] = $i; ++$i; } for ($i=$n-1; $i>=0;) { $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; $Y[$i] = $X[$i]; --$i; } $last = $n-1; print "$Y[$last]\n"; } /****/ function ary3($n) { for ($i=0; $i<$n; $i++) { $X[$i] = $i + 1; $Y[$i] = 0; } for ($k=0; $k<1000; $k++) { for ($i=$n-1; $i>=0; $i--) { $Y[$i] += $X[$i]; } } $last = $n-1; print "$Y[0] $Y[$last]\n"; } /****/ function fibo_r($n){ return(($n < 2) ? 1 : fibo_r($n - 2) + fibo_r($n - 1)); } function fibo($n) { $r = fibo_r($n); print "$r\n"; } /****/ function hash1($n) { for ($i = 1; $i <= $n; $i++) { $X[dechex($i)] = $i; } $c = 0; for ($i = $n; $i > 0; $i--) { if ($X[dechex($i)]) { $c++; } } print "$c\n"; } /****/ function hash2($n) { for ($i = 0; $i < $n; $i++) { $hash1["foo_$i"] = $i; $hash2["foo_$i"] = 0; } for ($i = $n; $i > 0; $i--) { foreach($hash1 as $key => $value) $hash2[$key] += $value; } $first = "foo_0"; $last = "foo_".($n-1); print "$hash1[$first] $hash1[$last] $hash2[$first] $hash2[$last]\n"; } /****/ function gen_random ($n) { global $LAST; return( ($n * ($LAST = ($LAST * IA + IC) % IM)) / IM ); } function heapsort_r($n, &$ra) { $l = ($n >> 1) + 1; $ir = $n; while (1) { if ($l > 1) { $rra = $ra[--$l]; } else { $rra = $ra[$ir]; $ra[$ir] = $ra[1]; if (--$ir == 1) { $ra[1] = $rra; return; } } $i = $l; $j = $l << 1; while ($j <= $ir) { if (($j < $ir) && ($ra[$j] < $ra[$j+1])) { $j++; } if ($rra < $ra[$j]) { $ra[$i] = $ra[$j]; $j += ($i = $j); } else { $j = $ir + 1; } } $ra[$i] = $rra; } } function heapsort($N) { global $LAST; define("IM", 139968); define("IA", 3877); define("IC", 29573); $LAST = 42; for ($i=1; $i<=$N; $i++) { $ary[$i] = gen_random(1); } heapsort_r($N, $ary); printf("%.10f\n", $ary[$N]); } /****/ function mkmatrix ($rows, $cols) { $count = 1; $mx = array(); for ($i=0; $i<$rows; $i++) { for ($j=0; $j<$cols; $j++) { $mx[$i][$j] = $count++; } } return($mx); } function mmult ($rows, $cols, $m1, $m2) { $m3 = array(); for ($i=0; $i<$rows; $i++) { for ($j=0; $j<$cols; $j++) { $x = 0; for ($k=0; $k<$cols; $k++) { $x += $m1[$i][$k] * $m2[$k][$j]; } $m3[$i][$j] = $x; } } return($m3); } function matrix($n) { $SIZE = 30; $m1 = mkmatrix($SIZE, $SIZE); $m2 = mkmatrix($SIZE, $SIZE); while ($n--) { $mm = mmult($SIZE, $SIZE, $m1, $m2); } print "{$mm[0][0]} {$mm[2][3]} {$mm[3][2]} {$mm[4][4]}\n"; } /****/ function nestedloop($n) { $x = 0; for ($a=0; $a<$n; $a++) for ($b=0; $b<$n; $b++) for ($c=0; $c<$n; $c++) for ($d=0; $d<$n; $d++) for ($e=0; $e<$n; $e++) for ($f=0; $f<$n; $f++) $x++; print "$x\n"; } /****/ function sieve($n) { $count = 0; while ($n-- > 0) { $count = 0; $flags = range (0,8192); for ($i=2; $i<8193; $i++) { if ($flags[$i] > 0) { for ($k=$i+$i; $k <= 8192; $k+=$i) { $flags[$k] = 0; } $count++; } } } print "Count: $count\n"; } /****/ function strcat($n) { $str = ""; while ($n-- > 0) { $str .= "hello\n"; } $len = strlen($str); print "$len\n"; } /*****/ function getmicrotime() { $t = gettimeofday(); return ($t['sec'] + $t['usec'] / 1000000); } function start_test() { ob_start(); return getmicrotime(); } function end_test($start, $name) { global $total; $end = getmicrotime(); ob_end_clean(); $total += $end-$start; $num = number_format($end-$start,3); $pad = str_repeat(" ", 24-strlen($name)-strlen($num)); echo $name.$pad.$num."\n"; // flush(); ob_start(); return getmicrotime(); } function total() { global $total; $pad = str_repeat("-", 24); echo $pad."\n"; $num = number_format($total,3); $pad = str_repeat(" ", 24-strlen("Total")-strlen($num)); echo "Total".$pad.$num."\n"; } $t0 = $t = start_test(); simple(); $t = end_test($t, "simple"); simplecall(); $t = end_test($t, "simplecall"); simpleucall(); $t = end_test($t, "simpleucall"); simpleudcall(); $t = end_test($t, "simpleudcall"); mandel(); $t = end_test($t, "mandel"); mandel2(); $t = end_test($t, "mandel2"); ackermann(7); $t = end_test($t, "ackermann(7)"); ary(50000); $t = end_test($t, "ary(50000)"); ary2(50000); $t = end_test($t, "ary2(50000)"); ary3(2000); $t = end_test($t, "ary3(2000)"); fibo(30); $t = end_test($t, "fibo(30)"); hash1(50000); $t = end_test($t, "hash1(50000)"); hash2(500); $t = end_test($t, "hash2(500)"); heapsort(20000); $t = end_test($t, "heapsort(20000)"); matrix(20); $t = end_test($t, "matrix(20)"); nestedloop(12); $t = end_test($t, "nestedloop(12)"); sieve(30); $t = end_test($t, "sieve(30)"); strcat(200000); $t = end_test($t, "strcat(200000)"); total($t0, "Total"); echo 'Memory (MB): '.( (function_exists('memory_get_usage')) ? number_format(memory_get_usage()/1024/1024, 2) : '-' );
Output for 7.3.0
PHP VERSION: 7.3.0 simple 0.032 simplecall 0.009 simpleucall 0.020 simpleudcall 0.023 mandel 0.115 mandel2 0.117 ackermann(7) 0.027 ary(50000) 0.098 ary2(50000) 0.067 ary3(2000) 0.047 fibo(30) 0.076 hash1(50000) 0.067 hash2(500) 0.009 heapsort(20000) 0.029 matrix(20) 0.028 nestedloop(12) 0.048 sieve(30) 0.017 strcat(200000) 0.005 ------------------------ Total 0.835 Memory (MB): 0.44
Output for 7.2.13
PHP VERSION: 7.2.13 simple 0.034 simplecall 0.010 simpleucall 0.022 simpleudcall 0.025 mandel 0.118 mandel2 0.128 ackermann(7) 0.024 ary(50000) 0.067 ary2(50000) 0.048 ary3(2000) 0.054 fibo(30) 0.083 hash1(50000) 0.062 hash2(500) 0.010 heapsort(20000) 0.029 matrix(20) 0.026 nestedloop(12) 0.054 sieve(30) 0.019 strcat(200000) 0.005 ------------------------ Total 0.818 Memory (MB): 0.43
Output for 7.2.12
PHP VERSION: 7.2.12 simple 0.032 simplecall 0.010 simpleucall 0.023 simpleudcall 0.027 mandel 0.118 mandel2 0.123 ackermann(7) 0.023 ary(50000) 0.078 ary2(50000) 0.042 ary3(2000) 0.050 fibo(30) 0.076 hash1(50000) 0.032 hash2(500) 0.009 heapsort(20000) 0.029 matrix(20) 0.025 nestedloop(12) 0.057 sieve(30) 0.018 strcat(200000) 0.005 ------------------------ Total 0.779 Memory (MB): 0.43
Output for 7.2.11
PHP VERSION: 7.2.11 simple 0.032 simplecall 0.010 simpleucall 0.023 simpleudcall 0.026 mandel 0.111 mandel2 0.126 ackermann(7) 0.023 ary(50000) 0.079 ary2(50000) 0.079 ary3(2000) 0.052 fibo(30) 0.077 hash1(50000) 0.035 hash2(500) 0.010 heapsort(20000) 0.029 matrix(20) 0.030 nestedloop(12) 0.060 sieve(30) 0.019 strcat(200000) 0.006 ------------------------ Total 0.826 Memory (MB): 0.43
Output for 7.2.10
PHP VERSION: 7.2.10 simple 0.041 simplecall 0.013 simpleucall 0.041 simpleudcall 0.042 mandel 0.144 mandel2 0.139 ackermann(7) 0.023 ary(50000) 0.129 ary2(50000) 0.102 ary3(2000) 0.060 fibo(30) 0.077 hash1(50000) 0.051 hash2(500) 0.013 heapsort(20000) 0.035 matrix(20) 0.028 nestedloop(12) 0.060 sieve(30) 0.022 strcat(200000) 0.005 ------------------------ Total 1.027 Memory (MB): 0.43
Output for 7.2.9
PHP VERSION: 7.2.9 simple 0.032 simplecall 0.010 simpleucall 0.022 simpleudcall 0.025 mandel 0.129 mandel2 0.150 ackermann(7) 0.023 ary(50000) 0.117 ary2(50000) 0.066 ary3(2000) 0.055 fibo(30) 0.083 hash1(50000) 0.045 hash2(500) 0.009 heapsort(20000) 0.026 matrix(20) 0.035 nestedloop(12) 0.053 sieve(30) 0.018 strcat(200000) 0.005 ------------------------ Total 0.904 Memory (MB): 0.43
Output for 7.2.8
PHP VERSION: 7.2.8 simple 0.032 simplecall 0.010 simpleucall 0.022 simpleudcall 0.024 mandel 0.111 mandel2 0.118 ackermann(7) 0.023 ary(50000) 0.120 ary2(50000) 0.107 ary3(2000) 0.054 fibo(30) 0.079 hash1(50000) 0.058 hash2(500) 0.010 heapsort(20000) 0.027 matrix(20) 0.026 nestedloop(12) 0.053 sieve(30) 0.019 strcat(200000) 0.005 ------------------------ Total 0.897 Memory (MB): 0.43
Output for 7.2.7
PHP VERSION: 7.2.7 simple 0.040 simplecall 0.011 simpleucall 0.025 simpleudcall 0.029 mandel 0.114 mandel2 0.114 ackermann(7) 0.023 ary(50000) 0.122 ary2(50000) 0.096 ary3(2000) 0.056 fibo(30) 0.079 hash1(50000) 0.081 hash2(500) 0.010 heapsort(20000) 0.029 matrix(20) 0.042 nestedloop(12) 0.055 sieve(30) 0.019 strcat(200000) 0.005 ------------------------ Total 0.950 Memory (MB): 0.43
Output for 7.2.6
PHP VERSION: 7.2.6 simple 0.032 simplecall 0.010 simpleucall 0.023 simpleudcall 0.029 mandel 0.130 mandel2 0.130 ackermann(7) 0.024 ary(50000) 0.190 ary2(50000) 0.148 ary3(2000) 0.096 fibo(30) 0.112 hash1(50000) 0.069 hash2(500) 0.010 heapsort(20000) 0.036 matrix(20) 0.030 nestedloop(12) 0.061 sieve(30) 0.023 strcat(200000) 0.006 ------------------------ Total 1.159 Memory (MB): 0.43
Output for 7.2.5
PHP VERSION: 7.2.5 simple 0.035 simplecall 0.010 simpleucall 0.025 simpleudcall 0.035 mandel 0.187 mandel2 0.219 ackermann(7) 0.039 ary(50000) 0.185 ary2(50000) 0.204 ary3(2000) 0.074 fibo(30) 0.109 hash1(50000) 0.058 hash2(500) 0.010 heapsort(20000) 0.029 matrix(20) 0.025 nestedloop(12) 0.057 sieve(30) 0.024 strcat(200000) 0.005 ------------------------ Total 1.329 Memory (MB): 0.43
Output for 7.2.4
PHP VERSION: 7.2.4 simple 0.038 simplecall 0.009 simpleucall 0.023 simpleudcall 0.026 mandel 0.113 mandel2 0.118 ackermann(7) 0.026 ary(50000) 0.149 ary2(50000) 0.071 ary3(2000) 0.069 fibo(30) 0.077 hash1(50000) 0.048 hash2(500) 0.010 heapsort(20000) 0.027 matrix(20) 0.025 nestedloop(12) 0.056 sieve(30) 0.018 strcat(200000) 0.005 ------------------------ Total 0.909 Memory (MB): 0.43
Output for 7.2.3
PHP VERSION: 7.2.3 simple 0.056 simplecall 0.015 simpleucall 0.037 simpleudcall 0.027 mandel 0.124 mandel2 0.150 ackermann(7) 0.023 ary(50000) 0.127 ary2(50000) 0.094 ary3(2000) 0.058 fibo(30) 0.078 hash1(50000) 0.057 hash2(500) 0.011 heapsort(20000) 0.031 matrix(20) 0.029 nestedloop(12) 0.059 sieve(30) 0.021 strcat(200000) 0.006 ------------------------ Total 1.002 Memory (MB): 0.43
Output for 7.2.2
PHP VERSION: 7.2.2 simple 0.042 simplecall 0.012 simpleucall 0.024 simpleudcall 0.028 mandel 0.137 mandel2 0.126 ackermann(7) 0.027 ary(50000) 0.109 ary2(50000) 0.093 ary3(2000) 0.103 fibo(30) 0.108 hash1(50000) 0.051 hash2(500) 0.010 heapsort(20000) 0.032 matrix(20) 0.026 nestedloop(12) 0.055 sieve(30) 0.019 strcat(200000) 0.005 ------------------------ Total 1.005 Memory (MB): 0.43
Output for 7.2.1
PHP VERSION: 7.2.1 simple 0.036 simplecall 0.011 simpleucall 0.025 simpleudcall 0.026 mandel 0.107 mandel2 0.139 ackermann(7) 0.023 ary(50000) 0.161 ary2(50000) 0.182 ary3(2000) 0.061 fibo(30) 0.120 hash1(50000) 0.048 hash2(500) 0.010 heapsort(20000) 0.027 matrix(20) 0.025 nestedloop(12) 0.054 sieve(30) 0.018 strcat(200000) 0.005 ------------------------ Total 1.078 Memory (MB): 0.43
Output for 7.2.0
PHP VERSION: 7.2.0 simple 0.029 simplecall 0.009 simpleucall 0.022 simpleudcall 0.024 mandel 0.103 mandel2 0.115 ackermann(7) 0.023 ary(50000) 0.089 ary2(50000) 0.066 ary3(2000) 0.054 fibo(30) 0.078 hash1(50000) 0.045 hash2(500) 0.011 heapsort(20000) 0.027 matrix(20) 0.024 nestedloop(12) 0.054 sieve(30) 0.018 strcat(200000) 0.005 ------------------------ Total 0.795 Memory (MB): 0.43
Output for 7.1.25
PHP VERSION: 7.1.25 simple 0.036 simplecall 0.014 simpleucall 0.043 simpleudcall 0.048 mandel 0.145 mandel2 0.110 ackermann(7) 0.025 ary(50000) 0.162 ary2(50000) 0.118 ary3(2000) 0.055 fibo(30) 0.097 hash1(50000) 0.041 hash2(500) 0.011 heapsort(20000) 0.027 matrix(20) 0.028 nestedloop(12) 0.065 sieve(30) 0.020 strcat(200000) 0.007 ------------------------ Total 1.053 Memory (MB): 0.40
Output for 7.1.24
PHP VERSION: 7.1.24 simple 0.031 simplecall 0.010 simpleucall 0.028 simpleudcall 0.027 mandel 0.127 mandel2 0.121 ackermann(7) 0.024 ary(50000) 0.087 ary2(50000) 0.068 ary3(2000) 0.057 fibo(30) 0.107 hash1(50000) 0.054 hash2(500) 0.010 heapsort(20000) 0.027 matrix(20) 0.029 nestedloop(12) 0.061 sieve(30) 0.029 strcat(200000) 0.005 ------------------------ Total 0.902 Memory (MB): 0.40
Output for 7.1.23
PHP VERSION: 7.1.23 simple 0.042 simplecall 0.009 simpleucall 0.024 simpleudcall 0.027 mandel 0.106 mandel2 0.106 ackermann(7) 0.023 ary(50000) 0.105 ary2(50000) 0.094 ary3(2000) 0.054 fibo(30) 0.097 hash1(50000) 0.041 hash2(500) 0.010 heapsort(20000) 0.027 matrix(20) 0.027 nestedloop(12) 0.053 sieve(30) 0.019 strcat(200000) 0.005 ------------------------ Total 0.870 Memory (MB): 0.40
Output for 7.1.22
PHP VERSION: 7.1.22 simple 0.030 simplecall 0.011 simpleucall 0.027 simpleudcall 0.027 mandel 0.103 mandel2 0.108 ackermann(7) 0.026 ary(50000) 0.101 ary2(50000) 0.089 ary3(2000) 0.058 fibo(30) 0.091 hash1(50000) 0.044 hash2(500) 0.010 heapsort(20000) 0.029 matrix(20) 0.027 nestedloop(12) 0.056 sieve(30) 0.020 strcat(200000) 0.005 ------------------------ Total 0.864 Memory (MB): 0.40
Output for 7.1.21
PHP VERSION: 7.1.21 simple 0.049 simplecall 0.014 simpleucall 0.043 simpleudcall 0.048 mandel 0.130 mandel2 0.147 ackermann(7) 0.024 ary(50000) 0.118 ary2(50000) 0.132 ary3(2000) 0.055 fibo(30) 0.091 hash1(50000) 0.043 hash2(500) 0.010 heapsort(20000) 0.029 matrix(20) 0.026 nestedloop(12) 0.059 sieve(30) 0.019 strcat(200000) 0.005 ------------------------ Total 1.044 Memory (MB): 0.40
Output for 7.1.20
PHP VERSION: 7.1.20 simple 0.036 simplecall 0.010 simpleucall 0.025 simpleudcall 0.027 mandel 0.105 mandel2 0.122 ackermann(7) 0.042 ary(50000) 0.147 ary2(50000) 0.099 ary3(2000) 0.062 fibo(30) 0.100 hash1(50000) 0.053 hash2(500) 0.010 heapsort(20000) 0.028 matrix(20) 0.027 nestedloop(12) 0.050 sieve(30) 0.019 strcat(200000) 0.005 ------------------------ Total 0.966 Memory (MB): 0.40
Output for 7.1.19
PHP VERSION: 7.1.19 simple 0.036 simplecall 0.012 simpleucall 0.027 simpleudcall 0.027 mandel 0.107 mandel2 0.118 ackermann(7) 0.025 ary(50000) 0.325 ary2(50000) 0.108 ary3(2000) 0.057 fibo(30) 0.146 hash1(50000) 0.060 hash2(500) 0.013 heapsort(20000) 0.035 matrix(20) 0.030 nestedloop(12) 0.058 sieve(30) 0.022 strcat(200000) 0.005 ------------------------ Total 1.210 Memory (MB): 0.40
Output for 7.1.18
PHP VERSION: 7.1.18 simple 0.048 simplecall 0.009 simpleucall 0.025 simpleudcall 0.029 mandel 0.132 mandel2 0.152 ackermann(7) 0.027 ary(50000) 0.204 ary2(50000) 0.153 ary3(2000) 0.054 fibo(30) 0.104 hash1(50000) 0.065 hash2(500) 0.010 heapsort(20000) 0.028 matrix(20) 0.028 nestedloop(12) 0.058 sieve(30) 0.019 strcat(200000) 0.005 ------------------------ Total 1.150 Memory (MB): 0.40
Output for 7.1.17
PHP VERSION: 7.1.17 simple 0.044 simplecall 0.013 simpleucall 0.028 simpleudcall 0.029 mandel 0.116 mandel2 0.112 ackermann(7) 0.025 ary(50000) 0.160 ary2(50000) 0.118 ary3(2000) 0.061 fibo(30) 0.105 hash1(50000) 0.091 hash2(500) 0.010 heapsort(20000) 0.027 matrix(20) 0.031 nestedloop(12) 0.050 sieve(30) 0.019 strcat(200000) 0.005 ------------------------ Total 1.043 Memory (MB): 0.40
Output for 7.1.16
PHP VERSION: 7.1.16 simple 0.033 simplecall 0.010 simpleucall 0.025 simpleudcall 0.028 mandel 0.106 mandel2 0.148 ackermann(7) 0.036 ary(50000) 0.135 ary2(50000) 0.089 ary3(2000) 0.062 fibo(30) 0.094 hash1(50000) 0.059 hash2(500) 0.010 heapsort(20000) 0.026 matrix(20) 0.026 nestedloop(12) 0.059 sieve(30) 0.021 strcat(200000) 0.005 ------------------------ Total 0.972 Memory (MB): 0.40
Output for 7.1.15
PHP VERSION: 7.1.15 simple 0.042 simplecall 0.009 simpleucall 0.025 simpleudcall 0.027 mandel 0.107 mandel2 0.110 ackermann(7) 0.035 ary(50000) 0.154 ary2(50000) 0.059 ary3(2000) 0.054 fibo(30) 0.097 hash1(50000) 0.066 hash2(500) 0.012 heapsort(20000) 0.034 matrix(20) 0.031 nestedloop(12) 0.057 sieve(30) 0.020 strcat(200000) 0.005 ------------------------ Total 0.944 Memory (MB): 0.40
Output for 7.1.14
PHP VERSION: 7.1.14 simple 0.031 simplecall 0.008 simpleucall 0.028 simpleudcall 0.028 mandel 0.117 mandel2 0.114 ackermann(7) 0.027 ary(50000) 0.106 ary2(50000) 0.082 ary3(2000) 0.059 fibo(30) 0.094 hash1(50000) 0.047 hash2(500) 0.011 heapsort(20000) 0.027 matrix(20) 0.028 nestedloop(12) 0.048 sieve(30) 0.018 strcat(200000) 0.005 ------------------------ Total 0.878 Memory (MB): 0.40
Output for 7.1.13
PHP VERSION: 7.1.13 simple 0.031 simplecall 0.010 simpleucall 0.025 simpleudcall 0.032 mandel 0.105 mandel2 0.112 ackermann(7) 0.027 ary(50000) 0.185 ary2(50000) 0.106 ary3(2000) 0.053 fibo(30) 0.091 hash1(50000) 0.052 hash2(500) 0.010 heapsort(20000) 0.026 matrix(20) 0.041 nestedloop(12) 0.073 sieve(30) 0.031 strcat(200000) 0.009 ------------------------ Total 1.018 Memory (MB): 0.40
Output for 7.1.12
PHP VERSION: 7.1.12 simple 0.042 simplecall 0.013 simpleucall 0.040 simpleudcall 0.042 mandel 0.166 mandel2 0.183 ackermann(7) 0.039 ary(50000) 0.123 ary2(50000) 0.076 ary3(2000) 0.052 fibo(30) 0.094 hash1(50000) 0.051 hash2(500) 0.010 heapsort(20000) 0.026 matrix(20) 0.028 nestedloop(12) 0.059 sieve(30) 0.021 strcat(200000) 0.006 ------------------------ Total 1.071 Memory (MB): 0.40
Output for 7.1.11
PHP VERSION: 7.1.11 simple 0.035 simplecall 0.011 simpleucall 0.039 simpleudcall 0.039 mandel 0.128 mandel2 0.126 ackermann(7) 0.045 ary(50000) 0.148 ary2(50000) 0.168 ary3(2000) 0.096 fibo(30) 0.099 hash1(50000) 0.101 hash2(500) 0.019 heapsort(20000) 0.055 matrix(20) 0.048 nestedloop(12) 0.070 sieve(30) 0.019 strcat(200000) 0.006 ------------------------ Total 1.252 Memory (MB): 0.40
Output for 7.1.10
PHP VERSION: 7.1.10 simple 0.039 simplecall 0.009 simpleucall 0.030 simpleudcall 0.029 mandel 0.137 mandel2 0.127 ackermann(7) 0.042 ary(50000) 0.108 ary2(50000) 0.087 ary3(2000) 0.085 fibo(30) 0.101 hash1(50000) 0.086 hash2(500) 0.023 heapsort(20000) 0.031 matrix(20) 0.034 nestedloop(12) 0.060 sieve(30) 0.019 strcat(200000) 0.006 ------------------------ Total 1.051 Memory (MB): 0.40
Output for 7.1.9
PHP VERSION: 7.1.9 simple 0.046 simplecall 0.014 simpleucall 0.043 simpleudcall 0.029 mandel 0.108 mandel2 0.108 ackermann(7) 0.024 ary(50000) 0.113 ary2(50000) 0.078 ary3(2000) 0.052 fibo(30) 0.099 hash1(50000) 0.067 hash2(500) 0.010 heapsort(20000) 0.027 matrix(20) 0.029 nestedloop(12) 0.049 sieve(30) 0.020 strcat(200000) 0.005 ------------------------ Total 0.922 Memory (MB): 0.40
Output for 7.1.8
PHP VERSION: 7.1.8 simple 0.030 simplecall 0.008 simpleucall 0.023 simpleudcall 0.027 mandel 0.110 mandel2 0.113 ackermann(7) 0.025 ary(50000) 0.191 ary2(50000) 0.114 ary3(2000) 0.053 fibo(30) 0.098 hash1(50000) 0.071 hash2(500) 0.010 heapsort(20000) 0.027 matrix(20) 0.028 nestedloop(12) 0.049 sieve(30) 0.018 strcat(200000) 0.005 ------------------------ Total 1.000 Memory (MB): 0.40
Output for 7.1.7
PHP VERSION: 7.1.7 simple 0.032 simplecall 0.011 simpleucall 0.025 simpleudcall 0.028 mandel 0.110 mandel2 0.110 ackermann(7) 0.025 ary(50000) 0.155 ary2(50000) 0.106 ary3(2000) 0.056 fibo(30) 0.100 hash1(50000) 0.067 hash2(500) 0.010 heapsort(20000) 0.026 matrix(20) 0.028 nestedloop(12) 0.049 sieve(30) 0.020 strcat(200000) 0.005 ------------------------ Total 0.962 Memory (MB): 0.40
Output for 7.1.6
PHP VERSION: 7.1.6 simple 0.030 simplecall 0.010 simpleucall 0.025 simpleudcall 0.027 mandel 0.106 mandel2 0.111 ackermann(7) 0.037 ary(50000) 0.152 ary2(50000) 0.141 ary3(2000) 0.053 fibo(30) 0.107 hash1(50000) 0.055 hash2(500) 0.010 heapsort(20000) 0.027 matrix(20) 0.032 nestedloop(12) 0.055 sieve(30) 0.019 strcat(200000) 0.005 ------------------------ Total 1.003 Memory (MB): 0.40
Output for 7.1.5
PHP VERSION: 7.1.5 simple 0.034 simplecall 0.010 simpleucall 0.024 simpleudcall 0.029 mandel 0.111 mandel2 0.107 ackermann(7) 0.026 ary(50000) 0.141 ary2(50000) 0.071 ary3(2000) 0.053 fibo(30) 0.094 hash1(50000) 0.069 hash2(500) 0.010 heapsort(20000) 0.027 matrix(20) 0.027 nestedloop(12) 0.052 sieve(30) 0.018 strcat(200000) 0.008 ------------------------ Total 0.912 Memory (MB): 0.40
Output for 7.1.4
PHP VERSION: 7.1.4 simple 0.034 simplecall 0.008 simpleucall 0.024 simpleudcall 0.028 mandel 0.100 mandel2 0.116 ackermann(7) 0.025 ary(50000) 0.087 ary2(50000) 0.059 ary3(2000) 0.052 fibo(30) 0.094 hash1(50000) 0.048 hash2(500) 0.010 heapsort(20000) 0.031 matrix(20) 0.027 nestedloop(12) 0.051 sieve(30) 0.018 strcat(200000) 0.005 ------------------------ Total 0.816 Memory (MB): 0.40
Output for 7.1.3
PHP VERSION: 7.1.3 simple 0.030 simplecall 0.009 simpleucall 0.024 simpleudcall 0.029 mandel 0.114 mandel2 0.176 ackermann(7) 0.032 ary(50000) 0.095 ary2(50000) 0.062 ary3(2000) 0.053 fibo(30) 0.092 hash1(50000) 0.052 hash2(500) 0.010 heapsort(20000) 0.028 matrix(20) 0.027 nestedloop(12) 0.053 sieve(30) 0.021 strcat(200000) 0.005 ------------------------ Total 0.912 Memory (MB): 0.40
Output for 7.1.2
PHP VERSION: 7.1.2 simple 0.033 simplecall 0.009 simpleucall 0.025 simpleudcall 0.028 mandel 0.109 mandel2 0.131 ackermann(7) 0.045 ary(50000) 0.211 ary2(50000) 0.093 ary3(2000) 0.055 fibo(30) 0.093 hash1(50000) 0.051 hash2(500) 0.009 heapsort(20000) 0.026 matrix(20) 0.027 nestedloop(12) 0.054 sieve(30) 0.019 strcat(200000) 0.005 ------------------------ Total 1.023 Memory (MB): 0.40
Output for 7.1.1
PHP VERSION: 7.1.1 simple 0.079 simplecall 0.028 simpleucall 0.082 simpleudcall 0.082 mandel 0.312 mandel2 0.348 ackermann(7) 0.063 ary(50000) 0.007 ary2(50000) 0.005 ary3(2000) 0.126 fibo(30) 0.245 hash1(50000) 0.022 hash2(500) 0.018 heapsort(20000) 0.063 matrix(20) 0.071 nestedloop(12) 0.133 sieve(30) 0.035 strcat(200000) 0.009 ------------------------ Total 1.729 Memory (MB): 0.40
Output for 7.1.0
PHP VERSION: 7.1.0 simple 0.089 simplecall 0.026 simpleucall 0.074 simpleudcall 0.084 mandel 0.307 mandel2 0.338 ackermann(7) 0.058 ary(50000) 0.007 ary2(50000) 0.004 ary3(2000) 0.116 fibo(30) 0.221 hash1(50000) 0.023 hash2(500) 0.019 heapsort(20000) 0.069 matrix(20) 0.071 nestedloop(12) 0.138 sieve(30) 0.037 strcat(200000) 0.010 ------------------------ Total 1.692 Memory (MB): 0.40
Output for 7.0.33
PHP VERSION: 7.0.33 simple 0.031 simplecall 0.009 simpleucall 0.028 simpleudcall 0.039 mandel 0.154 mandel2 0.142 ackermann(7) 0.028 ary(50000) 0.162 ary2(50000) 0.043 ary3(2000) 0.064 fibo(30) 0.105 hash1(50000) 0.035 hash2(500) 0.010 heapsort(20000) 0.033 matrix(20) 0.032 nestedloop(12) 0.058 sieve(30) 0.025 strcat(200000) 0.005 ------------------------ Total 1.003 Memory (MB): 0.40
Output for 7.0.32
PHP VERSION: 7.0.32 simple 0.043 simplecall 0.009 simpleucall 0.027 simpleudcall 0.029 mandel 0.109 mandel2 0.119 ackermann(7) 0.029 ary(50000) 0.127 ary2(50000) 0.115 ary3(2000) 0.068 fibo(30) 0.097 hash1(50000) 0.068 hash2(500) 0.011 heapsort(20000) 0.033 matrix(20) 0.030 nestedloop(12) 0.058 sieve(30) 0.025 strcat(200000) 0.007 ------------------------ Total 1.002 Memory (MB): 0.40
Output for 7.0.31
PHP VERSION: 7.0.31 simple 0.032 simplecall 0.009 simpleucall 0.027 simpleudcall 0.029 mandel 0.105 mandel2 0.115 ackermann(7) 0.029 ary(50000) 0.167 ary2(50000) 0.097 ary3(2000) 0.078 fibo(30) 0.096 hash1(50000) 0.052 hash2(500) 0.011 heapsort(20000) 0.033 matrix(20) 0.031 nestedloop(12) 0.054 sieve(30) 0.020 strcat(200000) 0.005 ------------------------ Total 0.991 Memory (MB): 0.40
Output for 7.0.30
PHP VERSION: 7.0.30 simple 0.037 simplecall 0.011 simpleucall 0.026 simpleudcall 0.027 mandel 0.105 mandel2 0.119 ackermann(7) 0.031 ary(50000) 0.133 ary2(50000) 0.086 ary3(2000) 0.071 fibo(30) 0.115 hash1(50000) 0.084 hash2(500) 0.011 heapsort(20000) 0.035 matrix(20) 0.035 nestedloop(12) 0.054 sieve(30) 0.021 strcat(200000) 0.005 ------------------------ Total 1.006 Memory (MB): 0.40
Output for 7.0.29
PHP VERSION: 7.0.29 simple 0.032 simplecall 0.012 simpleucall 0.029 simpleudcall 0.031 mandel 0.116 mandel2 0.122 ackermann(7) 0.028 ary(50000) 0.197 ary2(50000) 0.084 ary3(2000) 0.066 fibo(30) 0.097 hash1(50000) 0.059 hash2(500) 0.010 heapsort(20000) 0.035 matrix(20) 0.030 nestedloop(12) 0.049 sieve(30) 0.022 strcat(200000) 0.005 ------------------------ Total 1.024 Memory (MB): 0.40
Output for 7.0.28
PHP VERSION: 7.0.28 simple 0.038 simplecall 0.011 simpleucall 0.027 simpleudcall 0.029 mandel 0.104 mandel2 0.121 ackermann(7) 0.028 ary(50000) 0.167 ary2(50000) 0.074 ary3(2000) 0.068 fibo(30) 0.105 hash1(50000) 0.065 hash2(500) 0.023 heapsort(20000) 0.050 matrix(20) 0.038 nestedloop(12) 0.065 sieve(30) 0.021 strcat(200000) 0.007 ------------------------ Total 1.041 Memory (MB): 0.40
Output for 7.0.27
PHP VERSION: 7.0.27 simple 0.032 simplecall 0.009 simpleucall 0.029 simpleudcall 0.045 mandel 0.126 mandel2 0.128 ackermann(7) 0.026 ary(50000) 0.131 ary2(50000) 0.084 ary3(2000) 0.068 fibo(30) 0.097 hash1(50000) 0.055 hash2(500) 0.010 heapsort(20000) 0.031 matrix(20) 0.029 nestedloop(12) 0.050 sieve(30) 0.021 strcat(200000) 0.005 ------------------------ Total 0.978 Memory (MB): 0.40
Output for 7.0.26
PHP VERSION: 7.0.26 simple 0.034 simplecall 0.009 simpleucall 0.028 simpleudcall 0.030 mandel 0.121 mandel2 0.184 ackermann(7) 0.029 ary(50000) 0.329 ary2(50000) 0.124 ary3(2000) 0.069 fibo(30) 0.099 hash1(50000) 0.078 hash2(500) 0.010 heapsort(20000) 0.034 matrix(20) 0.030 nestedloop(12) 0.053 sieve(30) 0.021 strcat(200000) 0.005 ------------------------ Total 1.287 Memory (MB): 0.40
Output for 7.0.25
PHP VERSION: 7.0.25 simple 0.036 simplecall 0.010 simpleucall 0.031 simpleudcall 0.033 mandel 0.111 mandel2 0.145 ackermann(7) 0.033 ary(50000) 0.195 ary2(50000) 0.112 ary3(2000) 0.069 fibo(30) 0.100 hash1(50000) 0.061 hash2(500) 0.011 heapsort(20000) 0.035 matrix(20) 0.031 nestedloop(12) 0.071 sieve(30) 0.033 strcat(200000) 0.010 ------------------------ Total 1.127 Memory (MB): 0.40
Output for 7.0.24
PHP VERSION: 7.0.24 simple 0.032 simplecall 0.009 simpleucall 0.027 simpleudcall 0.030 mandel 0.125 mandel2 0.131 ackermann(7) 0.030 ary(50000) 0.096 ary2(50000) 0.083 ary3(2000) 0.069 fibo(30) 0.101 hash1(50000) 0.060 hash2(500) 0.011 heapsort(20000) 0.034 matrix(20) 0.031 nestedloop(12) 0.050 sieve(30) 0.020 strcat(200000) 0.006 ------------------------ Total 0.945 Memory (MB): 0.40
Output for 7.0.23
PHP VERSION: 7.0.23 simple 0.031 simplecall 0.009 simpleucall 0.027 simpleudcall 0.029 mandel 0.102 mandel2 0.139 ackermann(7) 0.029 ary(50000) 0.170 ary2(50000) 0.156 ary3(2000) 0.083 fibo(30) 0.109 hash1(50000) 0.088 hash2(500) 0.010 heapsort(20000) 0.032 matrix(20) 0.030 nestedloop(12) 0.055 sieve(30) 0.021 strcat(200000) 0.005 ------------------------ Total 1.126 Memory (MB): 0.40
Output for 7.0.22
PHP VERSION: 7.0.22 simple 0.029 simplecall 0.014 simpleucall 0.030 simpleudcall 0.030 mandel 0.127 mandel2 0.126 ackermann(7) 0.026 ary(50000) 0.225 ary2(50000) 0.115 ary3(2000) 0.088 fibo(30) 0.164 hash1(50000) 0.088 hash2(500) 0.011 heapsort(20000) 0.035 matrix(20) 0.031 nestedloop(12) 0.057 sieve(30) 0.021 strcat(200000) 0.005 ------------------------ Total 1.221 Memory (MB): 0.40
Output for 7.0.21
PHP VERSION: 7.0.21 simple 0.043 simplecall 0.016 simpleucall 0.052 simpleudcall 0.042 mandel 0.112 mandel2 0.119 ackermann(7) 0.029 ary(50000) 0.172 ary2(50000) 0.091 ary3(2000) 0.074 fibo(30) 0.100 hash1(50000) 0.051 hash2(500) 0.011 heapsort(20000) 0.034 matrix(20) 0.033 nestedloop(12) 0.052 sieve(30) 0.020 strcat(200000) 0.006 ------------------------ Total 1.056 Memory (MB): 0.40
Output for 7.0.20
PHP VERSION: 7.0.20 simple 0.042 simplecall 0.015 simpleucall 0.045 simpleudcall 0.033 mandel 0.112 mandel2 0.117 ackermann(7) 0.026 ary(50000) 0.142 ary2(50000) 0.075 ary3(2000) 0.080 fibo(30) 0.098 hash1(50000) 0.052 hash2(500) 0.011 heapsort(20000) 0.033 matrix(20) 0.031 nestedloop(12) 0.050 sieve(30) 0.021 strcat(200000) 0.005 ------------------------ Total 0.987 Memory (MB): 0.40
Output for 7.0.19
PHP VERSION: 7.0.19 simple 0.036 simplecall 0.009 simpleucall 0.027 simpleudcall 0.028 mandel 0.157 mandel2 0.113 ackermann(7) 0.027 ary(50000) 0.180 ary2(50000) 0.134 ary3(2000) 0.072 fibo(30) 0.147 hash1(50000) 0.119 hash2(500) 0.011 heapsort(20000) 0.032 matrix(20) 0.031 nestedloop(12) 0.056 sieve(30) 0.021 strcat(200000) 0.005 ------------------------ Total 1.205 Memory (MB): 0.40
Output for 7.0.18
PHP VERSION: 7.0.18 simple 0.047 simplecall 0.015 simpleucall 0.049 simpleudcall 0.053 mandel 0.173 mandel2 0.186 ackermann(7) 0.027 ary(50000) 0.091 ary2(50000) 0.066 ary3(2000) 0.065 fibo(30) 0.098 hash1(50000) 0.046 hash2(500) 0.011 heapsort(20000) 0.030 matrix(20) 0.031 nestedloop(12) 0.054 sieve(30) 0.020 strcat(200000) 0.005 ------------------------ Total 1.069 Memory (MB): 0.40
Output for 7.0.17
PHP VERSION: 7.0.17 simple 0.036 simplecall 0.013 simpleucall 0.046 simpleudcall 0.046 mandel 0.114 mandel2 0.116 ackermann(7) 0.027 ary(50000) 0.170 ary2(50000) 0.096 ary3(2000) 0.065 fibo(30) 0.103 hash1(50000) 0.053 hash2(500) 0.013 heapsort(20000) 0.036 matrix(20) 0.038 nestedloop(12) 0.051 sieve(30) 0.020 strcat(200000) 0.005 ------------------------ Total 1.050 Memory (MB): 0.40
Output for 7.0.16
PHP VERSION: 7.0.16 simple 0.030 simplecall 0.008 simpleucall 0.026 simpleudcall 0.029 mandel 0.111 mandel2 0.125 ackermann(7) 0.035 ary(50000) 0.148 ary2(50000) 0.119 ary3(2000) 0.071 fibo(30) 0.098 hash1(50000) 0.051 hash2(500) 0.011 heapsort(20000) 0.031 matrix(20) 0.030 nestedloop(12) 0.049 sieve(30) 0.020 strcat(200000) 0.005 ------------------------ Total 0.999 Memory (MB): 0.40
Output for 7.0.15
PHP VERSION: 7.0.15 simple 0.093 simplecall 0.030 simpleucall 0.074 simpleudcall 0.070 mandel 0.316 mandel2 0.356 ackermann(7) 0.064 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.140 fibo(30) 0.228 hash1(50000) 0.021 hash2(500) 0.021 heapsort(20000) 0.071 matrix(20) 0.076 nestedloop(12) 0.132 sieve(30) 0.038 strcat(200000) 0.009 ------------------------ Total 1.756 Memory (MB): 0.40
Output for 7.0.14
PHP VERSION: 7.0.14 simple 0.098 simplecall 0.035 simpleucall 0.093 simpleudcall 0.077 mandel 0.315 mandel2 0.345 ackermann(7) 0.062 ary(50000) 0.007 ary2(50000) 0.004 ary3(2000) 0.135 fibo(30) 0.243 hash1(50000) 0.022 hash2(500) 0.021 heapsort(20000) 0.072 matrix(20) 0.075 nestedloop(12) 0.136 sieve(30) 0.039 strcat(200000) 0.010 ------------------------ Total 1.789 Memory (MB): 0.40
Output for 7.0.13
PHP VERSION: 7.0.13 simple 0.079 simplecall 0.026 simpleucall 0.071 simpleudcall 0.074 mandel 0.323 mandel2 0.325 ackermann(7) 0.057 ary(50000) 0.007 ary2(50000) 0.004 ary3(2000) 0.134 fibo(30) 0.232 hash1(50000) 0.021 hash2(500) 0.020 heapsort(20000) 0.067 matrix(20) 0.078 nestedloop(12) 0.137 sieve(30) 0.035 strcat(200000) 0.009 ------------------------ Total 1.699 Memory (MB): 0.40
Output for 7.0.12
PHP VERSION: 7.0.12 simple 0.094 simplecall 0.032 simpleucall 0.079 simpleudcall 0.074 mandel 0.318 mandel2 0.344 ackermann(7) 0.063 ary(50000) 0.008 ary2(50000) 0.005 ary3(2000) 0.137 fibo(30) 0.231 hash1(50000) 0.023 hash2(500) 0.020 heapsort(20000) 0.072 matrix(20) 0.074 nestedloop(12) 0.133 sieve(30) 0.040 strcat(200000) 0.010 ------------------------ Total 1.755 Memory (MB): 0.40
Output for 7.0.11
PHP VERSION: 7.0.11 simple 0.077 simplecall 0.024 simpleucall 0.077 simpleudcall 0.079 mandel 0.342 mandel2 0.319 ackermann(7) 0.059 ary(50000) 0.006 ary2(50000) 0.004 ary3(2000) 0.126 fibo(30) 0.227 hash1(50000) 0.020 hash2(500) 0.019 heapsort(20000) 0.064 matrix(20) 0.071 nestedloop(12) 0.129 sieve(30) 0.038 strcat(200000) 0.009 ------------------------ Total 1.691 Memory (MB): 0.40
Output for 7.0.10
PHP VERSION: 7.0.10 simple 0.095 simplecall 0.026 simpleucall 0.070 simpleudcall 0.075 mandel 0.322 mandel2 0.340 ackermann(7) 0.060 ary(50000) 0.006 ary2(50000) 0.004 ary3(2000) 0.127 fibo(30) 0.230 hash1(50000) 0.023 hash2(500) 0.023 heapsort(20000) 0.070 matrix(20) 0.078 nestedloop(12) 0.142 sieve(30) 0.035 strcat(200000) 0.009 ------------------------ Total 1.735 Memory (MB): 0.40
Output for 7.0.9
PHP VERSION: 7.0.9 simple 0.081 simplecall 0.026 simpleucall 0.091 simpleudcall 0.085 mandel 0.321 mandel2 0.346 ackermann(7) 0.060 ary(50000) 0.006 ary2(50000) 0.004 ary3(2000) 0.130 fibo(30) 0.242 hash1(50000) 0.020 hash2(500) 0.018 heapsort(20000) 0.065 matrix(20) 0.071 nestedloop(12) 0.129 sieve(30) 0.034 strcat(200000) 0.009 ------------------------ Total 1.738 Memory (MB): 0.40
Output for 7.0.8
PHP VERSION: 7.0.8 simple 0.099 simplecall 0.024 simpleucall 0.074 simpleudcall 0.077 mandel 0.315 mandel2 0.341 ackermann(7) 0.064 ary(50000) 0.006 ary2(50000) 0.004 ary3(2000) 0.136 fibo(30) 0.234 hash1(50000) 0.021 hash2(500) 0.024 heapsort(20000) 0.079 matrix(20) 0.070 nestedloop(12) 0.139 sieve(30) 0.042 strcat(200000) 0.013 ------------------------ Total 1.761 Memory (MB): 0.40
Output for 7.0.7
PHP VERSION: 7.0.7 simple 0.079 simplecall 0.026 simpleucall 0.076 simpleudcall 0.074 mandel 0.332 mandel2 0.368 ackermann(7) 0.064 ary(50000) 0.006 ary2(50000) 0.005 ary3(2000) 0.147 fibo(30) 0.260 hash1(50000) 0.023 hash2(500) 0.020 heapsort(20000) 0.072 matrix(20) 0.076 nestedloop(12) 0.137 sieve(30) 0.035 strcat(200000) 0.009 ------------------------ Total 1.808 Memory (MB): 0.40
Output for 7.0.6
PHP VERSION: 7.0.6 simple 0.097 simplecall 0.036 simpleucall 0.092 simpleudcall 0.083 mandel 0.332 mandel2 0.362 ackermann(7) 0.070 ary(50000) 0.007 ary2(50000) 0.004 ary3(2000) 0.150 fibo(30) 0.252 hash1(50000) 0.025 hash2(500) 0.019 heapsort(20000) 0.068 matrix(20) 0.083 nestedloop(12) 0.148 sieve(30) 0.039 strcat(200000) 0.012 ------------------------ Total 1.880 Memory (MB): 0.40
Output for 7.0.5
PHP VERSION: 7.0.5 simple 0.098 simplecall 0.035 simpleucall 0.093 simpleudcall 0.069 mandel 0.310 mandel2 0.346 ackermann(7) 0.064 ary(50000) 0.007 ary2(50000) 0.004 ary3(2000) 0.126 fibo(30) 0.248 hash1(50000) 0.021 hash2(500) 0.020 heapsort(20000) 0.071 matrix(20) 0.076 nestedloop(12) 0.131 sieve(30) 0.039 strcat(200000) 0.010 ------------------------ Total 1.767 Memory (MB): 0.40
Output for 7.0.4
PHP VERSION: 7.0.4 simple 0.100 simplecall 0.031 simpleucall 0.071 simpleudcall 0.077 mandel 0.319 mandel2 0.329 ackermann(7) 0.061 ary(50000) 0.007 ary2(50000) 0.004 ary3(2000) 0.121 fibo(30) 0.218 hash1(50000) 0.020 hash2(500) 0.020 heapsort(20000) 0.065 matrix(20) 0.079 nestedloop(12) 0.133 sieve(30) 0.036 strcat(200000) 0.009 ------------------------ Total 1.702 Memory (MB): 0.40
Output for 7.0.3
PHP VERSION: 7.0.3 simple 0.078 simplecall 0.026 simpleucall 0.072 simpleudcall 0.070 mandel 0.303 mandel2 0.335 ackermann(7) 0.058 ary(50000) 0.006 ary2(50000) 0.004 ary3(2000) 0.123 fibo(30) 0.218 hash1(50000) 0.020 hash2(500) 0.018 heapsort(20000) 0.066 matrix(20) 0.074 nestedloop(12) 0.131 sieve(30) 0.036 strcat(200000) 0.009 ------------------------ Total 1.646 Memory (MB): 0.40
Output for 7.0.2
PHP VERSION: 7.0.2 simple 0.080 simplecall 0.027 simpleucall 0.075 simpleudcall 0.074 mandel 0.312 mandel2 0.342 ackermann(7) 0.068 ary(50000) 0.009 ary2(50000) 0.006 ary3(2000) 0.133 fibo(30) 0.231 hash1(50000) 0.021 hash2(500) 0.019 heapsort(20000) 0.067 matrix(20) 0.075 nestedloop(12) 0.139 sieve(30) 0.041 strcat(200000) 0.010 ------------------------ Total 1.729 Memory (MB): 0.40
Output for 7.0.1
PHP VERSION: 7.0.1 simple 0.079 simplecall 0.026 simpleucall 0.072 simpleudcall 0.071 mandel 0.301 mandel2 0.335 ackermann(7) 0.064 ary(50000) 0.007 ary2(50000) 0.004 ary3(2000) 0.148 fibo(30) 0.245 hash1(50000) 0.027 hash2(500) 0.025 heapsort(20000) 0.068 matrix(20) 0.072 nestedloop(12) 0.132 sieve(30) 0.038 strcat(200000) 0.010 ------------------------ Total 1.723 Memory (MB): 0.40
Output for 7.0.0
PHP VERSION: 7.0.0 simple 0.079 simplecall 0.026 simpleucall 0.073 simpleudcall 0.071 mandel 0.312 mandel2 0.344 ackermann(7) 0.063 ary(50000) 0.007 ary2(50000) 0.005 ary3(2000) 0.133 fibo(30) 0.230 hash1(50000) 0.022 hash2(500) 0.020 heapsort(20000) 0.066 matrix(20) 0.075 nestedloop(12) 0.134 sieve(30) 0.039 strcat(200000) 0.010 ------------------------ Total 1.709 Memory (MB): 0.40
Output for 5.6.38
PHP VERSION: 5.6.38 simple 0.074 simplecall 0.108 simpleucall 0.116 simpleudcall 0.119 mandel 0.248 mandel2 0.281 ackermann(7) 0.112 ary(50000) 0.024 ary2(50000) 0.025 ary3(2000) 0.143 fibo(30) 0.338 hash1(50000) 0.056 hash2(500) 0.029 heapsort(20000) 0.089 matrix(20) 0.104 nestedloop(12) 0.121 sieve(30) 0.101 strcat(200000) 0.011 ------------------------ Total 2.101 Memory (MB): 0.30
Output for 5.6.37
PHP VERSION: 5.6.37 simple 0.070 simplecall 0.105 simpleucall 0.101 simpleudcall 0.104 mandel 0.170 mandel2 0.233 ackermann(7) 0.100 ary(50000) 0.036 ary2(50000) 0.025 ary3(2000) 0.145 fibo(30) 0.352 hash1(50000) 0.035 hash2(500) 0.027 heapsort(20000) 0.078 matrix(20) 0.110 nestedloop(12) 0.127 sieve(30) 0.099 strcat(200000) 0.012 ------------------------ Total 1.929 Memory (MB): 0.30
Output for 5.6.36
PHP VERSION: 5.6.36 simple 0.068 simplecall 0.098 simpleucall 0.101 simpleudcall 0.122 mandel 0.234 mandel2 0.238 ackermann(7) 0.097 ary(50000) 0.024 ary2(50000) 0.020 ary3(2000) 0.152 fibo(30) 0.331 hash1(50000) 0.034 hash2(500) 0.026 heapsort(20000) 0.088 matrix(20) 0.087 nestedloop(12) 0.116 sieve(30) 0.098 strcat(200000) 0.011 ------------------------ Total 1.945 Memory (MB): 0.30
Output for 5.6.35
PHP VERSION: 5.6.35 simple 0.082 simplecall 0.108 simpleucall 0.110 simpleudcall 0.116 mandel 0.174 mandel2 0.248 ackermann(7) 0.093 ary(50000) 0.024 ary2(50000) 0.023 ary3(2000) 0.146 fibo(30) 0.382 hash1(50000) 0.056 hash2(500) 0.032 heapsort(20000) 0.111 matrix(20) 0.088 nestedloop(12) 0.138 sieve(30) 0.156 strcat(200000) 0.019 ------------------------ Total 2.106 Memory (MB): 0.30
Output for 5.6.34
PHP VERSION: 5.6.34 simple 0.073 simplecall 0.118 simpleucall 0.110 simpleudcall 0.144 mandel 0.180 mandel2 0.260 ackermann(7) 0.114 ary(50000) 0.032 ary2(50000) 0.030 ary3(2000) 0.225 fibo(30) 0.389 hash1(50000) 0.038 hash2(500) 0.028 heapsort(20000) 0.082 matrix(20) 0.092 nestedloop(12) 0.124 sieve(30) 0.099 strcat(200000) 0.011 ------------------------ Total 2.150 Memory (MB): 0.30
Output for 5.6.33
PHP VERSION: 5.6.33 simple 0.090 simplecall 0.150 simpleucall 0.105 simpleudcall 0.108 mandel 0.193 mandel2 0.257 ackermann(7) 0.097 ary(50000) 0.022 ary2(50000) 0.020 ary3(2000) 0.138 fibo(30) 0.318 hash1(50000) 0.035 hash2(500) 0.026 heapsort(20000) 0.077 matrix(20) 0.076 nestedloop(12) 0.113 sieve(30) 0.103 strcat(200000) 0.011 ------------------------ Total 1.937 Memory (MB): 0.30
Output for 5.6.32
PHP VERSION: 5.6.32 simple 0.067 simplecall 0.102 simpleucall 0.100 simpleudcall 0.101 mandel 0.167 mandel2 0.233 ackermann(7) 0.097 ary(50000) 0.025 ary2(50000) 0.026 ary3(2000) 0.146 fibo(30) 0.345 hash1(50000) 0.036 hash2(500) 0.027 heapsort(20000) 0.081 matrix(20) 0.097 nestedloop(12) 0.128 sieve(30) 0.103 strcat(200000) 0.011 ------------------------ Total 1.891 Memory (MB): 0.30
Output for 5.6.31
PHP VERSION: 5.6.31 simple 0.098 simplecall 0.125 simpleucall 0.098 simpleudcall 0.147 mandel 0.168 mandel2 0.275 ackermann(7) 0.117 ary(50000) 0.025 ary2(50000) 0.023 ary3(2000) 0.158 fibo(30) 0.378 hash1(50000) 0.033 hash2(500) 0.028 heapsort(20000) 0.072 matrix(20) 0.083 nestedloop(12) 0.124 sieve(30) 0.091 strcat(200000) 0.010 ------------------------ Total 2.053 Memory (MB): 0.30
Output for 5.6.30
PHP VERSION: 5.6.30 simple 0.206 simplecall 0.185 simpleucall 0.213 simpleudcall 0.239 mandel 0.530 mandel2 0.657 ackermann(7) 0.190 ary(50000) 0.029 ary2(50000) 0.022
Process exited with code 137.
Output for 5.6.29
PHP VERSION: 5.6.29 simple 0.200 simplecall 0.193 simpleucall 0.205 simpleudcall 0.255 mandel 0.505 mandel2 0.660 ackermann(7) 0.179 ary(50000) 0.030 ary2(50000) 0.021
Process exited with code 137.
Output for 5.6.28
PHP VERSION: 5.6.28 simple 0.202 simplecall 0.180 simpleucall 0.209 simpleudcall 0.242 mandel 0.503 mandel2 0.657 ackermann(7) 0.179 ary(50000) 0.026 ary2(50000) 0.019
Process exited with code 137.
Output for 5.6.27
PHP VERSION: 5.6.27 simple 0.203 simplecall 0.185 simpleucall 0.219 simpleudcall 0.236 mandel 0.507 mandel2 0.686 ackermann(7) 0.193 ary(50000) 0.043 ary2(50000) 0.022
Process exited with code 137.
Output for 5.6.26
PHP VERSION: 5.6.26 simple 0.203 simplecall 0.184 simpleucall 0.212 simpleudcall 0.224 mandel 0.489 mandel2 0.646 ackermann(7) 0.185 ary(50000) 0.026 ary2(50000) 0.023
Process exited with code 137.
Output for 5.6.25
PHP VERSION: 5.6.25 simple 0.196 simplecall 0.170 simpleucall 0.201 simpleudcall 0.235 mandel 0.514 mandel2 0.657 ackermann(7) 0.175 ary(50000) 0.025 ary2(50000) 0.020
Process exited with code 137.
Output for 5.6.24
PHP VERSION: 5.6.24 simple 0.210 simplecall 0.177 simpleucall 0.209 simpleudcall 0.226 mandel 0.494 mandel2 0.656 ackermann(7) 0.178 ary(50000) 0.026 ary2(50000) 0.021
Process exited with code 137.
Output for 5.6.23
PHP VERSION: 5.6.23 simple 0.219 simplecall 0.179 simpleucall 0.218 simpleudcall 0.247 mandel 0.523 mandel2 0.661 ackermann(7) 0.199 ary(50000) 0.025 ary2(50000) 0.019
Process exited with code 137.
Output for 5.6.22
PHP VERSION: 5.6.22 simple 0.217 simplecall 0.201 simpleucall 0.225 simpleudcall 0.245 mandel 0.515 mandel2 0.679 ackermann(7) 0.200 ary(50000) 0.028 ary2(50000) 0.021
Process exited with code 137.
Output for 5.6.21
PHP VERSION: 5.6.21 simple 0.207 simplecall 0.202 simpleucall 0.223 simpleudcall 0.237 mandel 0.519 mandel2 0.708 ackermann(7) 0.190 ary(50000) 0.028 ary2(50000) 0.021
Process exited with code 137.
Output for 5.6.20
PHP VERSION: 5.6.20 simple 0.204 simplecall 0.191 simpleucall 0.228 simpleudcall 0.230 mandel 0.526 mandel2 0.648 ackermann(7) 0.182 ary(50000) 0.025 ary2(50000) 0.018
Process exited with code 137.
Output for 5.6.19
PHP VERSION: 5.6.19 simple 0.202 simplecall 0.175 simpleucall 0.207 simpleudcall 0.223 mandel 0.483 mandel2 0.670 ackermann(7) 0.197 ary(50000) 0.028 ary2(50000) 0.022
Process exited with code 137.
Output for 5.6.18
PHP VERSION: 5.6.18 simple 0.197 simplecall 0.174 simpleucall 0.205 simpleudcall 0.223 mandel 0.483 mandel2 0.652 ackermann(7) 0.185 ary(50000) 0.025 ary2(50000) 0.020 ary3(2000) 0.308
Process exited with code 137.
Output for 5.6.17
PHP VERSION: 5.6.17 simple 0.212 simplecall 0.197 simpleucall 0.222 simpleudcall 0.234 mandel 0.509 mandel2 0.666 ackermann(7) 0.198 ary(50000) 0.027 ary2(50000) 0.022
Process exited with code 137.
Output for 5.6.16
PHP VERSION: 5.6.16 simple 0.204 simplecall 0.173 simpleucall 0.196 simpleudcall 0.216 mandel 0.495 mandel2 0.665 ackermann(7) 0.175 ary(50000) 0.026 ary2(50000) 0.018
Process exited with code 137.
Output for 5.6.15
PHP VERSION: 5.6.15 simple 0.199 simplecall 0.176 simpleucall 0.197 simpleudcall 0.209 mandel 0.494 mandel2 0.654 ackermann(7) 0.178 ary(50000) 0.025 ary2(50000) 0.018 ary3(2000) 0.297
Process exited with code 137.
Output for 5.6.14
PHP VERSION: 5.6.14 simple 0.208 simplecall 0.184 simpleucall 0.199 simpleudcall 0.213 mandel 0.505 mandel2 0.674 ackermann(7) 0.184 ary(50000) 0.032 ary2(50000) 0.025
Process exited with code 137.
Output for 5.6.13
PHP VERSION: 5.6.13 simple 0.201 simplecall 0.187 simpleucall 0.210 simpleudcall 0.220 mandel 0.486 mandel2 0.648 ackermann(7) 0.181 ary(50000) 0.024 ary2(50000) 0.018
Process exited with code 137.
Output for 5.6.12
PHP VERSION: 5.6.12 simple 0.220 simplecall 0.196 simpleucall 0.214 simpleudcall 0.236 mandel 0.499 mandel2 0.670 ackermann(7) 0.190 ary(50000) 0.026 ary2(50000) 0.019
Process exited with code 137.
Output for 5.6.11
PHP VERSION: 5.6.11 simple 0.252 simplecall 0.182 simpleucall 0.209 simpleudcall 0.225 mandel 0.509 mandel2 0.686 ackermann(7) 0.187 ary(50000) 0.027 ary2(50000) 0.020
Process exited with code 137.
Output for 5.6.10
PHP VERSION: 5.6.10 simple 0.223 simplecall 0.182 simpleucall 0.220 simpleudcall 0.234 mandel 0.499 mandel2 0.672 ackermann(7) 0.190 ary(50000) 0.027 ary2(50000) 0.021
Process exited with code 137.
Output for 5.6.9
PHP VERSION: 5.6.9 simple 0.199 simplecall 0.175 simpleucall 0.207 simpleudcall 0.239 mandel 0.514 mandel2 0.648 ackermann(7) 0.181 ary(50000) 0.024 ary2(50000) 0.018
Process exited with code 137.
Output for 5.6.8
PHP VERSION: 5.6.8 simple 0.196 simplecall 0.201 simpleucall 0.213 simpleudcall 0.221 mandel 0.498 mandel2 0.635 ackermann(7) 0.176 ary(50000) 0.026 ary2(50000) 0.021
Process exited with code 137.
Output for 5.6.7
PHP VERSION: 5.6.7 simple 0.221 simplecall 0.175 simpleucall 0.214 simpleudcall 0.227 mandel 0.496 mandel2 0.685 ackermann(7) 0.192 ary(50000) 0.025 ary2(50000) 0.019
Process exited with code 137.
Output for 5.6.6
PHP VERSION: 5.6.6 simple 0.199 simplecall 0.179 simpleucall 0.195 simpleudcall 0.211 mandel 0.498 mandel2 0.668 ackermann(7) 0.189 ary(50000) 0.027 ary2(50000) 0.018 ary3(2000) 0.296
Process exited with code 137.
Output for 5.6.5
PHP VERSION: 5.6.5 simple 0.228 simplecall 0.178 simpleucall 0.213 simpleudcall 0.238 mandel 0.481 mandel2 0.642 ackermann(7) 0.180 ary(50000) 0.030 ary2(50000) 0.020
Process exited with code 137.
Output for 5.6.4
PHP VERSION: 5.6.4 simple 0.215 simplecall 0.183 simpleucall 0.212 simpleudcall 0.217 mandel 0.478 mandel2 0.669 ackermann(7) 0.191 ary(50000) 0.035 ary2(50000) 0.020
Process exited with code 137.
Output for 5.6.3
PHP VERSION: 5.6.3 simple 0.222 simplecall 0.194 simpleucall 0.213 simpleudcall 0.228 mandel 0.508 mandel2 0.666 ackermann(7) 0.191 ary(50000) 0.048 ary2(50000) 0.023
Process exited with code 137.
Output for 5.6.2
PHP VERSION: 5.6.2 simple 0.222 simplecall 0.185 simpleucall 0.214 simpleudcall 0.223 mandel 0.506 mandel2 0.657 ackermann(7) 0.187 ary(50000) 0.044 ary2(50000) 0.027
Process exited with code 137.
Output for 5.6.1
PHP VERSION: 5.6.1 simple 0.207 simplecall 0.182 simpleucall 0.214 simpleudcall 0.221 mandel 0.485 mandel2 0.647 ackermann(7) 0.187 ary(50000) 0.044 ary2(50000) 0.020
Process exited with code 137.
Output for 5.6.0
PHP VERSION: 5.6.0 simple 0.200 simplecall 0.173 simpleucall 0.208 simpleudcall 0.227 mandel 0.517 mandel2 0.661 ackermann(7) 0.192 ary(50000) 0.060 ary2(50000) 0.020
Process exited with code 137.
Output for 5.5.38
PHP VERSION: 5.5.38 simple 0.224 simplecall 0.193 simpleucall 0.213 simpleudcall 0.224 mandel 0.503 mandel2 0.682 ackermann(7) 0.186 ary(50000) 0.027 ary2(50000) 0.021
Process exited with code 137.
Output for 5.5.37
PHP VERSION: 5.5.37 simple 0.207 simplecall 0.192 simpleucall 0.209 simpleudcall 0.224 mandel 0.494 mandel2 0.656 ackermann(7) 0.185 ary(50000) 0.031 ary2(50000) 0.020
Process exited with code 137.
Output for 5.5.36
PHP VERSION: 5.5.36 simple 0.203 simplecall 0.196 simpleucall 0.228 simpleudcall 0.224 mandel 0.531 mandel2 0.685 ackermann(7) 0.199 ary(50000) 0.029 ary2(50000) 0.023
Process exited with code 137.
Output for 5.5.35
PHP VERSION: 5.5.35 simple 0.209 simplecall 0.214 simpleucall 0.272 simpleudcall 0.266 mandel 0.512 mandel2 0.673 ackermann(7) 0.192 ary(50000) 0.028 ary2(50000) 0.023
Process exited with code 137.
Output for 5.5.34
PHP VERSION: 5.5.34 simple 0.205 simplecall 0.195 simpleucall 0.205 simpleudcall 0.236 mandel 0.536 mandel2 0.686 ackermann(7) 0.198 ary(50000) 0.028 ary2(50000) 0.021
Process exited with code 137.
Output for 5.5.33
PHP VERSION: 5.5.33 simple 0.221 simplecall 0.201 simpleucall 0.213 simpleudcall 0.240 mandel 0.502 mandel2 0.654 ackermann(7) 0.183 ary(50000) 0.025 ary2(50000) 0.018
Process exited with code 137.
Output for 5.5.32
PHP VERSION: 5.5.32 simple 0.221 simplecall 0.197 simpleucall 0.217 simpleudcall 0.237 mandel 0.512 mandel2 0.677 ackermann(7) 0.192 ary(50000) 0.027 ary2(50000) 0.021
Process exited with code 137.
Output for 5.5.31
PHP VERSION: 5.5.31 simple 0.199 simplecall 0.188 simpleucall 0.215 simpleudcall 0.217 mandel 0.502 mandel2 0.650 ackermann(7) 0.180 ary(50000) 0.024 ary2(50000) 0.018
Process exited with code 137.
Output for 5.5.30
PHP VERSION: 5.5.30 simple 0.215 simplecall 0.198 simpleucall 0.215 simpleudcall 0.225 mandel 0.516 mandel2 0.686 ackermann(7) 0.191 ary(50000) 0.028 ary2(50000) 0.021
Process exited with code 137.
Output for 5.5.29
PHP VERSION: 5.5.29 simple 0.231 simplecall 0.188 simpleucall 0.212 simpleudcall 0.222 mandel 0.483 mandel2 0.645 ackermann(7) 0.178 ary(50000) 0.024 ary2(50000) 0.018
Process exited with code 137.
Output for 5.5.28
PHP VERSION: 5.5.28 simple 0.205 simplecall 0.178 simpleucall 0.201 simpleudcall 0.224 mandel 0.479 mandel2 0.660 ackermann(7) 0.177 ary(50000) 0.024 ary2(50000) 0.018
Process exited with code 137.
Output for 5.5.27
PHP VERSION: 5.5.27 simple 0.199 simplecall 0.182 simpleucall 0.202 simpleudcall 0.212 mandel 0.489 mandel2 0.645 ackermann(7) 0.177 ary(50000) 0.025 ary2(50000) 0.019 ary3(2000) 0.324
Process exited with code 137.
Output for 5.5.26
PHP VERSION: 5.5.26 simple 0.218 simplecall 0.172 simpleucall 0.191 simpleudcall 0.226 mandel 0.490 mandel2 0.644 ackermann(7) 0.180 ary(50000) 0.024 ary2(50000) 0.019 ary3(2000) 0.312
Process exited with code 137.
Output for 5.5.25
PHP VERSION: 5.5.25 simple 0.212 simplecall 0.229 simpleucall 0.209 simpleudcall 0.211 mandel 0.481 mandel2 0.722 ackermann(7) 0.181 ary(50000) 0.025 ary2(50000) 0.018
Process exited with code 137.
Output for 5.5.24
PHP VERSION: 5.5.24 simple 0.246 simplecall 0.206 simpleucall 0.218 simpleudcall 0.234 mandel 0.516 mandel2 0.677 ackermann(7) 0.189 ary(50000) 0.030 ary2(50000) 0.022
Process exited with code 137.
Output for 5.5.23
PHP VERSION: 5.5.23 simple 0.204 simplecall 0.197 simpleucall 0.203 simpleudcall 0.217 mandel 0.493 mandel2 0.652 ackermann(7) 0.184 ary(50000) 0.025 ary2(50000) 0.019
Process exited with code 137.
Output for 5.5.22
PHP VERSION: 5.5.22 simple 0.204 simplecall 0.189 simpleucall 0.215 simpleudcall 0.211 mandel 0.490 mandel2 0.647 ackermann(7) 0.175 ary(50000) 0.039 ary2(50000) 0.022
Process exited with code 137.
Output for 5.5.21
PHP VERSION: 5.5.21 simple 0.206 simplecall 0.202 simpleucall 0.224 simpleudcall 0.220 mandel 0.481 mandel2 0.641 ackermann(7) 0.188 ary(50000) 0.031 ary2(50000) 0.021
Process exited with code 137.
Output for 5.5.20
PHP VERSION: 5.5.20 simple 0.213 simplecall 0.182 simpleucall 0.200 simpleudcall 0.211 mandel 0.485 mandel2 0.651 ackermann(7) 0.188 ary(50000) 0.036 ary2(50000) 0.023
Process exited with code 137.
Output for 5.5.19
PHP VERSION: 5.5.19 simple 0.198 simplecall 0.188 simpleucall 0.214 simpleudcall 0.226 mandel 0.501 mandel2 0.653 ackermann(7) 0.179 ary(50000) 0.037 ary2(50000) 0.018
Process exited with code 137.
Output for 5.5.18
PHP VERSION: 5.5.18 simple 0.234 simplecall 0.173 simpleucall 0.205 simpleudcall 0.219 mandel 0.490 mandel2 0.640 ackermann(7) 0.183 ary(50000) 0.025 ary2(50000) 0.019
Process exited with code 137.
Output for 5.5.17
PHP VERSION: 5.5.17 simple 0.244 simplecall 0.192 simpleucall 0.211 simpleudcall 0.230 mandel 0.512 mandel2 0.671 ackermann(7) 0.192 ary(50000) 0.052 ary2(50000) 0.019
Process exited with code 137.
Output for 5.5.16
PHP VERSION: 5.5.16 simple 0.209 simplecall 0.178 simpleucall 0.203 simpleudcall 0.219 mandel 0.491 mandel2 0.656 ackermann(7) 0.177 ary(50000) 0.041 ary2(50000) 0.028
Process exited with code 137.
Output for 5.5.15
PHP VERSION: 5.5.15 simple 0.215 simplecall 0.198 simpleucall 0.221 simpleudcall 0.229 mandel 0.508 mandel2 0.668 ackermann(7) 0.188 ary(50000) 0.043 ary2(50000) 0.020
Process exited with code 137.
Output for 5.5.14
PHP VERSION: 5.5.14 simple 0.205 simplecall 0.179 simpleucall 0.203 simpleudcall 0.214 mandel 0.550 mandel2 0.626 ackermann(7) 0.184 ary(50000) 0.049 ary2(50000) 0.024
Process exited with code 137.
Output for 5.5.13
PHP VERSION: 5.5.13 simple 0.208 simplecall 0.170 simpleucall 0.219 simpleudcall 0.211 mandel 0.493 mandel2 0.659 ackermann(7) 0.188 ary(50000) 0.056 ary2(50000) 0.020
Process exited with code 137.
Output for 5.5.12
PHP VERSION: 5.5.12 simple 0.211 simplecall 0.195 simpleucall 0.207 simpleudcall 0.215 mandel 0.498 mandel2 0.658 ackermann(7) 0.184 ary(50000) 0.044 ary2(50000) 0.021
Process exited with code 137.
Output for 5.5.11
PHP VERSION: 5.5.11 simple 0.209 simplecall 0.190 simpleucall 0.213 simpleudcall 0.226 mandel 0.491 mandel2 0.669 ackermann(7) 0.190 ary(50000) 0.054 ary2(50000) 0.019
Process exited with code 137.
Output for 5.5.10
PHP VERSION: 5.5.10 simple 0.207 simplecall 0.182 simpleucall 0.213 simpleudcall 0.215 mandel 0.496 mandel2 0.628 ackermann(7) 0.181 ary(50000) 0.057 ary2(50000) 0.028
Process exited with code 137.
Output for 5.5.9
PHP VERSION: 5.5.9 simple 0.195 simplecall 0.166 simpleucall 0.199 simpleudcall 0.222 mandel 0.472 mandel2 0.648 ackermann(7) 0.182 ary(50000) 0.043 ary2(50000) 0.019
Process exited with code 137.
Output for 5.5.8
PHP VERSION: 5.5.8 simple 0.218 simplecall 0.188 simpleucall 0.205 simpleudcall 0.233 mandel 0.474 mandel2 0.649 ackermann(7) 0.195 ary(50000) 0.051 ary2(50000) 0.021
Process exited with code 137.
Output for 5.5.7
PHP VERSION: 5.5.7 simple 0.211 simplecall 0.176 simpleucall 0.205 simpleudcall 0.232 mandel 0.489 mandel2 0.657 ackermann(7) 0.186 ary(50000) 0.049 ary2(50000) 0.025
Process exited with code 137.
Output for 5.5.6
PHP VERSION: 5.5.6 simple 0.238 simplecall 0.183 simpleucall 0.215 simpleudcall 0.224 mandel 0.508 mandel2 0.650 ackermann(7) 0.185 ary(50000) 0.053 ary2(50000) 0.023
Process exited with code 137.
Output for 5.5.5
PHP VERSION: 5.5.5 simple 0.224 simplecall 0.183 simpleucall 0.198 simpleudcall 0.216 mandel 0.489 mandel2 0.637 ackermann(7) 0.184 ary(50000) 0.040 ary2(50000) 0.019
Process exited with code 137.
Output for 5.5.4
PHP VERSION: 5.5.4 simple 0.207 simplecall 0.198 simpleucall 0.195 simpleudcall 0.213 mandel 0.500 mandel2 0.642 ackermann(7) 0.178 ary(50000) 0.052 ary2(50000) 0.023
Process exited with code 137.
Output for 5.5.3
PHP VERSION: 5.5.3 simple 0.205 simplecall 0.216 simpleucall 0.208 simpleudcall 0.231 mandel 0.495 mandel2 0.647 ackermann(7) 0.182 ary(50000) 0.055 ary2(50000) 0.021
Process exited with code 137.
Output for 5.5.2
PHP VERSION: 5.5.2 simple 0.213 simplecall 0.186 simpleucall 0.202 simpleudcall 0.220 mandel 0.496 mandel2 0.656 ackermann(7) 0.182 ary(50000) 0.025 ary2(50000) 0.019
Process exited with code 137.
Output for 5.5.1
PHP VERSION: 5.5.1 simple 0.218 simplecall 0.184 simpleucall 0.221 simpleudcall 0.241 mandel 0.498 mandel2 0.636 ackermann(7) 0.178 ary(50000) 0.039 ary2(50000) 0.020
Process exited with code 137.
Output for 5.5.0
PHP VERSION: 5.5.0 simple 0.224 simplecall 0.186 simpleucall 0.234 simpleudcall 0.233 mandel 0.499 mandel2 0.633 ackermann(7) 0.177 ary(50000) 0.035 ary2(50000) 0.019
Process exited with code 137.
Output for 5.4.45
PHP VERSION: 5.4.45 simple 0.195 simplecall 0.187 simpleucall 0.214 simpleudcall 0.232 mandel 0.489 mandel2 0.629 ackermann(7) 0.190 ary(50000) 0.025 ary2(50000) 0.018 ary3(2000) 0.310
Process exited with code 137.
Output for 5.4.44
PHP VERSION: 5.4.44 simple 0.195 simplecall 0.203 simpleucall 0.201 simpleudcall 0.219 mandel 0.497 mandel2 0.621 ackermann(7) 0.182 ary(50000) 0.024 ary2(50000) 0.018 ary3(2000) 0.328
Process exited with code 137.
Output for 5.4.43
PHP VERSION: 5.4.43 simple 0.214 simplecall 0.202 simpleucall 0.205 simpleudcall 0.221 mandel 0.512 mandel2 0.649 ackermann(7) 0.183 ary(50000) 0.026 ary2(50000) 0.019
Process exited with code 137.
Output for 5.4.42
PHP VERSION: 5.4.42 simple 0.216 simplecall 0.190 simpleucall 0.207 simpleudcall 0.226 mandel 0.526 mandel2 0.640 ackermann(7) 0.196 ary(50000) 0.024 ary2(50000) 0.018
Process exited with code 137.
Output for 5.4.41
PHP VERSION: 5.4.41 simple 0.256 simplecall 0.200 simpleucall 0.214 simpleudcall 0.229 mandel 0.519 mandel2 0.652 ackermann(7) 0.196 ary(50000) 0.027 ary2(50000) 0.020
Process exited with code 137.
Output for 5.4.40
PHP VERSION: 5.4.40 simple 0.206 simplecall 0.216 simpleucall 0.224 simpleudcall 0.238 mandel 0.524 mandel2 0.666 ackermann(7) 0.194 ary(50000) 0.034 ary2(50000) 0.022
Process exited with code 137.
Output for 5.4.39
PHP VERSION: 5.4.39 simple 0.207 simplecall 0.207 simpleucall 0.209 simpleudcall 0.224 mandel 0.504 mandel2 0.679 ackermann(7) 0.182 ary(50000) 0.025 ary2(50000) 0.020
Process exited with code 137.
Output for 5.4.38
PHP VERSION: 5.4.38 simple 0.192 simplecall 0.194 simpleucall 0.205 simpleudcall 0.235 mandel 0.509 mandel2 0.662 ackermann(7) 0.198 ary(50000) 0.029 ary2(50000) 0.019
Process exited with code 137.
Output for 5.4.37
PHP VERSION: 5.4.37 simple 0.207 simplecall 0.183 simpleucall 0.212 simpleudcall 0.227 mandel 0.511 mandel2 0.639 ackermann(7) 0.188 ary(50000) 0.032 ary2(50000) 0.026
Process exited with code 137.
Output for 5.4.36
PHP VERSION: 5.4.36 simple 0.200 simplecall 0.191 simpleucall 0.212 simpleudcall 0.228 mandel 0.509 mandel2 0.638 ackermann(7) 0.180 ary(50000) 0.038 ary2(50000) 0.019
Process exited with code 137.
Output for 5.4.35
PHP VERSION: 5.4.35 simple 0.220 simplecall 0.189 simpleucall 0.209 simpleudcall 0.222 mandel 0.496 mandel2 0.630 ackermann(7) 0.184 ary(50000) 0.032 ary2(50000) 0.018
Process exited with code 137.
Output for 5.4.34
PHP VERSION: 5.4.34 simple 0.201 simplecall 0.192 simpleucall 0.198 simpleudcall 0.216 mandel 0.494 mandel2 0.636 ackermann(7) 0.185 ary(50000) 0.044 ary2(50000) 0.022
Process exited with code 137.
Output for 5.4.33
PHP VERSION: 5.4.33 simple 0.197 simplecall 0.183 simpleucall 0.197 simpleudcall 0.227 mandel 0.509 mandel2 0.631 ackermann(7) 0.180 ary(50000) 0.037 ary2(50000) 0.020
Process exited with code 137.
Output for 5.4.32
PHP VERSION: 5.4.32 simple 0.230 simplecall 0.193 simpleucall 0.207 simpleudcall 0.221 mandel 0.498 mandel2 0.628 ackermann(7) 0.185 ary(50000) 0.050 ary2(50000) 0.020
Process exited with code 137.
Output for 5.4.31
PHP VERSION: 5.4.31 simple 0.199 simplecall 0.188 simpleucall 0.208 simpleudcall 0.223 mandel 0.495 mandel2 0.626 ackermann(7) 0.200 ary(50000) 0.051 ary2(50000) 0.019
Process exited with code 137.
Output for 5.4.30
PHP VERSION: 5.4.30 simple 0.201 simplecall 0.183 simpleucall 0.209 simpleudcall 0.223 mandel 0.487 mandel2 0.630 ackermann(7) 0.183 ary(50000) 0.029 ary2(50000) 0.038
Process exited with code 137.
Output for 5.4.29
PHP VERSION: 5.4.29 simple 0.218 simplecall 0.191 simpleucall 0.210 simpleudcall 0.219 mandel 0.489 mandel2 0.662 ackermann(7) 0.209 ary(50000) 0.050 ary2(50000) 0.028
Process exited with code 137.
Output for 5.4.28
PHP VERSION: 5.4.28 simple 0.247 simplecall 0.192 simpleucall 0.218 simpleudcall 0.232 mandel 0.505 mandel2 0.657 ackermann(7) 0.187 ary(50000) 0.041 ary2(50000) 0.018
Process exited with code 137.
Output for 5.4.27
PHP VERSION: 5.4.27 simple 0.199 simplecall 0.201 simpleucall 0.212 simpleudcall 0.222 mandel 0.491 mandel2 0.651 ackermann(7) 0.191 ary(50000) 0.041 ary2(50000) 0.019
Process exited with code 137.
Output for 5.4.26
PHP VERSION: 5.4.26 simple 0.208 simplecall 0.212 simpleucall 0.215 simpleudcall 0.218 mandel 0.493 mandel2 0.629 ackermann(7) 0.183 ary(50000) 0.051 ary2(50000) 0.018
Process exited with code 137.
Output for 5.4.25
PHP VERSION: 5.4.25 simple 0.226 simplecall 0.208 simpleucall 0.230 simpleudcall 0.236 mandel 0.511 mandel2 0.650 ackermann(7) 0.197 ary(50000) 0.064 ary2(50000) 0.019
Process exited with code 137.
Output for 5.4.24
PHP VERSION: 5.4.24 simple 0.205 simplecall 0.179 simpleucall 0.212 simpleudcall 0.222 mandel 0.496 mandel2 0.621 ackermann(7) 0.183 ary(50000) 0.042 ary2(50000) 0.026
Process exited with code 137.
Output for 5.4.23
PHP VERSION: 5.4.23 simple 0.252 simplecall 0.178 simpleucall 0.208 simpleudcall 0.231 mandel 0.505 mandel2 0.695 ackermann(7) 0.208 ary(50000) 0.047
Process exited with code 137.
Output for 5.4.22
PHP VERSION: 5.4.22 simple 0.203 simplecall 0.180 simpleucall 0.238 simpleudcall 0.242 mandel 0.493 mandel2 0.661 ackermann(7) 0.207 ary(50000) 0.038 ary2(50000) 0.030
Process exited with code 137.
Output for 5.4.21
PHP VERSION: 5.4.21 simple 0.216 simplecall 0.199 simpleucall 0.228 simpleudcall 0.234 mandel 0.526 mandel2 0.621 ackermann(7) 0.186 ary(50000) 0.053 ary2(50000) 0.019
Process exited with code 137.
Output for 5.4.20
PHP VERSION: 5.4.20 simple 0.202 simplecall 0.177 simpleucall 0.209 simpleudcall 0.228 mandel 0.518 mandel2 0.642 ackermann(7) 0.191 ary(50000) 0.054 ary2(50000) 0.018
Process exited with code 137.
Output for 5.4.19
PHP VERSION: 5.4.19 simple 0.224 simplecall 0.211 simpleucall 0.232 simpleudcall 0.237 mandel 0.521 mandel2 0.658 ackermann(7) 0.202 ary(50000) 0.055 ary2(50000) 0.029
Process exited with code 137.
Output for 5.4.18
PHP VERSION: 5.4.18 simple 0.214 simplecall 0.205 simpleucall 0.222 simpleudcall 0.229 mandel 0.496 mandel2 0.638 ackermann(7) 0.193 ary(50000) 0.045 ary2(50000) 0.021
Process exited with code 137.
Output for 5.4.17
PHP VERSION: 5.4.17 simple 0.211 simplecall 0.204 simpleucall 0.218 simpleudcall 0.216 mandel 0.519 mandel2 0.650 ackermann(7) 0.203 ary(50000) 0.050 ary2(50000) 0.019
Process exited with code 137.
Output for 5.4.16
PHP VERSION: 5.4.16 simple 0.203 simplecall 0.187 simpleucall 0.217 simpleudcall 0.230 mandel 0.492 mandel2 0.630 ackermann(7) 0.184 ary(50000) 0.032 ary2(50000) 0.022
Process exited with code 137.
Output for 5.4.15
PHP VERSION: 5.4.15 simple 0.253 simplecall 0.243 simpleucall 0.208 simpleudcall 0.238 mandel 0.500 mandel2 0.635 ackermann(7) 0.191 ary(50000) 0.049 ary2(50000) 0.019
Process exited with code 137.
Output for 5.4.14
PHP VERSION: 5.4.14 simple 0.212 simplecall 0.185 simpleucall 0.245 simpleudcall 0.294 mandel 0.533 mandel2 0.634 ackermann(7) 0.193 ary(50000) 0.054 ary2(50000) 0.021
Process exited with code 137.
Output for 5.4.13
PHP VERSION: 5.4.13 simple 0.207 simplecall 0.223 simpleucall 0.219 simpleudcall 0.239 mandel 0.536 mandel2 0.653 ackermann(7) 0.207 ary(50000) 0.057 ary2(50000) 0.020
Process exited with code 137.
Output for 5.4.12
PHP VERSION: 5.4.12 simple 0.219 simplecall 0.231 simpleucall 0.225 simpleudcall 0.233 mandel 0.525 mandel2 0.663 ackermann(7) 0.194 ary(50000) 0.052 ary2(50000) 0.020
Process exited with code 137.
Output for 5.4.11
PHP VERSION: 5.4.11 simple 0.219 simplecall 0.203 simpleucall 0.232 simpleudcall 0.240 mandel 0.531 mandel2 0.664 ackermann(7) 0.200 ary(50000) 0.042 ary2(50000) 0.023
Process exited with code 137.
Output for 5.4.10
PHP VERSION: 5.4.10 simple 0.210 simplecall 0.187 simpleucall 0.220 simpleudcall 0.246 mandel 0.511 mandel2 0.658 ackermann(7) 0.203 ary(50000) 0.060 ary2(50000) 0.024
Process exited with code 137.
Output for 5.4.9
PHP VERSION: 5.4.9 simple 0.234 simplecall 0.218 simpleucall 0.234 simpleudcall 0.231 mandel 0.549 mandel2 0.646 ackermann(7) 0.195 ary(50000) 0.057 ary2(50000) 0.021
Process exited with code 137.
Output for 5.4.8
PHP VERSION: 5.4.8 simple 0.214 simplecall 0.223 simpleucall 0.237 simpleudcall 0.242 mandel 0.529 mandel2 0.660 ackermann(7) 0.199 ary(50000) 0.067 ary2(50000) 0.022
Process exited with code 137.
Output for 5.4.7
PHP VERSION: 5.4.7 simple 0.232 simplecall 0.193 simpleucall 0.201 simpleudcall 0.231 mandel 0.531 mandel2 0.624 ackermann(7) 0.201 ary(50000) 0.038 ary2(50000) 0.022
Process exited with code 137.
Output for 5.4.6
PHP VERSION: 5.4.6 simple 0.202 simplecall 0.187 simpleucall 0.213 simpleudcall 0.232 mandel 0.522 mandel2 0.684 ackermann(7) 0.200 ary(50000) 0.043 ary2(50000) 0.023
Process exited with code 137.
Output for 5.4.5
PHP VERSION: 5.4.5 simple 0.219 simplecall 0.199 simpleucall 0.220 simpleudcall 0.265 mandel 0.539 mandel2 0.656 ackermann(7) 0.202 ary(50000) 0.032 ary2(50000) 0.029
Process exited with code 137.
Output for 5.4.4
PHP VERSION: 5.4.4 simple 0.223 simplecall 0.195 simpleucall 0.215 simpleudcall 0.226 mandel 0.528 mandel2 0.673 ackermann(7) 0.210 ary(50000) 0.045 ary2(50000) 0.022
Process exited with code 137.
Output for 5.4.3
PHP VERSION: 5.4.3 simple 0.224 simplecall 0.190 simpleucall 0.212 simpleudcall 0.226 mandel 0.501 mandel2 0.642 ackermann(7) 0.193 ary(50000) 0.040 ary2(50000) 0.021
Process exited with code 137.
Output for 5.4.2
PHP VERSION: 5.4.2 simple 0.233 simplecall 0.201 simpleucall 0.233 simpleudcall 0.240 mandel 0.523 mandel2 0.664 ackermann(7) 0.203 ary(50000) 0.039 ary2(50000) 0.024
Process exited with code 137.
Output for 5.4.1
PHP VERSION: 5.4.1 simple 0.212 simplecall 0.197 simpleucall 0.218 simpleudcall 0.241 mandel 0.509 mandel2 0.637 ackermann(7) 0.197 ary(50000) 0.033 ary2(50000) 0.018
Process exited with code 137.
Output for 5.4.0
PHP VERSION: 5.4.0 simple 0.208 simplecall 0.188 simpleucall 0.207 simpleudcall 0.230 mandel 0.499 mandel2 0.638 ackermann(7) 0.192 ary(50000) 0.028 ary2(50000) 0.020
Process exited with code 137.
Output for 5.3.29
PHP VERSION: 5.3.29 simple 0.231 simplecall 0.233 simpleucall 0.261 simpleudcall 0.281 mandel 0.622
Process exited with code 137.
Output for 5.3.28
PHP VERSION: 5.3.28 simple 0.212 simplecall 0.247 simpleucall 0.260 simpleudcall 0.288 mandel 0.611 mandel2 0.803
Process exited with code 137.
Output for 5.3.27
PHP VERSION: 5.3.27 simple 0.227 simplecall 0.256 simpleucall 0.283 simpleudcall 0.298 mandel 0.607
Process exited with code 137.
Output for 5.3.26
PHP VERSION: 5.3.26 simple 0.216 simplecall 0.243 simpleucall 0.279 simpleudcall 0.313 mandel 0.682
Process exited with code 137.
Output for 5.3.25
PHP VERSION: 5.3.25 simple 0.311 simplecall 0.274 simpleucall 0.293 simpleudcall 0.309 mandel 0.623
Process exited with code 137.
Output for 5.3.24
PHP VERSION: 5.3.24 simple 0.234 simplecall 0.273 simpleucall 0.287 simpleudcall 0.302 mandel 0.603
Process exited with code 137.
Output for 5.3.23
PHP VERSION: 5.3.23 simple 0.223 simplecall 0.251 simpleucall 0.281 simpleudcall 0.314 mandel 0.570
Process exited with code 137.
Output for 5.3.22
PHP VERSION: 5.3.22 simple 0.234 simplecall 0.264 simpleucall 0.307 simpleudcall 0.286 mandel 0.588
Process exited with code 137.
Output for 5.3.21
PHP VERSION: 5.3.21 simple 0.210 simplecall 0.264 simpleucall 0.293 simpleudcall 0.289 mandel 0.615
Process exited with code 137.
Output for 5.3.20
PHP VERSION: 5.3.20 simple 0.233 simplecall 0.252 simpleucall 0.300 simpleudcall 0.306 mandel 0.625
Process exited with code 137.
Output for 5.3.19
PHP VERSION: 5.3.19 simple 0.206 simplecall 0.272 simpleucall 0.309 simpleudcall 0.328 mandel 0.663
Process exited with code 137.
Output for 5.3.18
PHP VERSION: 5.3.18 simple 0.226 simplecall 0.277 simpleucall 0.311 simpleudcall 0.283 mandel 0.589
Process exited with code 137.
Output for 5.3.17
PHP VERSION: 5.3.17 simple 0.256 simplecall 0.280 simpleucall 0.300 simpleudcall 0.290 mandel 0.684
Process exited with code 137.
Output for 5.3.16
PHP VERSION: 5.3.16 simple 0.213 simplecall 0.252 simpleucall 0.291 simpleudcall 0.304 mandel 0.670
Process exited with code 137.
Output for 5.3.15
PHP VERSION: 5.3.15 simple 0.259 simplecall 0.290 simpleucall 0.265 simpleudcall 0.287 mandel 0.665
Process exited with code 137.
Output for 5.3.14
PHP VERSION: 5.3.14 simple 0.224 simplecall 0.269 simpleucall 0.301 simpleudcall 0.306 mandel 0.635
Process exited with code 137.
Output for 5.3.13
PHP VERSION: 5.3.13 simple 0.236 simplecall 0.243 simpleucall 0.275 simpleudcall 0.286 mandel 0.606
Process exited with code 137.
Output for 5.3.12
PHP VERSION: 5.3.12 simple 0.239 simplecall 0.270 simpleucall 0.303 simpleudcall 0.309 mandel 0.599
Process exited with code 137.
Output for 5.3.11
PHP VERSION: 5.3.11 simple 0.238 simplecall 0.257 simpleucall 0.278 simpleudcall 0.287 mandel 0.599 mandel2 0.767
Process exited with code 137.
Output for 5.3.10
PHP VERSION: 5.3.10 simple 0.217 simplecall 0.247 simpleucall 0.286 simpleudcall 0.298 mandel 0.600 mandel2 0.771
Process exited with code 137.
Output for 5.3.9
PHP VERSION: 5.3.9 simple 0.211 simplecall 0.244 simpleucall 0.277 simpleudcall 0.287 mandel 0.591 mandel2 0.762
Process exited with code 137.
Output for 5.3.8
PHP VERSION: 5.3.8 simple 0.212 simplecall 0.239 simpleucall 0.263 simpleudcall 0.289 mandel 0.581 mandel2 0.749
Process exited with code 137.
Output for 5.3.7
PHP VERSION: 5.3.7 simple 0.235 simplecall 0.273 simpleucall 0.274 simpleudcall 0.296 mandel 0.579
Process exited with code 137.
Output for 5.3.6
PHP VERSION: 5.3.6 simple 0.232 simplecall 0.264 simpleucall 0.285 simpleudcall 0.305 mandel 0.633
Process exited with code 137.
Output for 5.3.5
PHP VERSION: 5.3.5 simple 0.230 simplecall 0.253 simpleucall 0.286 simpleudcall 0.300 mandel 0.656
Process exited with code 137.
Output for 5.3.4
PHP VERSION: 5.3.4 simple 0.217 simplecall 0.259 simpleucall 0.283 simpleudcall 0.287 mandel 0.653
Process exited with code 137.
Output for 5.3.3
PHP VERSION: 5.3.3 simple 0.216 simplecall 0.275 simpleucall 0.301 simpleudcall 0.294 mandel 0.580 mandel2 0.774
Process exited with code 137.
Output for 5.3.2
PHP VERSION: 5.3.2 simple 0.230 simplecall 0.280 simpleucall 0.311 simpleudcall 0.305 mandel 0.610
Process exited with code 137.
Output for 5.3.1
PHP VERSION: 5.3.1 simple 0.243 simplecall 0.250 simpleucall 0.267 simpleudcall 0.285 mandel 0.600 mandel2 0.770
Process exited with code 137.
Output for 5.3.0
PHP VERSION: 5.3.0 simple 0.221 simplecall 0.262 simpleucall 0.272 simpleudcall 0.282 mandel 0.572 mandel2 0.739
Process exited with code 137.

preferences:
173.53 ms | 401 KiB | 234 Q