3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* ########################################################################## # PHP Benchmark Performance Script # # <A9> 2010 Code24 BV # # # # Author : Alessandro Torrisi # # Company : Code24 BV, The Netherlands # # Date : July 31, 2010 # # version : 1.0 # # License : Creative Commons CC-BY license # # Website : http://www.php-benchmark-script.com # # # ########################################################################## */ set_time_limit(0); function get_microtime() { $time = microtime(true); if (is_string($time)) { list($f, $i) = explode(" ", $time); $time = intval($i) + floatval($f); } return $time; } function test_Math($count = 1400000) { $time_start = get_microtime(); $mathFunctions = array("abs", "acos", "asin", "atan", "bindec", "floor", "exp", "sin", "tan", "pi", "is_finite", "is_nan", "sqrt"); foreach ($mathFunctions as $key => $function) { if (!function_exists($function)) unset($mathFunctions[$key]); } for ($i=0; $i < $count; $i++) { foreach ($mathFunctions as $function) { $r = call_user_func_array($function, array($i)); } } return number_format(get_microtime() - $time_start, 3); } function test_StringManipulation($count = 1300000) { $time_start = get_microtime(); $stringFunctions = array("addslashes", "chunk_split", "metaphone", "strip_tags", "md5", "sha1", "strtoupper", "strtolower", "strrev", "strlen", "soundex", "ord"); foreach ($stringFunctions as $key => $function) { if (!function_exists($function)) unset($stringFunctions[$key]); } $string = "the quick brown fox jumps over the lazy dog"; for ($i=0; $i < $count; $i++) { foreach ($stringFunctions as $function) { $r = call_user_func_array($function, array($string)); } } return number_format(get_microtime() - $time_start, 3); } function test_Loops($count = 190000000) { $time_start = get_microtime(); for($i = 0; $i < $count; ++$i); $i = 0; while($i++ < $count); return number_format(get_microtime() - $time_start, 3); } function test_IfElse($count = 90000000) { $time_start = get_microtime(); for ($i=0; $i < $count; $i++) { if ($i == -1) { } elseif ($i == -2) { } else if ($i == -3) { } } return number_format(get_microtime() - $time_start, 3); } $total = 0; $functions = get_defined_functions(); $line = str_pad("-",38,"-"); echo "<pre>\n$line\n|".str_pad("PHP BENCHMARK SCRIPT",36," ",STR_PAD_BOTH)."|\n$line\nStart : ".date("Y-m-d H:i:s")."\nServer : ".php_uname()."\nPHP version : ".PHP_VERSION."\nPlatform : ".PHP_OS. "\n$line\n"; foreach ($functions['user'] as $user) { if (preg_match('/^test_/', $user)) { $result = $user(); $total += $result; echo str_pad($user, 25) . " : " . $result ." sec.\n"; } } echo str_pad("-", 38, "-") . "\n" . str_pad("Total time:", 25) . " : " . $total ." sec.\n</pre>\n";
Output for 7.2.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.0 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 7.1.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.7 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 7.1.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.6 Platform : Linux -------------------------------------- test_math : 2.329 sec.
Process exited with code 137.
Output for 7.1.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.5 Platform : Linux -------------------------------------- test_math : 2.319 sec.
Process exited with code 137.
Output for 7.1.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.8.11-1-ARCH #1 SMP PREEMPT Sun Nov 27 09:26:14 CET 2016 x86_64 PHP version : 7.1.0 Platform : Linux -------------------------------------- test_math : 2.339 sec.
Process exited with code 137.
Output for 7.0.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.0.20 Platform : Linux -------------------------------------- test_math : 2.343 sec.
Process exited with code 137.
Output for 7.0.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.0.14 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 7.0.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 7.0.10 Platform : Linux -------------------------------------- test_math : 2.302 sec.
Process exited with code 137.
Output for 7.0.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 7.0.9 Platform : Linux -------------------------------------- test_math : 2.313 sec.
Process exited with code 137.
Output for 7.0.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 7.0.8 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 7.0.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 7.0.7 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 7.0.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 7.0.6 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 7.0.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 7.0.5 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 7.0.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 7.0.4 Platform : Linux -------------------------------------- test_math : 2.382 sec.
Process exited with code 137.
Output for 7.0.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 7.0.3 Platform : Linux -------------------------------------- test_math : 2.373 sec.
Process exited with code 137.
Output for 7.0.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 7.0.2 Platform : Linux -------------------------------------- test_math : 2.359 sec.
Process exited with code 137.
Output for 7.0.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 7.0.1 Platform : Linux -------------------------------------- test_math : 2.251 sec.
Process exited with code 137.
Output for 7.0.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 7.0.0 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.25
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.25 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.24
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.24 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.23
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.23 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.22
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.22 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.21
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.21 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.20 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.19
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.19 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.18
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.18 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.17
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.17 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.16 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.15 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.14 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.13 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.12 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.11 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.10 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.9 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.8 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.7 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.6 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.5 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.4 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.3 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.2 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.1 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.6.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.6.0 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.38
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.7.0-1-ARCH #1 SMP PREEMPT Mon Aug 8 22:05:58 CEST 2016 x86_64 PHP version : 5.5.38 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.37
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.37 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.36
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.36 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.35
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.35 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.34
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.34 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.33
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.33 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.32
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.32 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.31
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.31 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.30
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.30 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.29
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.29 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.28
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.28 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.27
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.27 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.26
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.26 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.25
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.25 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.24
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.24 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.23
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.23 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.22
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.22 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.21
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.21 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.20 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.19
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.19 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.18
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.18 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.16 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.15 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.14 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.13 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.12 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.11 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.10 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.9 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.8 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.7 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.6 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.5 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.4 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.3 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.2 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.1 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.5.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.5.0 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.45
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.45 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.44
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.44 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.43
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.43 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.42
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.42 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.41
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.41 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.40
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.40 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.39
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.39 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.38
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.38 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.37
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.37 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.36
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.36 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.35
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.35 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.34
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.34 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.32
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.32 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.31
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.31 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.30
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.30 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.29
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.29 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.28
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.28 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.27
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.27 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.26
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.26 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.25
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.25 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.24
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.24 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.23
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.23 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.22
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.22 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.21
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.21 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.20 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.19
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.19 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.18
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.18 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.17
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.17 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.16 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.15 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.14 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.13 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.12 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.11 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.10 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.9 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.8 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.7 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.6 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.5 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.4 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.3 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.2 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.1 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.4.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.4.0 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.29
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.29 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.28
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.28 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.27
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.27 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.26
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.26 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.25
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.25 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.24
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.24 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.23
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.23 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.22
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.22 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.21
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.21 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.20 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.19
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.19 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.18
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.18 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.17
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.17 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.16 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.15 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.14 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.13 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.12 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.11 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.10 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.9 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.8 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.7 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.6 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.5 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.4 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.3 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.2 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.1 Platform : Linux --------------------------------------
Process exited with code 137.
Output for 5.3.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:23:25 Server : Linux php_shell 4.6.4-1-ARCH #1 SMP PREEMPT Mon Jul 11 19:12:32 CEST 2016 x86_64 PHP version : 5.3.0 Platform : Linux --------------------------------------
Process exited with code 137.

preferences:
135.76 ms | 401 KiB | 162 Q