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 = 140000) { $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 = 130000) { $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 = 19000000) { $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 = 9000000) { $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.3.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.12 Platform : Linux -------------------------------------- test_math : 0.246 sec. test_stringmanipulation : 0.357 sec. test_loops : 0.216 sec. test_ifelse : 0.278 sec. -------------------------------------- Total time: : 1.097 sec. </pre>
Output for 7.3.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.11 Platform : Linux -------------------------------------- test_math : 0.229 sec. test_stringmanipulation : 0.345 sec. test_loops : 0.215 sec. test_ifelse : 0.256 sec. -------------------------------------- Total time: : 1.045 sec. </pre>
Output for 7.3.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.10 Platform : Linux -------------------------------------- test_math : 0.235 sec. test_stringmanipulation : 0.349 sec. test_loops : 0.216 sec. test_ifelse : 0.255 sec. -------------------------------------- Total time: : 1.055 sec. </pre>
Output for 7.3.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.9 Platform : Linux -------------------------------------- test_math : 0.228 sec. test_stringmanipulation : 0.347 sec. test_loops : 0.216 sec. test_ifelse : 0.264 sec. -------------------------------------- Total time: : 1.055 sec. </pre>
Output for 7.3.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.8 Platform : Linux -------------------------------------- test_math : 0.229 sec. test_stringmanipulation : 0.340 sec. test_loops : 0.216 sec. test_ifelse : 0.264 sec. -------------------------------------- Total time: : 1.049 sec. </pre>
Output for 7.3.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.7 Platform : Linux -------------------------------------- test_math : 0.232 sec. test_stringmanipulation : 0.346 sec. test_loops : 0.216 sec. test_ifelse : 0.260 sec. -------------------------------------- Total time: : 1.054 sec. </pre>
Output for 7.3.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.6 Platform : Linux -------------------------------------- test_math : 0.227 sec. test_stringmanipulation : 0.343 sec. test_loops : 0.231 sec. test_ifelse : 0.268 sec. -------------------------------------- Total time: : 1.069 sec. </pre>
Output for 7.3.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.5 Platform : Linux -------------------------------------- test_math : 0.231 sec. test_stringmanipulation : 0.355 sec. test_loops : 0.217 sec. test_ifelse : 0.266 sec. -------------------------------------- Total time: : 1.069 sec. </pre>
Output for 7.3.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.4 Platform : Linux -------------------------------------- test_math : 0.268 sec. test_stringmanipulation : 0.390 sec. test_loops : 0.236 sec. test_ifelse : 0.293 sec. -------------------------------------- Total time: : 1.187 sec. </pre>
Output for 7.3.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.3 Platform : Linux -------------------------------------- test_math : 0.223 sec. test_stringmanipulation : 0.334 sec. test_loops : 0.217 sec. test_ifelse : 0.268 sec. -------------------------------------- Total time: : 1.042 sec. </pre>
Output for 7.3.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.2 Platform : Linux -------------------------------------- test_math : 0.224 sec. test_stringmanipulation : 0.339 sec. test_loops : 0.219 sec. test_ifelse : 0.267 sec. -------------------------------------- Total time: : 1.049 sec. </pre>
Output for 7.3.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.1 Platform : Linux -------------------------------------- test_math : 0.246 sec. test_stringmanipulation : 0.342 sec. test_loops : 0.217 sec. test_ifelse : 0.269 sec. -------------------------------------- Total time: : 1.074 sec. </pre>
Output for 7.3.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.0 Platform : Linux -------------------------------------- test_math : 0.227 sec. test_stringmanipulation : 0.342 sec. test_loops : 0.217 sec. test_ifelse : 0.264 sec. -------------------------------------- Total time: : 1.05 sec. </pre>
Output for 7.2.24
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.24 Platform : Linux -------------------------------------- test_math : 0.266 sec. test_stringmanipulation : 0.407 sec. test_loops : 0.316 sec. test_ifelse : 0.258 sec. -------------------------------------- Total time: : 1.247 sec. </pre>
Output for 7.2.23
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.23 Platform : Linux -------------------------------------- test_math : 0.270 sec. test_stringmanipulation : 0.412 sec. test_loops : 0.230 sec. test_ifelse : 0.266 sec. -------------------------------------- Total time: : 1.178 sec. </pre>
Output for 7.2.22
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.22 Platform : Linux -------------------------------------- test_math : 0.269 sec. test_stringmanipulation : 0.408 sec. test_loops : 0.227 sec. test_ifelse : 0.261 sec. -------------------------------------- Total time: : 1.165 sec. </pre>
Output for 7.2.21
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.21 Platform : Linux -------------------------------------- test_math : 0.261 sec. test_stringmanipulation : 0.408 sec. test_loops : 0.228 sec. test_ifelse : 0.273 sec. -------------------------------------- Total time: : 1.17 sec. </pre>
Output for 7.2.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.20 Platform : Linux -------------------------------------- test_math : 0.274 sec. test_stringmanipulation : 0.409 sec. test_loops : 0.227 sec. test_ifelse : 0.261 sec. -------------------------------------- Total time: : 1.171 sec. </pre>
Output for 7.2.19
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.19 Platform : Linux -------------------------------------- test_math : 0.293 sec. test_stringmanipulation : 0.421 sec. test_loops : 0.238 sec. test_ifelse : 0.245 sec. -------------------------------------- Total time: : 1.197 sec. </pre>
Output for 7.2.18
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.18 Platform : Linux -------------------------------------- test_math : 0.272 sec. test_stringmanipulation : 0.414 sec. test_loops : 0.228 sec. test_ifelse : 0.234 sec. -------------------------------------- Total time: : 1.148 sec. </pre>
Output for 7.2.17
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.17 Platform : Linux -------------------------------------- test_math : 0.267 sec. test_stringmanipulation : 0.405 sec. test_loops : 0.227 sec. test_ifelse : 0.233 sec. -------------------------------------- Total time: : 1.132 sec. </pre>
Output for 7.2.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.16 Platform : Linux -------------------------------------- test_math : 0.268 sec. test_stringmanipulation : 0.403 sec. test_loops : 0.227 sec. test_ifelse : 0.233 sec. -------------------------------------- Total time: : 1.131 sec. </pre>
Output for 7.2.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.15 Platform : Linux -------------------------------------- test_math : 0.306 sec. test_stringmanipulation : 0.455 sec. test_loops : 0.249 sec. test_ifelse : 0.298 sec. -------------------------------------- Total time: : 1.308 sec. </pre>
Output for 7.2.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.14 Platform : Linux -------------------------------------- test_math : 0.263 sec. test_stringmanipulation : 0.405 sec. test_loops : 0.228 sec. test_ifelse : 0.263 sec. -------------------------------------- Total time: : 1.159 sec. </pre>
Output for 7.2.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.13 Platform : Linux -------------------------------------- test_math : 0.302 sec. test_stringmanipulation : 0.456 sec. test_loops : 0.251 sec. test_ifelse : 0.293 sec. -------------------------------------- Total time: : 1.302 sec. </pre>
Output for 7.2.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.12 Platform : Linux -------------------------------------- test_math : 0.267 sec. test_stringmanipulation : 0.407 sec. test_loops : 0.228 sec. test_ifelse : 0.231 sec. -------------------------------------- Total time: : 1.133 sec. </pre>
Output for 7.2.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.11 Platform : Linux -------------------------------------- test_math : 0.264 sec. test_stringmanipulation : 0.400 sec. test_loops : 0.227 sec. test_ifelse : 0.261 sec. -------------------------------------- Total time: : 1.152 sec. </pre>
Output for 7.2.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.10 Platform : Linux -------------------------------------- test_math : 0.267 sec. test_stringmanipulation : 0.413 sec. test_loops : 0.227 sec. test_ifelse : 0.261 sec. -------------------------------------- Total time: : 1.168 sec. </pre>
Output for 7.2.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.9 Platform : Linux -------------------------------------- test_math : 0.263 sec. test_stringmanipulation : 0.400 sec. test_loops : 0.227 sec. test_ifelse : 0.261 sec. -------------------------------------- Total time: : 1.151 sec. </pre>
Output for 7.2.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.8 Platform : Linux -------------------------------------- test_math : 0.261 sec. test_stringmanipulation : 0.404 sec. test_loops : 0.227 sec. test_ifelse : 0.262 sec. -------------------------------------- Total time: : 1.154 sec. </pre>
Output for 7.2.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.7 Platform : Linux -------------------------------------- test_math : 0.272 sec. test_stringmanipulation : 0.403 sec. test_loops : 0.227 sec. test_ifelse : 0.263 sec. -------------------------------------- Total time: : 1.165 sec. </pre>
Output for 7.2.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.6 Platform : Linux -------------------------------------- test_math : 0.270 sec. test_stringmanipulation : 0.402 sec. test_loops : 0.228 sec. test_ifelse : 0.234 sec. -------------------------------------- Total time: : 1.134 sec. </pre>
Output for 7.2.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.5 Platform : Linux -------------------------------------- test_math : 0.352 sec. test_stringmanipulation : 0.418 sec. test_loops : 0.229 sec. test_ifelse : 0.263 sec. -------------------------------------- Total time: : 1.262 sec. </pre>
Output for 7.2.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4 Platform : Linux -------------------------------------- test_math : 0.273 sec. test_stringmanipulation : 0.419 sec. test_loops : 0.290 sec. test_ifelse : 0.234 sec. -------------------------------------- Total time: : 1.216 sec. </pre>
Output for 7.2.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3 Platform : Linux -------------------------------------- test_math : 0.261 sec. test_stringmanipulation : 0.408 sec. test_loops : 0.228 sec. test_ifelse : 0.239 sec. -------------------------------------- Total time: : 1.136 sec. </pre>
Output for 7.2.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.2 Platform : Linux -------------------------------------- test_math : 0.299 sec. test_stringmanipulation : 0.461 sec. test_loops : 0.251 sec. test_ifelse : 0.295 sec. -------------------------------------- Total time: : 1.306 sec. </pre>
Output for 7.2.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.1 Platform : Linux -------------------------------------- test_math : 0.268 sec. test_stringmanipulation : 0.403 sec. test_loops : 0.254 sec. test_ifelse : 0.264 sec. -------------------------------------- Total time: : 1.189 sec. </pre>
Output for 7.2.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.261 sec. test_stringmanipulation : 0.418 sec. test_loops : 0.228 sec. test_ifelse : 0.261 sec. -------------------------------------- Total time: : 1.168 sec. </pre>
Output for 7.1.33
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.33 Platform : Linux -------------------------------------- test_math : 0.431 sec. test_stringmanipulation : 0.606 sec. test_loops : 0.590 sec. test_ifelse : 0.508 sec. -------------------------------------- Total time: : 2.135 sec. </pre>
Output for 7.1.32
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.32 Platform : Linux -------------------------------------- test_math : 0.376 sec. test_stringmanipulation : 0.538 sec. test_loops : 0.582 sec. test_ifelse : 0.479 sec. -------------------------------------- Total time: : 1.975 sec. </pre>
Output for 7.1.31
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.31 Platform : Linux -------------------------------------- test_math : 0.368 sec. test_stringmanipulation : 0.531 sec. test_loops : 0.552 sec. test_ifelse : 0.478 sec. -------------------------------------- Total time: : 1.929 sec. </pre>
Output for 7.1.30
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.30 Platform : Linux -------------------------------------- test_math : 0.376 sec. test_stringmanipulation : 0.533 sec. test_loops : 0.554 sec. test_ifelse : 0.472 sec. -------------------------------------- Total time: : 1.935 sec. </pre>
Output for 7.1.29
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.29 Platform : Linux -------------------------------------- test_math : 0.374 sec. test_stringmanipulation : 0.542 sec. test_loops : 0.557 sec. test_ifelse : 0.472 sec. -------------------------------------- Total time: : 1.945 sec. </pre>
Output for 7.1.28
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.28 Platform : Linux -------------------------------------- test_math : 0.423 sec. test_stringmanipulation : 0.606 sec. test_loops : 0.589 sec. test_ifelse : 0.483 sec. -------------------------------------- Total time: : 2.101 sec. </pre>
Output for 7.1.27
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.27 Platform : Linux -------------------------------------- test_math : 0.368 sec. test_stringmanipulation : 0.533 sec. test_loops : 0.561 sec. test_ifelse : 0.479 sec. -------------------------------------- Total time: : 1.941 sec. </pre>
Output for 7.1.26
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.26 Platform : Linux -------------------------------------- test_math : 0.382 sec. test_stringmanipulation : 0.536 sec. test_loops : 0.556 sec. test_ifelse : 0.480 sec. -------------------------------------- Total time: : 1.954 sec. </pre>
Output for 7.1.25
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.25 Platform : Linux -------------------------------------- test_math : 0.375 sec. test_stringmanipulation : 0.536 sec. test_loops : 0.554 sec. test_ifelse : 0.474 sec. -------------------------------------- Total time: : 1.939 sec. </pre>
Output for 7.1.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.247 sec. test_stringmanipulation : 0.322 sec. test_loops : 0.248 sec. test_ifelse : 0.155 sec. -------------------------------------- Total time: : 0.972 sec. </pre>
Output for 7.1.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 : 0.300 sec. test_stringmanipulation : 0.326 sec. test_loops : 0.211 sec. test_ifelse : 0.146 sec. -------------------------------------- Total time: : 0.983 sec. </pre>
Output for 7.1.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 : 0.289 sec. test_stringmanipulation : 0.322 sec. test_loops : 0.215 sec. test_ifelse : 0.144 sec. -------------------------------------- Total time: : 0.97 sec. </pre>
Output for 7.1.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 : 0.241 sec. test_stringmanipulation : 0.325 sec. test_loops : 0.209 sec. test_ifelse : 0.254 sec. -------------------------------------- Total time: : 1.029 sec. </pre>
Output for 7.0.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 : 0.303 sec. test_stringmanipulation : 0.397 sec. test_loops : 0.286 sec. test_ifelse : 0.168 sec. -------------------------------------- Total time: : 1.154 sec. </pre>
Output for 7.0.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : -0.059 sec. test_stringmanipulation : -0.325 sec. test_loops : -0.192 sec. test_ifelse : 1.667 sec. -------------------------------------- Total time: : 1.091 sec. </pre>
Output for 7.0.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 : 0.263 sec. test_stringmanipulation : 0.344 sec. test_loops : 0.195 sec. test_ifelse : 0.115 sec. -------------------------------------- Total time: : 0.917 sec. </pre>
Output for 7.0.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.262 sec. test_stringmanipulation : 0.318 sec. test_loops : 0.183 sec. test_ifelse : 0.136 sec. -------------------------------------- Total time: : 0.899 sec. </pre>
Output for 7.0.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.300 sec. test_stringmanipulation : 0.369 sec. test_loops : 0.206 sec. test_ifelse : 0.137 sec. -------------------------------------- Total time: : 1.012 sec. </pre>
Output for 7.0.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.288 sec. test_stringmanipulation : 0.384 sec. test_loops : 0.217 sec. test_ifelse : 0.121 sec. -------------------------------------- Total time: : 1.01 sec. </pre>
Output for 7.0.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.269 sec. test_stringmanipulation : 0.342 sec. test_loops : 0.215 sec. test_ifelse : 0.135 sec. -------------------------------------- Total time: : 0.961 sec. </pre>
Output for 7.0.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 : 0.300 sec. test_stringmanipulation : 0.341 sec. test_loops : 0.223 sec. test_ifelse : 0.142 sec. -------------------------------------- Total time: : 1.006 sec. </pre>
Output for 7.0.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 : 0.269 sec. test_stringmanipulation : 0.348 sec. test_loops : 0.167 sec. test_ifelse : 0.116 sec. -------------------------------------- Total time: : 0.9 sec. </pre>
Output for 7.0.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 : 0.299 sec. test_stringmanipulation : 0.342 sec. test_loops : 0.196 sec. test_ifelse : 0.138 sec. -------------------------------------- Total time: : 0.975 sec. </pre>
Output for 7.0.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 : 0.285 sec. test_stringmanipulation : 0.342 sec. test_loops : 0.199 sec. test_ifelse : 0.123 sec. -------------------------------------- Total time: : 0.949 sec. </pre>
Output for 7.0.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.232 sec. test_stringmanipulation : 0.307 sec. test_loops : 0.173 sec. test_ifelse : 0.121 sec. -------------------------------------- Total time: : 0.833 sec. </pre>
Output for 5.6.28
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 5.6.28 Platform : Linux -------------------------------------- test_math : -0.467 sec. test_stringmanipulation : 1.227 sec. test_loops : 1.393 sec.
Process exited with code 137.
Output for 5.6.24
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.898 sec. test_stringmanipulation : 0.713 sec. test_loops : 0.547 sec.
Process exited with code 137.
Output for 5.6.23
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.824 sec. test_stringmanipulation : 0.858 sec. test_loops : 0.659 sec.
Process exited with code 137.
Output for 5.6.22
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.766 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.580 sec. test_ifelse : 0.319 sec. -------------------------------------- Total time: : 2.387 sec. </pre>
Output for 5.6.21
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.918 sec. test_stringmanipulation : 0.715 sec. test_loops : 0.541 sec.
Process exited with code 137.
Output for 5.6.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.911 sec. test_stringmanipulation : 0.721 sec. test_loops : 0.571 sec.
Process exited with code 137.
Output for 5.6.19
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.818 sec. test_stringmanipulation : 0.759 sec. test_loops : 0.571 sec.
Process exited with code 137.
Output for 5.6.18
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.834 sec. test_stringmanipulation : 0.725 sec. test_loops : 0.605 sec.
Process exited with code 137.
Output for 5.6.17
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.807 sec. test_stringmanipulation : 0.714 sec. test_loops : 0.542 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.386 sec. </pre>
Output for 5.6.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.856 sec. test_stringmanipulation : 0.718 sec. test_loops : 0.601 sec.
Process exited with code 137.
Output for 5.6.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.798 sec. test_stringmanipulation : 0.713 sec. test_loops : 0.544 sec. test_ifelse : 0.322 sec. -------------------------------------- Total time: : 2.377 sec. </pre>
Output for 5.6.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.782 sec. test_stringmanipulation : 0.712 sec. test_loops : 0.542 sec. test_ifelse : 0.332 sec. -------------------------------------- Total time: : 2.368 sec. </pre>
Output for 5.6.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.840 sec. test_stringmanipulation : 0.861 sec. test_loops : 0.638 sec.
Process exited with code 137.
Output for 5.6.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.940 sec. test_stringmanipulation : 0.714 sec. test_loops : 0.541 sec.
Process exited with code 137.
Output for 5.6.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.907 sec. test_stringmanipulation : 0.714 sec. test_loops : 0.541 sec.
Process exited with code 137.
Output for 5.6.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.779 sec. test_stringmanipulation : 0.763 sec. test_loops : 0.563 sec. test_ifelse : 0.337 sec. -------------------------------------- Total time: : 2.442 sec. </pre>
Output for 5.6.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.976 sec. test_stringmanipulation : 0.703 sec. test_loops : 0.541 sec.
Process exited with code 137.
Output for 5.6.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.899 sec. test_stringmanipulation : 0.708 sec. test_loops : 0.542 sec.
Process exited with code 137.
Output for 5.6.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.892 sec. test_stringmanipulation : 0.711 sec. test_loops : 0.542 sec.
Process exited with code 137.
Output for 5.6.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.933 sec. test_stringmanipulation : 0.731 sec. test_loops : 0.541 sec.
Process exited with code 137.
Output for 5.6.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.936 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.542 sec.
Process exited with code 137.
Output for 5.6.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.784 sec. test_stringmanipulation : 0.698 sec. test_loops : 0.541 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.346 sec. </pre>
Output for 5.6.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.088 sec. test_stringmanipulation : 0.755 sec. test_loops : 0.542 sec.
Process exited with code 137.
Output for 5.6.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.947 sec. test_stringmanipulation : 0.865 sec. test_loops : 0.605 sec.
Process exited with code 137.
Output for 5.6.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.908 sec. test_stringmanipulation : 0.709 sec. test_loops : 0.542 sec.
Process exited with code 137.
Output for 5.6.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.920 sec. test_stringmanipulation : 0.721 sec. test_loops : 0.542 sec.
Process exited with code 137.
Output for 5.5.38
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 0.937 sec. test_stringmanipulation : 0.725 sec. test_loops : 0.561 sec.
Process exited with code 137.
Output for 5.5.37
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.37 Platform : Linux -------------------------------------- test_math : 0.843 sec. test_stringmanipulation : 0.727 sec. test_loops : 0.553 sec. test_ifelse : 0.319 sec. -------------------------------------- Total time: : 2.442 sec. </pre>
Output for 5.5.36
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.36 Platform : Linux -------------------------------------- test_math : 0.872 sec. test_stringmanipulation : 0.727 sec. test_loops : 0.545 sec.
Process exited with code 137.
Output for 5.5.35
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.204 sec.
Process exited with code 137.
Output for 5.5.34
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.34 Platform : Linux -------------------------------------- test_math : 0.781 sec. test_stringmanipulation : 0.723 sec. test_loops : 0.542 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.369 sec. </pre>
Output for 5.5.33
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.33 Platform : Linux -------------------------------------- test_math : 0.925 sec. test_stringmanipulation : 0.733 sec. test_loops : 0.542 sec.
Process exited with code 137.
Output for 5.5.32
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.533 sec.
Process exited with code 137.
Output for 5.5.31
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.31 Platform : Linux -------------------------------------- test_math : 0.913 sec. test_stringmanipulation : 0.725 sec. test_loops : 0.541 sec.
Process exited with code 137.
Output for 5.5.30
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.30 Platform : Linux -------------------------------------- test_math : 0.805 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.542 sec. test_ifelse : 0.324 sec. -------------------------------------- Total time: : 2.393 sec. </pre>
Output for 5.5.29
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.431 sec.
Process exited with code 137.
Output for 5.5.28
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.223 sec.
Process exited with code 137.
Output for 5.5.27
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.386 sec.
Process exited with code 137.
Output for 5.5.26
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.26 Platform : Linux -------------------------------------- test_math : 0.915 sec. test_stringmanipulation : 0.760 sec. test_loops : 0.541 sec.
Process exited with code 137.
Output for 5.5.25
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.722 sec.
Process exited with code 137.
Output for 5.5.24
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.24 Platform : Linux -------------------------------------- test_math : 0.808 sec. test_stringmanipulation : 0.775 sec. test_loops : 0.569 sec.
Process exited with code 137.
Output for 5.5.23
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.23 Platform : Linux -------------------------------------- test_math : 0.744 sec. test_stringmanipulation : 0.719 sec. test_loops : 0.541 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.327 sec. </pre>
Output for 5.5.22
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.22 Platform : Linux -------------------------------------- test_math : 0.923 sec. test_stringmanipulation : 0.720 sec. test_loops : 0.542 sec.
Process exited with code 137.
Output for 5.5.21
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.21 Platform : Linux -------------------------------------- test_math : 0.904 sec. test_stringmanipulation : 0.747 sec. test_loops : 0.542 sec.
Process exited with code 137.
Output for 5.5.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.20 Platform : Linux -------------------------------------- test_math : 0.922 sec. test_stringmanipulation : 0.740 sec. test_loops : 0.542 sec.
Process exited with code 137.
Output for 5.5.19
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.19 Platform : Linux -------------------------------------- test_math : 0.982 sec. test_stringmanipulation : 0.884 sec.
Process exited with code 137.
Output for 5.5.18
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.18 Platform : Linux -------------------------------------- test_math : 0.804 sec. test_stringmanipulation : 0.790 sec. test_loops : 0.575 sec.
Process exited with code 137.
Output for 5.5.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.16 Platform : Linux -------------------------------------- test_math : 0.881 sec. test_stringmanipulation : 0.729 sec. test_loops : 0.560 sec.
Process exited with code 137.
Output for 5.5.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.15 Platform : Linux -------------------------------------- test_math : 0.799 sec. test_stringmanipulation : 0.715 sec. test_loops : 0.541 sec. test_ifelse : 0.322 sec. -------------------------------------- Total time: : 2.377 sec. </pre>
Output for 5.5.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.14 Platform : Linux -------------------------------------- test_math : 0.877 sec. test_stringmanipulation : 0.853 sec. test_loops : 0.590 sec.
Process exited with code 137.
Output for 5.5.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.499 sec.
Process exited with code 137.
Output for 5.5.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.474 sec.
Process exited with code 137.
Output for 5.5.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.549 sec.
Process exited with code 137.
Output for 5.5.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 2.130 sec.
Process exited with code 137.
Output for 5.5.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.9 Platform : Linux -------------------------------------- test_math : 1.045 sec. test_stringmanipulation : 0.793 sec. test_loops : 0.542 sec.
Process exited with code 137.
Output for 5.5.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.8 Platform : Linux -------------------------------------- test_math : 1.001 sec. test_stringmanipulation : 0.856 sec.
Process exited with code 137.
Output for 5.5.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.7 Platform : Linux -------------------------------------- test_math : 0.932 sec. test_stringmanipulation : 0.884 sec. test_loops : 0.613 sec.
Process exited with code 137.
Output for 5.5.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.772 sec.
Process exited with code 137.
Output for 5.5.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.5 Platform : Linux -------------------------------------- test_math : 0.779 sec. test_stringmanipulation : 0.717 sec. test_loops : 0.541 sec. test_ifelse : 0.322 sec. -------------------------------------- Total time: : 2.359 sec. </pre>
Output for 5.5.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.630 sec.
Process exited with code 137.
Output for 5.5.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3 Platform : Linux -------------------------------------- test_math : 0.827 sec. test_stringmanipulation : 0.720 sec. test_loops : 0.557 sec. test_ifelse : 0.322 sec. -------------------------------------- Total time: : 2.426 sec. </pre>
Output for 5.5.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.2 Platform : Linux -------------------------------------- test_math : 0.774 sec. test_stringmanipulation : 0.717 sec. test_loops : 0.541 sec. test_ifelse : 0.322 sec. -------------------------------------- Total time: : 2.354 sec. </pre>
Output for 5.5.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.1 Platform : Linux -------------------------------------- test_math : 0.890 sec. test_stringmanipulation : 0.720 sec. test_loops : 0.585 sec.
Process exited with code 137.
Output for 5.5.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.0 Platform : Linux -------------------------------------- test_math : 0.926 sec. test_stringmanipulation : 0.727 sec. test_loops : 0.557 sec.
Process exited with code 137.
Output for 5.4.45
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.45 Platform : Linux -------------------------------------- test_math : 0.893 sec. test_stringmanipulation : 0.707 sec. test_loops : 0.551 sec.
Process exited with code 137.
Output for 5.4.44
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.44 Platform : Linux -------------------------------------- test_math : 0.821 sec. test_stringmanipulation : 0.707 sec. test_loops : 0.552 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.405 sec. </pre>
Output for 5.4.43
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.992 sec.
Process exited with code 137.
Output for 5.4.42
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.42 Platform : Linux -------------------------------------- test_math : 0.968 sec. test_stringmanipulation : 0.781 sec. test_loops : 0.588 sec.
Process exited with code 137.
Output for 5.4.41
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.379 sec.
Process exited with code 137.
Output for 5.4.40
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.861 sec.
Process exited with code 137.
Output for 5.4.39
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.39 Platform : Linux -------------------------------------- test_math : 0.858 sec. test_stringmanipulation : 0.703 sec. test_loops : 0.552 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.438 sec. </pre>
Output for 5.4.38
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.38 Platform : Linux -------------------------------------- test_math : 0.827 sec. test_stringmanipulation : 0.834 sec. test_loops : 0.617 sec.
Process exited with code 137.
Output for 5.4.37
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.37 Platform : Linux -------------------------------------- test_math : 0.838 sec. test_stringmanipulation : 0.796 sec. test_loops : 0.595 sec.
Process exited with code 137.
Output for 5.4.36
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.472 sec.
Process exited with code 137.
Output for 5.4.35
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.376 sec.
Process exited with code 137.
Output for 5.4.34
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.565 sec.
Process exited with code 137.
Output for 5.4.32
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.32 Platform : Linux -------------------------------------- test_math : 0.916 sec. test_stringmanipulation : 0.727 sec. test_loops : 0.552 sec.
Process exited with code 137.
Output for 5.4.31
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.31 Platform : Linux -------------------------------------- test_math : 0.955 sec. test_stringmanipulation : 0.709 sec. test_loops : 0.552 sec.
Process exited with code 137.
Output for 5.4.30
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.653 sec.
Process exited with code 137.
Output for 5.4.29
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.29 Platform : Linux -------------------------------------- test_math : 0.897 sec. test_stringmanipulation : 0.713 sec. test_loops : 0.551 sec.
Process exited with code 137.
Output for 5.4.28
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.28 Platform : Linux -------------------------------------- test_math : 0.746 sec. test_stringmanipulation : 0.699 sec. test_loops : 0.552 sec. test_ifelse : 0.326 sec. -------------------------------------- Total time: : 2.323 sec. </pre>
Output for 5.4.27
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.526 sec.
Process exited with code 137.
Output for 5.4.26
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.26 Platform : Linux -------------------------------------- test_math : 0.898 sec. test_stringmanipulation : 0.867 sec. test_loops : 0.614 sec.
Process exited with code 137.
Output for 5.4.25
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.509 sec.
Process exited with code 137.
Output for 5.4.24
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.24 Platform : Linux -------------------------------------- test_math : 0.948 sec. test_stringmanipulation : 0.715 sec. test_loops : 0.551 sec.
Process exited with code 137.
Output for 5.4.23
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 2.032 sec.
Process exited with code 137.
Output for 5.4.22
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.510 sec.
Process exited with code 137.
Output for 5.4.21
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.21 Platform : Linux -------------------------------------- test_math : 0.889 sec. test_stringmanipulation : 0.711 sec. test_loops : 0.552 sec.
Process exited with code 137.
Output for 5.4.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.327 sec.
Process exited with code 137.
Output for 5.4.19
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.19 Platform : Linux -------------------------------------- test_math : 0.850 sec. test_stringmanipulation : 0.720 sec. test_loops : 0.551 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.446 sec. </pre>
Output for 5.4.18
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.569 sec.
Process exited with code 137.
Output for 5.4.17
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.17 Platform : Linux -------------------------------------- test_math : 0.917 sec. test_stringmanipulation : 0.720 sec. test_loops : 0.548 sec.
Process exited with code 137.
Output for 5.4.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.16 Platform : Linux -------------------------------------- test_math : 0.779 sec. test_stringmanipulation : 0.711 sec. test_loops : 0.619 sec.
Process exited with code 137.
Output for 5.4.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.15 Platform : Linux -------------------------------------- test_math : 0.777 sec. test_stringmanipulation : 0.705 sec. test_loops : 0.558 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.365 sec. </pre>
Output for 5.4.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.14 Platform : Linux -------------------------------------- test_math : 0.817 sec. test_stringmanipulation : 0.719 sec. test_loops : 0.548 sec.
Process exited with code 137.
Output for 5.4.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.13 Platform : Linux -------------------------------------- test_math : 0.926 sec. test_stringmanipulation : 0.739 sec. test_loops : 0.549 sec.
Process exited with code 137.
Output for 5.4.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.12 Platform : Linux -------------------------------------- test_math : 0.932 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.549 sec.
Process exited with code 137.
Output for 5.4.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.247 sec.
Process exited with code 137.
Output for 5.4.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.10 Platform : Linux -------------------------------------- test_math : 0.762 sec. test_stringmanipulation : 0.709 sec. test_loops : 0.548 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.344 sec. </pre>
Output for 5.4.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.9 Platform : Linux -------------------------------------- test_math : 0.872 sec. test_stringmanipulation : 0.713 sec. test_loops : 0.548 sec.
Process exited with code 137.
Output for 5.4.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.8 Platform : Linux -------------------------------------- test_math : 0.773 sec. test_stringmanipulation : 0.706 sec. test_loops : 0.604 sec. test_ifelse : 0.324 sec. -------------------------------------- Total time: : 2.407 sec. </pre>
Output for 5.4.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.7 Platform : Linux -------------------------------------- test_math : 0.891 sec. test_stringmanipulation : 0.713 sec. test_loops : 0.548 sec.
Process exited with code 137.
Output for 5.4.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.549 sec.
Process exited with code 137.
Output for 5.4.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.5 Platform : Linux -------------------------------------- test_math : 0.951 sec. test_stringmanipulation : 0.729 sec. test_loops : 0.548 sec.
Process exited with code 137.
Output for 5.4.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.459 sec.
Process exited with code 137.
Output for 5.4.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.3 Platform : Linux -------------------------------------- test_math : 0.801 sec. test_stringmanipulation : 0.702 sec. test_loops : 0.552 sec. test_ifelse : 0.327 sec. -------------------------------------- Total time: : 2.382 sec. </pre>
Output for 5.4.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.2 Platform : Linux -------------------------------------- test_math : 0.811 sec. test_stringmanipulation : 0.704 sec. test_loops : 0.548 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.388 sec. </pre>
Output for 5.4.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.1 Platform : Linux -------------------------------------- test_math : 0.884 sec. test_stringmanipulation : 0.708 sec. test_loops : 0.548 sec.
Process exited with code 137.
Output for 5.4.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.4.0 Platform : Linux -------------------------------------- test_math : 0.813 sec. test_stringmanipulation : 0.713 sec. test_loops : 0.558 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.407 sec. </pre>
Output for 5.3.29
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.29 Platform : Linux -------------------------------------- test_math : 0.988 sec. test_stringmanipulation : 0.774 sec.
Process exited with code 137.
Output for 5.3.28
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.28 Platform : Linux -------------------------------------- test_math : 0.929 sec. test_stringmanipulation : 0.750 sec. test_loops : 0.698 sec.
Process exited with code 137.
Output for 5.3.27
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.27 Platform : Linux -------------------------------------- test_math : 0.816 sec. test_stringmanipulation : 0.768 sec. test_loops : 0.718 sec.
Process exited with code 137.
Output for 5.3.26
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.26 Platform : Linux -------------------------------------- test_math : 0.905 sec. test_stringmanipulation : 0.766 sec. test_loops : 0.708 sec.
Process exited with code 137.
Output for 5.3.25
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.414 sec.
Process exited with code 137.
Output for 5.3.24
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.355 sec.
Process exited with code 137.
Output for 5.3.23
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.23 Platform : Linux -------------------------------------- test_math : 0.906 sec. test_stringmanipulation : 0.764 sec. test_loops : 0.703 sec.
Process exited with code 137.
Output for 5.3.22
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.22 Platform : Linux -------------------------------------- test_math : 0.934 sec. test_stringmanipulation : 0.948 sec.
Process exited with code 137.
Output for 5.3.21
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.21 Platform : Linux -------------------------------------- test_math : 0.944 sec. test_stringmanipulation : 0.745 sec. test_loops : 0.691 sec.
Process exited with code 137.
Output for 5.3.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.20 Platform : Linux -------------------------------------- test_math : 0.941 sec. test_stringmanipulation : 0.741 sec. test_loops : 0.691 sec.
Process exited with code 137.
Output for 5.3.19
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.19 Platform : Linux -------------------------------------- test_math : 0.845 sec. test_stringmanipulation : 0.763 sec. test_loops : 0.695 sec.
Process exited with code 137.
Output for 5.3.18
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 2.124 sec.
Process exited with code 137.
Output for 5.3.17
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.558 sec.
Process exited with code 137.
Output for 5.3.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.933 sec.
Process exited with code 137.
Output for 5.3.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.15 Platform : Linux -------------------------------------- test_math : 0.844 sec. test_stringmanipulation : 0.751 sec.
Process exited with code 137.
Output for 5.3.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.14 Platform : Linux -------------------------------------- test_math : 0.972 sec. test_stringmanipulation : 0.825 sec.
Process exited with code 137.
Output for 5.3.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.604 sec.
Process exited with code 137.
Output for 5.3.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.444 sec.
Process exited with code 137.
Output for 5.3.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.358 sec.
Process exited with code 137.
Output for 5.3.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.10 Platform : Linux -------------------------------------- test_math : 0.933 sec. test_stringmanipulation : 0.740 sec. test_loops : 0.695 sec.
Process exited with code 137.
Output for 5.3.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.9 Platform : Linux -------------------------------------- test_math : 0.949 sec. test_stringmanipulation : 0.744 sec.
Process exited with code 137.
Output for 5.3.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.8 Platform : Linux -------------------------------------- test_math : 0.912 sec. test_stringmanipulation : 0.743 sec. test_loops : 0.728 sec.
Process exited with code 137.
Output for 5.3.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.482 sec.
Process exited with code 137.
Output for 5.3.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.6 Platform : Linux -------------------------------------- test_math : 0.959 sec. test_stringmanipulation : 0.738 sec. test_loops : 0.722 sec.
Process exited with code 137.
Output for 5.3.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.5 Platform : Linux -------------------------------------- test_math : 0.904 sec. test_stringmanipulation : 0.748 sec. test_loops : 0.724 sec.
Process exited with code 137.
Output for 5.3.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.440 sec.
Process exited with code 137.
Output for 5.3.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.468 sec.
Process exited with code 137.
Output for 5.3.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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.3.2 Platform : Linux -------------------------------------- test_math : 0.858 sec. test_stringmanipulation : 0.730 sec. test_loops : 0.728 sec.
Process exited with code 137.
Output for 5.3.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.855 sec.
Process exited with code 137.
Output for 5.3.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:25:44 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 -------------------------------------- test_math : 1.743 sec.
Process exited with code 137.

preferences:
190.25 ms | 401 KiB | 207 Q