3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* ########################################################################## # 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
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.2.0 Platform : Linux -------------------------------------- test_math : 0.292 sec. test_stringmanipulation : 0.334 sec. test_loops : 0.194 sec. test_ifelse : 0.231 sec. -------------------------------------- Total time: : 1.051 sec.</pre>
Output for 7.1.7
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.1.7 Platform : Linux -------------------------------------- test_math : 0.231 sec. test_stringmanipulation : 0.337 sec. test_loops : 0.196 sec. test_ifelse : 0.236 sec. -------------------------------------- Total time: : 1 sec.</pre>
Output for 7.1.6
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.1.6 Platform : Linux -------------------------------------- test_math : 0.293 sec. test_stringmanipulation : 0.332 sec. test_loops : 0.196 sec. test_ifelse : 0.217 sec. -------------------------------------- Total time: : 1.038 sec.</pre>
Output for 7.1.5
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.1.5 Platform : Linux -------------------------------------- test_math : 0.303 sec. test_stringmanipulation : 0.321 sec. test_loops : 0.201 sec. test_ifelse : 0.213 sec. -------------------------------------- Total time: : 1.038 sec.</pre>
Output for 7.1.0
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.1.0 Platform : Linux -------------------------------------- test_math : 0.266 sec. test_stringmanipulation : 0.383 sec. test_loops : 0.199 sec. test_ifelse : 0.391 sec. -------------------------------------- Total time: : 1.239 sec.</pre>
Output for 7.0.20
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.0.20 Platform : Linux -------------------------------------- test_math : 0.263 sec. test_stringmanipulation : 0.366 sec. test_loops : 0.237 sec. test_ifelse : 0.265 sec. -------------------------------------- Total time: : 1.131 sec.</pre>
Output for 7.0.14
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.0.14 Platform : Linux -------------------------------------- test_math : 0.030 sec. test_stringmanipulation : -0.329 sec. test_loops : -0.181 sec. test_ifelse : 1.592 sec. -------------------------------------- Total time: : 1.112 sec.</pre>
Output for 7.0.12
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.0.12 Platform : Linux -------------------------------------- test_math : 0.230 sec. test_stringmanipulation : -0.769 sec. test_loops : 0.200 sec. test_ifelse : 1.394 sec. -------------------------------------- Total time: : 1.055 sec.</pre>
Output for 7.0.9
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.0.9 Platform : Linux -------------------------------------- test_math : 0.256 sec. test_stringmanipulation : 0.285 sec. test_loops : 0.157 sec. test_ifelse : 0.161 sec. -------------------------------------- Total time: : 0.859 sec.</pre>
Output for 7.0.8
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.0.8 Platform : Linux -------------------------------------- test_math : 0.292 sec. test_stringmanipulation : 0.347 sec. test_loops : 0.231 sec. test_ifelse : 0.191 sec. -------------------------------------- Total time: : 1.061 sec.</pre>
Output for 7.0.7
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.0.7 Platform : Linux -------------------------------------- test_math : 0.261 sec. test_stringmanipulation : 0.349 sec. test_loops : 0.168 sec. test_ifelse : 0.161 sec. -------------------------------------- Total time: : 0.939 sec.</pre>
Output for 7.0.6
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.0.6 Platform : Linux -------------------------------------- test_math : 0.279 sec. test_stringmanipulation : 0.340 sec. test_loops : 0.235 sec. test_ifelse : 0.198 sec. -------------------------------------- Total time: : 1.052 sec.</pre>
Output for 7.0.5
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.0.5 Platform : Linux -------------------------------------- test_math : 0.298 sec. test_stringmanipulation : 0.281 sec. test_loops : 0.192 sec. test_ifelse : 0.178 sec. -------------------------------------- Total time: : 0.949 sec.</pre>
Output for 7.0.4
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.0.4 Platform : Linux -------------------------------------- test_math : 0.318 sec. test_stringmanipulation : 0.348 sec. test_loops : 0.228 sec. test_ifelse : 0.197 sec. -------------------------------------- Total time: : 1.091 sec.</pre>
Output for 7.0.3
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.0.3 Platform : Linux -------------------------------------- test_math : 0.294 sec. test_stringmanipulation : 0.338 sec. test_loops : 0.180 sec. test_ifelse : 0.184 sec. -------------------------------------- Total time: : 0.996 sec.</pre>
Output for 7.0.2
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.0.2 Platform : Linux -------------------------------------- test_math : 0.318 sec. test_stringmanipulation : 0.341 sec. test_loops : 0.193 sec. test_ifelse : 0.218 sec. -------------------------------------- Total time: : 1.07 sec.</pre>
Output for 7.0.1
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.0.1 Platform : Linux -------------------------------------- test_math : 0.269 sec. test_stringmanipulation : 0.329 sec. test_loops : 0.183 sec. test_ifelse : 0.206 sec. -------------------------------------- Total time: : 0.987 sec.</pre>
Output for 7.0.0
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 7.0.0 Platform : Linux -------------------------------------- test_math : 0.288 sec. test_stringmanipulation : 0.360 sec. test_loops : 0.199 sec. test_ifelse : 0.178 sec. -------------------------------------- Total time: : 1.025 sec.</pre>
Output for 5.6.28
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.28 Platform : Linux -------------------------------------- test_math : 0.799 sec. test_stringmanipulation : 0.816 sec. test_loops : 0.562 sec.
Process exited with code 137.
Output for 5.6.24
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.24 Platform : Linux -------------------------------------- test_math : 0.905 sec. test_stringmanipulation : 0.710 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.6.23
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.23 Platform : Linux -------------------------------------- test_math : 0.888 sec. test_stringmanipulation : 0.710 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.6.22
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.22 Platform : Linux -------------------------------------- test_math : 0.906 sec. test_stringmanipulation : 0.715 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.6.21
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.21 Platform : Linux -------------------------------------- test_math : 0.898 sec. test_stringmanipulation : 0.708 sec. test_loops : 0.527 sec.
Process exited with code 137.
Output for 5.6.20
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.20 Platform : Linux -------------------------------------- test_math : 0.978 sec. test_stringmanipulation : 0.752 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.6.19
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.19 Platform : Linux -------------------------------------- test_math : 0.797 sec. test_stringmanipulation : 0.764 sec. test_loops : 0.532 sec.
Process exited with code 137.
Output for 5.6.18
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.18 Platform : Linux -------------------------------------- test_math : 0.897 sec. test_stringmanipulation : 0.752 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.6.17
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.17 Platform : Linux -------------------------------------- test_math : 0.796 sec. test_stringmanipulation : 0.734 sec. test_loops : 0.505 sec. test_ifelse : 0.365 sec. -------------------------------------- Total time: : 2.4 sec.</pre>
Output for 5.6.16
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.16 Platform : Linux -------------------------------------- test_math : 0.755 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.504 sec. test_ifelse : 0.365 sec. -------------------------------------- Total time: : 2.348 sec.</pre>
Output for 5.6.15
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.15 Platform : Linux -------------------------------------- test_math : 0.899 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.14
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.14 Platform : Linux -------------------------------------- test_math : 0.883 sec. test_stringmanipulation : 0.725 sec. test_loops : 0.505 sec.
Process exited with code 137.
Output for 5.6.13
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.13 Platform : Linux -------------------------------------- test_math : 0.913 sec. test_stringmanipulation : 0.727 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.12
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.12 Platform : Linux -------------------------------------- test_math : 0.877 sec. test_stringmanipulation : 0.715 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.11
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.11 Platform : Linux -------------------------------------- test_math : 0.894 sec. test_stringmanipulation : 0.718 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.10
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.10 Platform : Linux -------------------------------------- test_math : 0.958 sec. test_stringmanipulation : 0.740 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.9
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.9 Platform : Linux -------------------------------------- test_math : 0.895 sec. test_stringmanipulation : 0.720 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.6.8
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.8 Platform : Linux -------------------------------------- test_math : 0.817 sec. test_stringmanipulation : 0.719 sec. test_loops : 0.504 sec. test_ifelse : 0.369 sec. -------------------------------------- Total time: : 2.409 sec.</pre>
Output for 5.6.7
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.7 Platform : Linux -------------------------------------- test_math : 0.764 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.503 sec. test_ifelse : 0.364 sec. -------------------------------------- Total time: : 2.353 sec.</pre>
Output for 5.6.6
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.6 Platform : Linux -------------------------------------- test_math : 0.924 sec. test_stringmanipulation : 0.739 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.6.5
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.5 Platform : Linux -------------------------------------- test_math : 0.944 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.537 sec.
Process exited with code 137.
Output for 5.6.4
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.4 Platform : Linux -------------------------------------- test_math : 0.779 sec. test_stringmanipulation : 0.755 sec. test_loops : 0.552 sec.
Process exited with code 137.
Output for 5.6.3
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.3 Platform : Linux -------------------------------------- test_math : 0.982 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.6.2
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.2 Platform : Linux -------------------------------------- test_math : 0.966 sec. test_stringmanipulation : 0.735 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.1
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.1 Platform : Linux -------------------------------------- test_math : 0.867 sec. test_stringmanipulation : 0.833 sec. test_loops : 0.560 sec.
Process exited with code 137.
Output for 5.6.0
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.6.0 Platform : Linux -------------------------------------- test_math : 0.908 sec. test_stringmanipulation : 0.890 sec. test_loops : 0.578 sec.
Process exited with code 137.
Output for 5.5.38
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.38 Platform : Linux -------------------------------------- test_math : 0.863 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.575 sec.
Process exited with code 137.
Output for 5.5.37
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.37 Platform : Linux -------------------------------------- test_math : 1.375 sec.
Process exited with code 137.
Output for 5.5.36
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.36 Platform : Linux -------------------------------------- test_math : 0.898 sec. test_stringmanipulation : 0.738 sec. test_loops : 0.591 sec.
Process exited with code 137.
Output for 5.5.35
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.35 Platform : Linux -------------------------------------- test_math : 0.914 sec. test_stringmanipulation : 0.720 sec. test_loops : 0.542 sec.
Process exited with code 137.
Output for 5.5.34
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.34 Platform : Linux -------------------------------------- test_math : 1.148 sec.
Process exited with code 137.
Output for 5.5.33
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.33 Platform : Linux -------------------------------------- test_math : 1.257 sec.
Process exited with code 137.
Output for 5.5.32
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.32 Platform : Linux -------------------------------------- test_math : 0.991 sec. test_stringmanipulation : 0.751 sec. test_loops : 0.505 sec.
Process exited with code 137.
Output for 5.5.31
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.31 Platform : Linux -------------------------------------- test_math : 1.334 sec.
Process exited with code 137.
Output for 5.5.30
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.30 Platform : Linux -------------------------------------- test_math : 1.481 sec.
Process exited with code 137.
Output for 5.5.29
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.29 Platform : Linux -------------------------------------- test_math : 0.879 sec. test_stringmanipulation : 0.818 sec. test_loops : 0.565 sec.
Process exited with code 137.
Output for 5.5.28
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.28 Platform : Linux -------------------------------------- test_math : 0.784 sec. test_stringmanipulation : 0.718 sec. test_loops : 0.504 sec. test_ifelse : 0.365 sec. -------------------------------------- Total time: : 2.371 sec.</pre>
Output for 5.5.27
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.27 Platform : Linux -------------------------------------- test_math : 0.929 sec. test_stringmanipulation : 0.749 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.5.26
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.26 Platform : Linux -------------------------------------- test_math : 1.356 sec.
Process exited with code 137.
Output for 5.5.25
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.25 Platform : Linux -------------------------------------- test_math : 0.802 sec. test_stringmanipulation : 0.728 sec. test_loops : 0.503 sec. test_ifelse : 0.364 sec. -------------------------------------- Total time: : 2.397 sec.</pre>
Output for 5.5.24
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.24 Platform : Linux -------------------------------------- test_math : 0.848 sec. test_stringmanipulation : 0.721 sec. test_loops : 0.502 sec.
Process exited with code 137.
Output for 5.5.23
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.23 Platform : Linux -------------------------------------- test_math : 0.958 sec. test_stringmanipulation : 0.729 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.5.22
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.22 Platform : Linux -------------------------------------- test_math : 1.275 sec.
Process exited with code 137.
Output for 5.5.21
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.21 Platform : Linux -------------------------------------- test_math : 0.964 sec. test_stringmanipulation : 0.742 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.5.20
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.20 Platform : Linux -------------------------------------- test_math : 0.933 sec. test_stringmanipulation : 0.723 sec. test_loops : 0.505 sec.
Process exited with code 137.
Output for 5.5.19
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.19 Platform : Linux -------------------------------------- test_math : 1.269 sec.
Process exited with code 137.
Output for 5.5.18
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.18 Platform : Linux -------------------------------------- test_math : 1.420 sec.
Process exited with code 137.
Output for 5.5.16
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.16 Platform : Linux -------------------------------------- test_math : 0.757 sec. test_stringmanipulation : 0.749 sec. test_loops : 0.508 sec. test_ifelse : 0.385 sec. -------------------------------------- Total time: : 2.399 sec.</pre>
Output for 5.5.15
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.15 Platform : Linux -------------------------------------- test_math : 1.147 sec.
Process exited with code 137.
Output for 5.5.14
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.14 Platform : Linux -------------------------------------- test_math : 0.897 sec. test_stringmanipulation : 0.718 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.5.13
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.13 Platform : Linux -------------------------------------- test_math : 0.885 sec. test_stringmanipulation : 0.721 sec. test_loops : 0.523 sec.
Process exited with code 137.
Output for 5.5.12
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.12 Platform : Linux -------------------------------------- test_math : 1.307 sec.
Process exited with code 137.
Output for 5.5.11
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.11 Platform : Linux -------------------------------------- test_math : 0.800 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.504 sec. test_ifelse : 0.364 sec. -------------------------------------- Total time: : 2.39 sec.</pre>
Output for 5.5.10
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.10 Platform : Linux -------------------------------------- test_math : 0.923 sec. test_stringmanipulation : 0.743 sec. test_loops : 0.513 sec.
Process exited with code 137.
Output for 5.5.9
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.9 Platform : Linux -------------------------------------- test_math : 1.266 sec.
Process exited with code 137.
Output for 5.5.8
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.8 Platform : Linux -------------------------------------- test_math : 0.882 sec. test_stringmanipulation : 0.744 sec. test_loops : 0.514 sec.
Process exited with code 137.
Output for 5.5.7
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.7 Platform : Linux -------------------------------------- test_math : 1.270 sec.
Process exited with code 137.
Output for 5.5.6
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.6 Platform : Linux -------------------------------------- test_math : 0.918 sec. test_stringmanipulation : 0.742 sec. test_loops : 0.515 sec.
Process exited with code 137.
Output for 5.5.5
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.5 Platform : Linux -------------------------------------- test_math : 0.756 sec. test_stringmanipulation : 0.728 sec. test_loops : 0.513 sec. test_ifelse : 0.365 sec. -------------------------------------- Total time: : 2.362 sec.</pre>
Output for 5.5.4
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.4 Platform : Linux -------------------------------------- test_math : 1.198 sec.
Process exited with code 137.
Output for 5.5.3
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.3 Platform : Linux -------------------------------------- test_math : 0.878 sec. test_stringmanipulation : 0.715 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.5.2
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.2 Platform : Linux -------------------------------------- test_math : 1.603 sec.
Process exited with code 137.
Output for 5.5.1
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.1 Platform : Linux -------------------------------------- test_math : 0.960 sec. test_stringmanipulation : 0.719 sec. test_loops : 0.502 sec.
Process exited with code 137.
Output for 5.5.0
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.5.0 Platform : Linux -------------------------------------- test_math : 1.483 sec.
Process exited with code 137.
Output for 5.4.45
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.45 Platform : Linux -------------------------------------- test_math : 0.941 sec. test_stringmanipulation : 0.710 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.4.44
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.44 Platform : Linux -------------------------------------- test_math : 0.940 sec. test_stringmanipulation : 0.730 sec. test_loops : 0.505 sec.
Process exited with code 137.
Output for 5.4.43
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.43 Platform : Linux -------------------------------------- test_math : 1.429 sec.
Process exited with code 137.
Output for 5.4.42
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.42 Platform : Linux -------------------------------------- test_math : 1.684 sec.
Process exited with code 137.
Output for 5.4.41
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.41 Platform : Linux -------------------------------------- test_math : 1.145 sec.
Process exited with code 137.
Output for 5.4.40
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.40 Platform : Linux -------------------------------------- test_math : 0.742 sec. test_stringmanipulation : 0.740 sec. test_loops : 0.507 sec. test_ifelse : 0.349 sec. -------------------------------------- Total time: : 2.338 sec.</pre>
Output for 5.4.39
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.39 Platform : Linux -------------------------------------- test_math : 0.795 sec. test_stringmanipulation : 0.742 sec. test_loops : 0.533 sec. test_ifelse : 0.374 sec. -------------------------------------- Total time: : 2.444 sec.</pre>
Output for 5.4.38
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.38 Platform : Linux -------------------------------------- test_math : 1.444 sec.
Process exited with code 137.
Output for 5.4.37
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.37 Platform : Linux -------------------------------------- test_math : 1.356 sec.
Process exited with code 137.
Output for 5.4.36
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.36 Platform : Linux -------------------------------------- test_math : 0.880 sec. test_stringmanipulation : 0.703 sec. test_loops : 0.505 sec.
Process exited with code 137.
Output for 5.4.35
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.35 Platform : Linux -------------------------------------- test_math : 0.931 sec. test_stringmanipulation : 0.713 sec. test_loops : 0.505 sec.
Process exited with code 137.
Output for 5.4.34
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.34 Platform : Linux -------------------------------------- test_math : 0.768 sec. test_stringmanipulation : 0.735 sec. test_loops : 0.506 sec. test_ifelse : 0.350 sec. -------------------------------------- Total time: : 2.359 sec.</pre>
Output for 5.4.32
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.32 Platform : Linux -------------------------------------- test_math : 0.796 sec. test_stringmanipulation : 0.711 sec. test_loops : 0.566 sec. test_ifelse : 0.382 sec. -------------------------------------- Total time: : 2.455 sec.</pre>
Output for 5.4.31
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.31 Platform : Linux -------------------------------------- test_math : 1.327 sec.
Process exited with code 137.
Output for 5.4.30
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.30 Platform : Linux -------------------------------------- test_math : 1.228 sec.
Process exited with code 137.
Output for 5.4.29
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.29 Platform : Linux -------------------------------------- test_math : 1.315 sec.
Process exited with code 137.
Output for 5.4.28
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.28 Platform : Linux -------------------------------------- test_math : 0.805 sec. test_stringmanipulation : 0.710 sec. test_loops : 0.505 sec. test_ifelse : 0.349 sec. -------------------------------------- Total time: : 2.369 sec.</pre>
Output for 5.4.27
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.27 Platform : Linux -------------------------------------- test_math : 0.919 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.597 sec.
Process exited with code 137.
Output for 5.4.26
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.26 Platform : Linux -------------------------------------- test_math : 0.917 sec. test_stringmanipulation : 0.714 sec. test_loops : 0.509 sec.
Process exited with code 137.
Output for 5.4.25
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.25 Platform : Linux -------------------------------------- test_math : 1.273 sec.
Process exited with code 137.
Output for 5.4.24
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.24 Platform : Linux -------------------------------------- test_math : 0.825 sec. test_stringmanipulation : 0.713 sec. test_loops : 0.506 sec. test_ifelse : 0.349 sec. -------------------------------------- Total time: : 2.393 sec.</pre>
Output for 5.4.23
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.23 Platform : Linux -------------------------------------- test_math : 1.425 sec.
Process exited with code 137.
Output for 5.4.22
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.22 Platform : Linux -------------------------------------- test_math : 0.926 sec. test_stringmanipulation : 0.809 sec. test_loops : 0.577 sec.
Process exited with code 137.
Output for 5.4.21
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.21 Platform : Linux -------------------------------------- test_math : 0.787 sec. test_stringmanipulation : 0.734 sec. test_loops : 0.584 sec.
Process exited with code 137.
Output for 5.4.20
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.20 Platform : Linux -------------------------------------- test_math : 0.992 sec. test_stringmanipulation : 0.813 sec. test_loops : 0.541 sec.
Process exited with code 137.
Output for 5.4.19
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.19 Platform : Linux -------------------------------------- test_math : 0.937 sec. test_stringmanipulation : 0.748 sec. test_loops : 0.592 sec.
Process exited with code 137.
Output for 5.4.18
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.18 Platform : Linux -------------------------------------- test_math : 1.258 sec.
Process exited with code 137.
Output for 5.4.17
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.17 Platform : Linux -------------------------------------- test_math : 0.779 sec. test_stringmanipulation : 0.721 sec. test_loops : 0.509 sec. test_ifelse : 0.350 sec. -------------------------------------- Total time: : 2.359 sec.</pre>
Output for 5.4.16
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.16 Platform : Linux -------------------------------------- test_math : 0.888 sec. test_stringmanipulation : 0.717 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.4.15
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.15 Platform : Linux -------------------------------------- test_math : 0.880 sec. test_stringmanipulation : 0.717 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.4.14
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.14 Platform : Linux -------------------------------------- test_math : 1.288 sec.
Process exited with code 137.
Output for 5.4.13
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.13 Platform : Linux -------------------------------------- test_math : 1.364 sec.
Process exited with code 137.
Output for 5.4.12
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.12 Platform : Linux -------------------------------------- test_math : 1.376 sec.
Process exited with code 137.
Output for 5.4.11
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.11 Platform : Linux -------------------------------------- test_math : 0.979 sec. test_stringmanipulation : 0.727 sec. test_loops : 0.575 sec.
Process exited with code 137.
Output for 5.4.10
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.10 Platform : Linux -------------------------------------- test_math : 1.446 sec.
Process exited with code 137.
Output for 5.4.9
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.9 Platform : Linux -------------------------------------- test_math : 1.235 sec.
Process exited with code 137.
Output for 5.4.8
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.8 Platform : Linux -------------------------------------- test_math : 0.888 sec. test_stringmanipulation : 0.707 sec. test_loops : 0.505 sec.
Process exited with code 137.
Output for 5.4.7
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.7 Platform : Linux -------------------------------------- test_math : 1.424 sec.
Process exited with code 137.
Output for 5.4.6
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.6 Platform : Linux -------------------------------------- test_math : 1.208 sec.
Process exited with code 137.
Output for 5.4.5
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.5 Platform : Linux -------------------------------------- test_math : 1.275 sec.
Process exited with code 137.
Output for 5.4.4
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.4 Platform : Linux -------------------------------------- test_math : 0.912 sec. test_stringmanipulation : 0.717 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.4.3
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.3 Platform : Linux -------------------------------------- test_math : 1.177 sec.
Process exited with code 137.
Output for 5.4.2
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.2 Platform : Linux -------------------------------------- test_math : 1.332 sec.
Process exited with code 137.
Output for 5.4.1
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.1 Platform : Linux -------------------------------------- test_math : 0.997 sec. test_stringmanipulation : 0.838 sec.
Process exited with code 137.
Output for 5.4.0
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.4.0 Platform : Linux -------------------------------------- test_math : 0.844 sec. test_stringmanipulation : 0.714 sec. test_loops : 0.507 sec. test_ifelse : 0.349 sec. -------------------------------------- Total time: : 2.414 sec.</pre>
Output for 5.3.29
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.29 Platform : Linux -------------------------------------- test_math : 1.499 sec.
Process exited with code 137.
Output for 5.3.28
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.28 Platform : Linux -------------------------------------- test_math : 0.942 sec. test_stringmanipulation : 0.752 sec. test_loops : 0.689 sec.
Process exited with code 137.
Output for 5.3.27
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.27 Platform : Linux -------------------------------------- test_math : 0.822 sec. test_stringmanipulation : 0.770 sec. test_loops : 0.687 sec.
Process exited with code 137.
Output for 5.3.26
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.26 Platform : Linux -------------------------------------- test_math : 0.957 sec. test_stringmanipulation : 0.841 sec.
Process exited with code 137.
Output for 5.3.25
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.25 Platform : Linux -------------------------------------- test_math : 0.924 sec. test_stringmanipulation : 0.755 sec. test_loops : 0.689 sec.
Process exited with code 137.
Output for 5.3.24
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.24 Platform : Linux -------------------------------------- test_math : 0.956 sec. test_stringmanipulation : 0.779 sec.
Process exited with code 137.
Output for 5.3.23
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.23 Platform : Linux -------------------------------------- test_math : 0.971 sec. test_stringmanipulation : 0.899 sec.
Process exited with code 137.
Output for 5.3.22
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.22 Platform : Linux -------------------------------------- test_math : 0.896 sec. test_stringmanipulation : 0.755 sec. test_loops : 0.717 sec.
Process exited with code 137.
Output for 5.3.21
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.21 Platform : Linux -------------------------------------- test_math : 0.947 sec. test_stringmanipulation : 0.951 sec.
Process exited with code 137.
Output for 5.3.20
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.20 Platform : Linux -------------------------------------- test_math : 0.796 sec. test_stringmanipulation : 0.751 sec. test_loops : 0.694 sec.
Process exited with code 137.
Output for 5.3.19
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.19 Platform : Linux -------------------------------------- test_math : 1.008 sec. test_stringmanipulation : 0.760 sec.
Process exited with code 137.
Output for 5.3.18
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.18 Platform : Linux -------------------------------------- test_math : 1.359 sec.
Process exited with code 137.
Output for 5.3.17
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.17 Platform : Linux -------------------------------------- test_math : 1.722 sec.
Process exited with code 137.
Output for 5.3.16
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.16 Platform : Linux -------------------------------------- test_math : 1.511 sec.
Process exited with code 137.
Output for 5.3.15
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.15 Platform : Linux -------------------------------------- test_math : 1.517 sec.
Process exited with code 137.
Output for 5.3.14
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.14 Platform : Linux -------------------------------------- test_math : 0.851 sec. test_stringmanipulation : 0.835 sec.
Process exited with code 137.
Output for 5.3.13
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.13 Platform : Linux -------------------------------------- test_math : 0.927 sec. test_stringmanipulation : 0.744 sec.
Process exited with code 137.
Output for 5.3.12
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.12 Platform : Linux -------------------------------------- test_math : 0.959 sec. test_stringmanipulation : 0.788 sec.
Process exited with code 137.
Output for 5.3.11
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.11 Platform : Linux -------------------------------------- test_math : 2.033 sec.
Process exited with code 137.
Output for 5.3.10
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.10 Platform : Linux -------------------------------------- test_math : 0.890 sec. test_stringmanipulation : 0.883 sec.
Process exited with code 137.
Output for 5.3.9
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.9 Platform : Linux -------------------------------------- test_math : 1.368 sec.
Process exited with code 137.
Output for 5.3.8
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.8 Platform : Linux -------------------------------------- test_math : 1.304 sec.
Process exited with code 137.
Output for 5.3.7
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.7 Platform : Linux -------------------------------------- test_math : 0.781 sec. test_stringmanipulation : 0.742 sec. test_loops : 0.725 sec.
Process exited with code 137.
Output for 5.3.6
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.6 Platform : Linux -------------------------------------- test_math : 1.569 sec.
Process exited with code 137.
Output for 5.3.5
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.5 Platform : Linux -------------------------------------- test_math : 1.563 sec.
Process exited with code 137.
Output for 5.3.4
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.4 Platform : Linux -------------------------------------- test_math : 0.856 sec. test_stringmanipulation : 0.793 sec.
Process exited with code 137.
Output for 5.3.3
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.3 Platform : Linux -------------------------------------- test_math : 1.940 sec.
Process exited with code 137.
Output for 5.3.2
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.2 Platform : Linux -------------------------------------- test_math : 0.802 sec. test_stringmanipulation : 0.778 sec. test_loops : 0.759 sec.
Process exited with code 137.
Output for 5.3.1
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.1 Platform : Linux -------------------------------------- test_math : 1.581 sec.
Process exited with code 137.
Output for 5.3.0
Notice: Undefined index: SERVER_NAME in /in/bjhIU on line 71 Notice: Undefined index: SERVER_ADDR in /in/bjhIU on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:21:03 Server : @ PHP version : 5.3.0 Platform : Linux -------------------------------------- test_math : 0.864 sec. test_stringmanipulation : 0.815 sec. test_loops : 0.759 sec.
Process exited with code 137.

preferences:
155.21 ms | 401 KiB | 162 Q