3v4l.org

run code in 300+ PHP versions simultaneously
<?php $_SERVER['SERVER_NAME'] = 'test'; $_SERVER['SERVER_ADDR'] = 'localhost'; /* ########################################################################## # PHP Benchmark Performance Script # # © 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 # # # ########################################################################## */ function test_Math($count = 140000) { $time_start = microtime(true); $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(microtime(true) - $time_start, 3); } function test_StringManipulation($count = 130000) { $time_start = microtime(true); $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(microtime(true) - $time_start, 3); } function test_Loops($count = 19000000) { $time_start = microtime(true); for($i = 0; $i < $count; ++$i); $i = 0; while($i < $count) ++$i; return number_format(microtime(true) - $time_start, 3); } function test_IfElse($count = 9000000) { $time_start = microtime(true); for ($i=0; $i < $count; $i++) { if ($i == -1) { } elseif ($i == -2) { } else if ($i == -3) { } } return number_format(microtime(true) - $time_start, 3); } $total = 0; $functions = get_defined_functions(); $line = str_pad("-",38,"-"); echo "<pre>$line\n|".str_pad("PHP BENCHMARK SCRIPT",36," ",STR_PAD_BOTH)."|\n$line\nStart : ".date("Y-m-d H:i:s")."\nServer : {$_SERVER['SERVER_NAME']}@{$_SERVER['SERVER_ADDR']}\nPHP version : ".PHP_VERSION."\nPlatform : ".PHP_OS. "\n$line\n"; foreach ($functions['user'] as $user) { if (preg_match('/^test_/', $user)) { $total += $result = $user(); echo str_pad($user, 25) . " : " . $result ." sec.\n"; } } echo str_pad("-", 38, "-") . "\n" . str_pad("Total time:", 25) . " : " . $total ." sec.</pre>"; ?>
Output for 7.2.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.2.0 Platform : Linux -------------------------------------- test_math : 0.262 sec. test_stringmanipulation : 0.308 sec. test_loops : 0.214 sec. test_ifelse : 0.153 sec. -------------------------------------- Total time: : 0.937 sec.</pre>
Output for 7.1.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.1.7 Platform : Linux -------------------------------------- test_math : 0.264 sec. test_stringmanipulation : 0.379 sec. test_loops : 0.218 sec. test_ifelse : 0.152 sec. -------------------------------------- Total time: : 1.013 sec.</pre>
Output for 7.1.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.1.6 Platform : Linux -------------------------------------- test_math : 0.241 sec. test_stringmanipulation : 0.322 sec. test_loops : 0.196 sec. test_ifelse : 0.144 sec. -------------------------------------- Total time: : 0.903 sec.</pre>
Output for 7.1.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.1.5 Platform : Linux -------------------------------------- test_math : 0.247 sec. test_stringmanipulation : 0.349 sec. test_loops : 0.223 sec. test_ifelse : 0.158 sec. -------------------------------------- Total time: : 0.977 sec.</pre>
Output for 7.1.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.1.0 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : -0.374 sec. test_loops : -0.213 sec. test_ifelse : 1.711 sec. -------------------------------------- Total time: : 1.128 sec.</pre>
Output for 7.0.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.0.20 Platform : Linux -------------------------------------- test_math : 0.306 sec. test_stringmanipulation : 0.372 sec. test_loops : 0.250 sec. test_ifelse : 0.162 sec. -------------------------------------- Total time: : 1.09 sec.</pre>
Output for 7.0.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.0.14 Platform : Linux -------------------------------------- test_math : 0.281 sec. test_stringmanipulation : 0.330 sec. test_loops : 0.176 sec. test_ifelse : 0.361 sec. -------------------------------------- Total time: : 1.148 sec.</pre>
Output for 7.0.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.0.8 Platform : Linux -------------------------------------- test_math : 0.282 sec. test_stringmanipulation : 0.356 sec. test_loops : 0.224 sec. test_ifelse : 0.116 sec. -------------------------------------- Total time: : 0.978 sec.</pre>
Output for 7.0.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.0.7 Platform : Linux -------------------------------------- test_math : 0.285 sec. test_stringmanipulation : 0.352 sec. test_loops : 0.196 sec. test_ifelse : 0.119 sec. -------------------------------------- Total time: : 0.952 sec.</pre>
Output for 7.0.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.0.6 Platform : Linux -------------------------------------- test_math : 0.271 sec. test_stringmanipulation : 0.342 sec. test_loops : 0.228 sec. test_ifelse : 0.117 sec. -------------------------------------- Total time: : 0.958 sec.</pre>
Output for 7.0.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.0.5 Platform : Linux -------------------------------------- test_math : 0.223 sec. test_stringmanipulation : 0.284 sec. test_loops : 0.196 sec. test_ifelse : 0.121 sec. -------------------------------------- Total time: : 0.824 sec.</pre>
Output for 7.0.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.0.4 Platform : Linux -------------------------------------- test_math : 0.299 sec. test_stringmanipulation : 0.341 sec. test_loops : 0.234 sec. test_ifelse : 0.142 sec. -------------------------------------- Total time: : 1.016 sec.</pre>
Output for 7.0.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.0.3 Platform : Linux -------------------------------------- test_math : 0.230 sec. test_stringmanipulation : 0.287 sec. test_loops : 0.162 sec. test_ifelse : 0.116 sec. -------------------------------------- Total time: : 0.795 sec.</pre>
Output for 7.0.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.0.2 Platform : Linux -------------------------------------- test_math : 0.223 sec. test_stringmanipulation : 0.280 sec. test_loops : 0.157 sec. test_ifelse : 0.127 sec. -------------------------------------- Total time: : 0.787 sec.</pre>
Output for 7.0.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.0.1 Platform : Linux -------------------------------------- test_math : 0.300 sec. test_stringmanipulation : 0.304 sec. test_loops : 0.169 sec. test_ifelse : 0.122 sec. -------------------------------------- Total time: : 0.895 sec.</pre>
Output for 7.0.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 7.0.0 Platform : Linux -------------------------------------- test_math : 0.275 sec. test_stringmanipulation : 0.347 sec. test_loops : 0.195 sec. test_ifelse : 0.119 sec. -------------------------------------- Total time: : 0.936 sec.</pre>
Output for 5.6.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.28 Platform : Linux -------------------------------------- test_math : -0.297 sec. test_stringmanipulation : 1.225 sec. test_loops : 1.194 sec.
Process exited with code 137.
Output for 5.6.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.23 Platform : Linux -------------------------------------- test_math : 0.904 sec. test_stringmanipulation : 0.718 sec. test_loops : 0.559 sec.
Process exited with code 137.
Output for 5.6.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.22 Platform : Linux -------------------------------------- test_math : 0.756 sec. test_stringmanipulation : 0.718 sec. test_loops : 0.503 sec. test_ifelse : 0.319 sec. -------------------------------------- Total time: : 2.296 sec.</pre>
Output for 5.6.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.21 Platform : Linux -------------------------------------- test_math : 0.870 sec. test_stringmanipulation : 0.761 sec. test_loops : 0.509 sec.
Process exited with code 137.
Output for 5.6.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.20 Platform : Linux -------------------------------------- test_math : 0.822 sec. test_stringmanipulation : 0.715 sec. test_loops : 0.503 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.363 sec.</pre>
Output for 5.6.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.19 Platform : Linux -------------------------------------- test_math : 0.771 sec. test_stringmanipulation : 0.708 sec. test_loops : 0.503 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.305 sec.</pre>
Output for 5.6.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.18 Platform : Linux -------------------------------------- test_math : 0.899 sec. test_stringmanipulation : 0.717 sec. test_loops : 0.514 sec.
Process exited with code 137.
Output for 5.6.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.17 Platform : Linux -------------------------------------- test_math : 0.743 sec. test_stringmanipulation : 0.712 sec. test_loops : 0.504 sec. test_ifelse : 0.326 sec. -------------------------------------- Total time: : 2.285 sec.</pre>
Output for 5.6.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.16 Platform : Linux -------------------------------------- test_math : 0.904 sec. test_stringmanipulation : 0.716 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.6.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.15 Platform : Linux -------------------------------------- test_math : 0.952 sec. test_stringmanipulation : 0.766 sec. test_loops : 0.555 sec.
Process exited with code 137.
Output for 5.6.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.14 Platform : Linux -------------------------------------- test_math : 0.878 sec. test_stringmanipulation : 0.715 sec. test_loops : 0.505 sec.
Process exited with code 137.
Output for 5.6.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.13 Platform : Linux -------------------------------------- test_math : 0.743 sec. test_stringmanipulation : 0.708 sec. test_loops : 0.503 sec. test_ifelse : 0.322 sec. -------------------------------------- Total time: : 2.276 sec.</pre>
Output for 5.6.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.12 Platform : Linux -------------------------------------- test_math : 0.891 sec. test_stringmanipulation : 0.712 sec. test_loops : 0.503 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.429 sec.</pre>
Output for 5.6.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.11 Platform : Linux -------------------------------------- test_math : 0.801 sec. test_stringmanipulation : 0.710 sec. test_loops : 0.504 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.338 sec.</pre>
Output for 5.6.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.10 Platform : Linux -------------------------------------- test_math : 0.918 sec. test_stringmanipulation : 0.715 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.6.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.9 Platform : Linux -------------------------------------- test_math : 0.922 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.6.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.8 Platform : Linux -------------------------------------- test_math : 1.023 sec. test_stringmanipulation : 0.770 sec. test_loops : 0.547 sec.
Process exited with code 137.
Output for 5.6.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.7 Platform : Linux -------------------------------------- test_math : 0.735 sec. test_stringmanipulation : 0.713 sec. test_loops : 0.503 sec. test_ifelse : 0.336 sec. -------------------------------------- Total time: : 2.287 sec.</pre>
Output for 5.6.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.6 Platform : Linux -------------------------------------- test_math : 0.934 sec. test_stringmanipulation : 0.772 sec. test_loops : 0.535 sec.
Process exited with code 137.
Output for 5.6.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.5 Platform : Linux -------------------------------------- test_math : 0.883 sec. test_stringmanipulation : 0.718 sec. test_loops : 0.503 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.427 sec.</pre>
Output for 5.6.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.4 Platform : Linux -------------------------------------- test_math : 0.964 sec. test_stringmanipulation : 0.769 sec. test_loops : 0.618 sec.
Process exited with code 137.
Output for 5.6.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.3 Platform : Linux -------------------------------------- test_math : 0.916 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.511 sec.
Process exited with code 137.
Output for 5.6.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.2 Platform : Linux -------------------------------------- test_math : 0.918 sec. test_stringmanipulation : 0.726 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.1 Platform : Linux -------------------------------------- test_math : 0.924 sec. test_stringmanipulation : 0.723 sec. test_loops : 0.565 sec.
Process exited with code 137.
Output for 5.6.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.6.0 Platform : Linux -------------------------------------- test_math : 0.778 sec. test_stringmanipulation : 0.705 sec. test_loops : 0.503 sec. test_ifelse : 0.322 sec. -------------------------------------- Total time: : 2.308 sec.</pre>
Output for 5.5.37
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.37 Platform : Linux -------------------------------------- test_math : 0.753 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.539 sec. test_ifelse : 0.364 sec. -------------------------------------- Total time: : 2.38 sec.</pre>
Output for 5.5.36
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.36 Platform : Linux -------------------------------------- test_math : 1.361 sec.
Process exited with code 137.
Output for 5.5.35
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.35 Platform : Linux -------------------------------------- test_math : 0.760 sec. test_stringmanipulation : 0.728 sec. test_loops : 0.503 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.314 sec.</pre>
Output for 5.5.34
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.34 Platform : Linux -------------------------------------- test_math : 0.933 sec. test_stringmanipulation : 0.741 sec. test_loops : 0.516 sec.
Process exited with code 137.
Output for 5.5.33
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.33 Platform : Linux -------------------------------------- test_math : 1.361 sec.
Process exited with code 137.
Output for 5.5.32
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.32 Platform : Linux -------------------------------------- test_math : 0.764 sec. test_stringmanipulation : 0.723 sec. test_loops : 0.504 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.314 sec.</pre>
Output for 5.5.31
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.31 Platform : Linux -------------------------------------- test_math : 1.450 sec.
Process exited with code 137.
Output for 5.5.30
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.30 Platform : Linux -------------------------------------- test_math : 1.592 sec.
Process exited with code 137.
Output for 5.5.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.29 Platform : Linux -------------------------------------- test_math : 0.786 sec. test_stringmanipulation : 0.723 sec. test_loops : 0.507 sec. test_ifelse : 0.345 sec. -------------------------------------- Total time: : 2.361 sec.</pre>
Output for 5.5.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.28 Platform : Linux -------------------------------------- test_math : 1.493 sec.
Process exited with code 137.
Output for 5.5.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.27 Platform : Linux -------------------------------------- test_math : 0.741 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.504 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.29 sec.</pre>
Output for 5.5.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.26 Platform : Linux -------------------------------------- test_math : 0.840 sec. test_stringmanipulation : 0.725 sec. test_loops : 0.532 sec. test_ifelse : 0.336 sec. -------------------------------------- Total time: : 2.433 sec.</pre>
Output for 5.5.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.25 Platform : Linux -------------------------------------- test_math : 1.636 sec.
Process exited with code 137.
Output for 5.5.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.24 Platform : Linux -------------------------------------- test_math : 1.488 sec.
Process exited with code 137.
Output for 5.5.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.23 Platform : Linux -------------------------------------- test_math : 0.764 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.504 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.315 sec.</pre>
Output for 5.5.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.22 Platform : Linux -------------------------------------- test_math : 1.393 sec.
Process exited with code 137.
Output for 5.5.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.21 Platform : Linux -------------------------------------- test_math : 1.604 sec.
Process exited with code 137.
Output for 5.5.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.20 Platform : Linux -------------------------------------- test_math : 0.859 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.504 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.41 sec.</pre>
Output for 5.5.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.19 Platform : Linux -------------------------------------- test_math : 1.467 sec.
Process exited with code 137.
Output for 5.5.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.18 Platform : Linux -------------------------------------- test_math : 0.951 sec. test_stringmanipulation : 0.743 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.5.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.16 Platform : Linux -------------------------------------- test_math : 0.921 sec. test_stringmanipulation : 0.736 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.5.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.15 Platform : Linux -------------------------------------- test_math : 0.939 sec. test_stringmanipulation : 0.725 sec. test_loops : 0.523 sec.
Process exited with code 137.
Output for 5.5.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.14 Platform : Linux -------------------------------------- test_math : 1.214 sec.
Process exited with code 137.
Output for 5.5.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.13 Platform : Linux -------------------------------------- test_math : 1.264 sec.
Process exited with code 137.
Output for 5.5.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.12 Platform : Linux -------------------------------------- test_math : 0.914 sec. test_stringmanipulation : 0.735 sec. test_loops : 0.511 sec.
Process exited with code 137.
Output for 5.5.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.11 Platform : Linux -------------------------------------- test_math : 0.817 sec. test_stringmanipulation : 0.734 sec. test_loops : 0.514 sec. test_ifelse : 0.324 sec. -------------------------------------- Total time: : 2.389 sec.</pre>
Output for 5.5.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.10 Platform : Linux -------------------------------------- test_math : 0.944 sec. test_stringmanipulation : 0.745 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.5.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.9 Platform : Linux -------------------------------------- test_math : 0.968 sec. test_stringmanipulation : 0.716 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.5.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.8 Platform : Linux -------------------------------------- test_math : 0.900 sec. test_stringmanipulation : 0.720 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.5.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.7 Platform : Linux -------------------------------------- test_math : 1.302 sec.
Process exited with code 137.
Output for 5.5.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.6 Platform : Linux -------------------------------------- test_math : 0.846 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.503 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.394 sec.</pre>
Output for 5.5.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.5 Platform : Linux -------------------------------------- test_math : 1.250 sec.
Process exited with code 137.
Output for 5.5.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.4 Platform : Linux -------------------------------------- test_math : 0.780 sec. test_stringmanipulation : 0.723 sec. test_loops : 0.517 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.343 sec.</pre>
Output for 5.5.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.3 Platform : Linux -------------------------------------- test_math : 0.904 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.5.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.2 Platform : Linux -------------------------------------- test_math : 0.947 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.5.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.1 Platform : Linux -------------------------------------- test_math : 0.778 sec. test_stringmanipulation : 0.715 sec. test_loops : 0.531 sec. test_ifelse : 0.344 sec. -------------------------------------- Total time: : 2.368 sec.</pre>
Output for 5.5.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.5.0 Platform : Linux -------------------------------------- test_math : 1.319 sec.
Process exited with code 137.
Output for 5.4.45
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.45 Platform : Linux -------------------------------------- test_math : 0.868 sec. test_stringmanipulation : 0.707 sec. test_loops : 0.506 sec. test_ifelse : 0.326 sec. -------------------------------------- Total time: : 2.407 sec.</pre>
Output for 5.4.44
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.44 Platform : Linux -------------------------------------- test_math : 0.800 sec. test_stringmanipulation : 0.709 sec. test_loops : 0.505 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.339 sec.</pre>
Output for 5.4.43
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.43 Platform : Linux -------------------------------------- test_math : 0.783 sec. test_stringmanipulation : 0.713 sec. test_loops : 0.505 sec. test_ifelse : 0.324 sec. -------------------------------------- Total time: : 2.325 sec.</pre>
Output for 5.4.42
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.42 Platform : Linux -------------------------------------- test_math : 1.482 sec.
Process exited with code 137.
Output for 5.4.41
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.41 Platform : Linux -------------------------------------- test_math : 0.881 sec. test_stringmanipulation : 0.717 sec. test_loops : 0.505 sec. test_ifelse : 0.327 sec. -------------------------------------- Total time: : 2.43 sec.</pre>
Output for 5.4.40
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.40 Platform : Linux -------------------------------------- test_math : 0.862 sec. test_stringmanipulation : 0.701 sec. test_loops : 0.505 sec. test_ifelse : 0.326 sec. -------------------------------------- Total time: : 2.394 sec.</pre>
Output for 5.4.39
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.39 Platform : Linux -------------------------------------- test_math : 0.899 sec. test_stringmanipulation : 0.706 sec. test_loops : 0.537 sec.
Process exited with code 137.
Output for 5.4.38
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.38 Platform : Linux -------------------------------------- test_math : 0.748 sec. test_stringmanipulation : 0.714 sec. test_loops : 0.540 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.327 sec.</pre>
Output for 5.4.37
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.37 Platform : Linux -------------------------------------- test_math : 0.757 sec. test_stringmanipulation : 0.711 sec. test_loops : 0.539 sec. test_ifelse : 0.345 sec. -------------------------------------- Total time: : 2.352 sec.</pre>
Output for 5.4.36
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.36 Platform : Linux -------------------------------------- test_math : 0.775 sec. test_stringmanipulation : 0.705 sec. test_loops : 0.506 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.311 sec.</pre>
Output for 5.4.35
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.35 Platform : Linux -------------------------------------- test_math : 0.905 sec. test_stringmanipulation : 0.710 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.4.34
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.34 Platform : Linux -------------------------------------- test_math : 0.966 sec. test_stringmanipulation : 0.763 sec. test_loops : 0.535 sec.
Process exited with code 137.
Output for 5.4.32
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.32 Platform : Linux -------------------------------------- test_math : 1.604 sec.
Process exited with code 137.
Output for 5.4.31
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.31 Platform : Linux -------------------------------------- test_math : 1.183 sec.
Process exited with code 137.
Output for 5.4.30
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.30 Platform : Linux -------------------------------------- test_math : 0.868 sec. test_stringmanipulation : 0.710 sec. test_loops : 0.505 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.408 sec.</pre>
Output for 5.4.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.29 Platform : Linux -------------------------------------- test_math : 1.293 sec.
Process exited with code 137.
Output for 5.4.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.28 Platform : Linux -------------------------------------- test_math : 1.197 sec.
Process exited with code 137.
Output for 5.4.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.27 Platform : Linux -------------------------------------- test_math : 0.722 sec. test_stringmanipulation : 0.701 sec. test_loops : 0.506 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.254 sec.</pre>
Output for 5.4.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.26 Platform : Linux -------------------------------------- test_math : 0.739 sec. test_stringmanipulation : 0.726 sec. test_loops : 0.514 sec. test_ifelse : 0.346 sec. -------------------------------------- Total time: : 2.325 sec.</pre>
Output for 5.4.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.25 Platform : Linux -------------------------------------- test_math : 0.871 sec. test_stringmanipulation : 0.719 sec. test_loops : 0.521 sec.
Process exited with code 137.
Output for 5.4.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.24 Platform : Linux -------------------------------------- test_math : 0.772 sec. test_stringmanipulation : 0.711 sec. test_loops : 0.506 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.314 sec.</pre>
Output for 5.4.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.23 Platform : Linux -------------------------------------- test_math : 0.864 sec. test_stringmanipulation : 0.714 sec. test_loops : 0.506 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.409 sec.</pre>
Output for 5.4.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.22 Platform : Linux -------------------------------------- test_math : 1.217 sec.
Process exited with code 137.
Output for 5.4.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.21 Platform : Linux -------------------------------------- test_math : 0.751 sec. test_stringmanipulation : 0.723 sec. test_loops : 0.506 sec. test_ifelse : 0.326 sec. -------------------------------------- Total time: : 2.306 sec.</pre>
Output for 5.4.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.20 Platform : Linux -------------------------------------- test_math : 0.734 sec. test_stringmanipulation : 0.725 sec. test_loops : 0.505 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.289 sec.</pre>
Output for 5.4.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.19 Platform : Linux -------------------------------------- test_math : 0.765 sec. test_stringmanipulation : 0.717 sec. test_loops : 0.505 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.312 sec.</pre>
Output for 5.4.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.18 Platform : Linux -------------------------------------- test_math : 0.774 sec. test_stringmanipulation : 0.710 sec. test_loops : 0.505 sec. test_ifelse : 0.328 sec. -------------------------------------- Total time: : 2.317 sec.</pre>
Output for 5.4.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.17 Platform : Linux -------------------------------------- test_math : 1.325 sec.
Process exited with code 137.
Output for 5.4.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.16 Platform : Linux -------------------------------------- test_math : 0.749 sec. test_stringmanipulation : 0.705 sec. test_loops : 0.511 sec. test_ifelse : 0.328 sec. -------------------------------------- Total time: : 2.293 sec.</pre>
Output for 5.4.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.15 Platform : Linux -------------------------------------- test_math : 1.363 sec.
Process exited with code 137.
Output for 5.4.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.14 Platform : Linux -------------------------------------- test_math : 0.839 sec. test_stringmanipulation : 0.718 sec. test_loops : 0.506 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.386 sec.</pre>
Output for 5.4.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.13 Platform : Linux -------------------------------------- test_math : 1.220 sec.
Process exited with code 137.
Output for 5.4.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.12 Platform : Linux -------------------------------------- test_math : 0.740 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.506 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.291 sec.</pre>
Output for 5.4.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.11 Platform : Linux -------------------------------------- test_math : 1.057 sec. test_stringmanipulation : 0.770 sec.
Process exited with code 137.
Output for 5.4.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.10 Platform : Linux -------------------------------------- test_math : 1.014 sec. test_stringmanipulation : 0.771 sec. test_loops : 0.538 sec.
Process exited with code 137.
Output for 5.4.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.9 Platform : Linux -------------------------------------- test_math : 0.910 sec. test_stringmanipulation : 0.719 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.4.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.8 Platform : Linux -------------------------------------- test_math : 0.893 sec. test_stringmanipulation : 0.709 sec. test_loops : 0.505 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.432 sec.</pre>
Output for 5.4.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.7 Platform : Linux -------------------------------------- test_math : 1.288 sec.
Process exited with code 137.
Output for 5.4.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.6 Platform : Linux -------------------------------------- test_math : 1.411 sec.
Process exited with code 137.
Output for 5.4.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.5 Platform : Linux -------------------------------------- test_math : 1.364 sec.
Process exited with code 137.
Output for 5.4.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.4 Platform : Linux -------------------------------------- test_math : 0.874 sec. test_stringmanipulation : 0.701 sec. test_loops : 0.505 sec. test_ifelse : 0.326 sec. -------------------------------------- Total time: : 2.406 sec.</pre>
Output for 5.4.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.3 Platform : Linux -------------------------------------- test_math : 0.879 sec. test_stringmanipulation : 0.711 sec. test_loops : 0.505 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.42 sec.</pre>
Output for 5.4.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.2 Platform : Linux -------------------------------------- test_math : 0.740 sec. test_stringmanipulation : 0.707 sec. test_loops : 0.505 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.277 sec.</pre>
Output for 5.4.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.1 Platform : Linux -------------------------------------- test_math : 0.779 sec. test_stringmanipulation : 0.710 sec. test_loops : 0.505 sec. test_ifelse : 0.325 sec. -------------------------------------- Total time: : 2.319 sec.</pre>
Output for 5.4.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.4.0 Platform : Linux -------------------------------------- test_math : 0.747 sec. test_stringmanipulation : 0.716 sec. test_loops : 0.506 sec. test_ifelse : 0.323 sec. -------------------------------------- Total time: : 2.292 sec.</pre>
Output for 5.3.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.29 Platform : Linux -------------------------------------- test_math : 1.726 sec.
Process exited with code 137.
Output for 5.3.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.28 Platform : Linux -------------------------------------- test_math : 1.273 sec.
Process exited with code 137.
Output for 5.3.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.27 Platform : Linux -------------------------------------- test_math : 1.446 sec.
Process exited with code 137.
Output for 5.3.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.26 Platform : Linux -------------------------------------- test_math : 1.345 sec.
Process exited with code 137.
Output for 5.3.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.25 Platform : Linux -------------------------------------- test_math : 0.897 sec. test_stringmanipulation : 0.801 sec. test_loops : 0.686 sec.
Process exited with code 137.
Output for 5.3.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.24 Platform : Linux -------------------------------------- test_math : 0.932 sec. test_stringmanipulation : 0.760 sec. test_loops : 0.688 sec.
Process exited with code 137.
Output for 5.3.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.23 Platform : Linux -------------------------------------- test_math : 0.864 sec. test_stringmanipulation : 0.755 sec. test_loops : 0.687 sec.
Process exited with code 137.
Output for 5.3.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.22 Platform : Linux -------------------------------------- test_math : 0.964 sec. test_stringmanipulation : 0.758 sec.
Process exited with code 137.
Output for 5.3.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.21 Platform : Linux -------------------------------------- test_math : 0.987 sec. test_stringmanipulation : 0.777 sec.
Process exited with code 137.
Output for 5.3.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.20 Platform : Linux -------------------------------------- test_math : 0.995 sec. test_stringmanipulation : 0.762 sec.
Process exited with code 137.
Output for 5.3.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.19 Platform : Linux -------------------------------------- test_math : 1.573 sec.
Process exited with code 137.
Output for 5.3.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.18 Platform : Linux -------------------------------------- test_math : 0.984 sec. test_stringmanipulation : 0.734 sec.
Process exited with code 137.
Output for 5.3.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.17 Platform : Linux -------------------------------------- test_math : 1.758 sec.
Process exited with code 137.
Output for 5.3.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.16 Platform : Linux -------------------------------------- test_math : 0.944 sec. test_stringmanipulation : 0.740 sec. test_loops : 0.695 sec.
Process exited with code 137.
Output for 5.3.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.15 Platform : Linux -------------------------------------- test_math : 2.096 sec.
Process exited with code 137.
Output for 5.3.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.14 Platform : Linux -------------------------------------- test_math : 1.798 sec.
Process exited with code 137.
Output for 5.3.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.13 Platform : Linux -------------------------------------- test_math : 1.449 sec.
Process exited with code 137.
Output for 5.3.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:30:59 Server : test@localhost PHP version : 5.3.12 Platform : Linux -------------------------------------- test_math : 0.923 sec. test_stringmanipulation : 0.748 sec. test_loops : 0.719 sec.
Process exited with code 137.
Output for 5.3.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.11 Platform : Linux -------------------------------------- test_math : 0.774 sec. test_stringmanipulation : 0.743 sec. test_loops : 0.697 sec.
Process exited with code 137.
Output for 5.3.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.10 Platform : Linux -------------------------------------- test_math : 1.854 sec.
Process exited with code 137.
Output for 5.3.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.9 Platform : Linux -------------------------------------- test_math : 1.515 sec.
Process exited with code 137.
Output for 5.3.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.8 Platform : Linux -------------------------------------- test_math : 0.786 sec. test_stringmanipulation : 0.745 sec. test_loops : 0.729 sec.
Process exited with code 137.
Output for 5.3.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.7 Platform : Linux -------------------------------------- test_math : 0.940 sec. test_stringmanipulation : 0.742 sec. test_loops : 0.732 sec.
Process exited with code 137.
Output for 5.3.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.6 Platform : Linux -------------------------------------- test_math : 1.804 sec.
Process exited with code 137.
Output for 5.3.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.5 Platform : Linux -------------------------------------- test_math : 1.555 sec.
Process exited with code 137.
Output for 5.3.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.4 Platform : Linux -------------------------------------- test_math : 1.379 sec.
Process exited with code 137.
Output for 5.3.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.3 Platform : Linux -------------------------------------- test_math : 1.037 sec. test_stringmanipulation : 0.804 sec.
Process exited with code 137.
Output for 5.3.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.2 Platform : Linux -------------------------------------- test_math : 1.451 sec.
Process exited with code 137.
Output for 5.3.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.1 Platform : Linux -------------------------------------- test_math : 2.035 sec.
Process exited with code 137.
Output for 5.3.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:31:00 Server : test@localhost PHP version : 5.3.0 Platform : Linux -------------------------------------- test_math : 0.940 sec. test_stringmanipulation : 0.748 sec. test_loops : 0.729 sec.
Process exited with code 137.

preferences:
147.34 ms | 401 KiB | 158 Q