3v4l.org

run code in 300+ PHP versions simultaneously
<?php 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"; } }
Output for 7.3.1
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.3.1 Platform : Linux -------------------------------------- test_math : 0.316 sec. test_stringmanipulation : 0.405 sec. test_loops : 0.235 sec. test_ifelse : 0.326 sec.
Output for 7.3.0
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.3.0 Platform : Linux -------------------------------------- test_math : 0.308 sec. test_stringmanipulation : 0.406 sec. test_loops : 0.230 sec. test_ifelse : 0.313 sec.
Output for 7.2.13
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.2.13 Platform : Linux -------------------------------------- test_math : 0.325 sec. test_stringmanipulation : 0.517 sec. test_loops : 0.261 sec. test_ifelse : 0.322 sec.
Output for 7.2.12
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.2.12 Platform : Linux -------------------------------------- test_math : 0.314 sec. test_stringmanipulation : 0.444 sec. test_loops : 0.237 sec. test_ifelse : 0.273 sec.
Output for 7.2.11
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.2.11 Platform : Linux -------------------------------------- test_math : 0.332 sec. test_stringmanipulation : 0.496 sec. test_loops : 0.259 sec. test_ifelse : 0.317 sec.
Output for 7.2.10
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.2.10 Platform : Linux -------------------------------------- test_math : 0.321 sec. test_stringmanipulation : 0.507 sec. test_loops : 0.244 sec. test_ifelse : 0.284 sec.
Output for 7.2.9
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.2.9 Platform : Linux -------------------------------------- test_math : 0.317 sec. test_stringmanipulation : 0.457 sec. test_loops : 0.248 sec. test_ifelse : 0.340 sec.
Output for 7.2.8
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.2.8 Platform : Linux -------------------------------------- test_math : 0.326 sec. test_stringmanipulation : 0.508 sec. test_loops : 0.251 sec. test_ifelse : 0.307 sec.
Output for 7.2.7
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.2.7 Platform : Linux -------------------------------------- test_math : 0.316 sec. test_stringmanipulation : 0.520 sec. test_loops : 0.249 sec. test_ifelse : 0.311 sec.
Output for 7.2.6
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.2.6 Platform : Linux -------------------------------------- test_math : 0.363 sec. test_stringmanipulation : 0.507 sec. test_loops : 0.261 sec. test_ifelse : 0.302 sec.
Output for 7.2.5
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.2.5 Platform : Linux -------------------------------------- test_math : 0.399 sec. test_stringmanipulation : 0.462 sec. test_loops : 0.241 sec. test_ifelse : 0.293 sec.
Output for 7.2.4
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.2.4 Platform : Linux -------------------------------------- test_math : 0.356 sec. test_stringmanipulation : 0.472 sec. test_loops : 0.238 sec. test_ifelse : 0.287 sec.
Output for 7.2.3
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.2.3 Platform : Linux -------------------------------------- test_math : 0.355 sec. test_stringmanipulation : 0.512 sec. test_loops : 0.244 sec. test_ifelse : 0.316 sec.
Output for 7.2.2
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.2.2 Platform : Linux -------------------------------------- test_math : 0.303 sec. test_stringmanipulation : 0.477 sec. test_loops : 0.242 sec. test_ifelse : 0.309 sec.
Output for 7.2.1
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.2.1 Platform : Linux -------------------------------------- test_math : 0.339 sec. test_stringmanipulation : 0.452 sec. test_loops : 0.224 sec. test_ifelse : 0.307 sec.
Output for 7.2.0
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.2.0 Platform : Linux -------------------------------------- test_math : 0.301 sec. test_stringmanipulation : 0.486 sec. test_loops : 0.233 sec. test_ifelse : 0.288 sec.
Output for 7.1.25
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.1.25 Platform : Linux -------------------------------------- test_math : 0.421 sec. test_stringmanipulation : 0.619 sec. test_loops : 0.565 sec. test_ifelse : 0.508 sec.
Output for 7.1.7
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.1.7 Platform : Linux -------------------------------------- test_math : 0.329 sec. test_stringmanipulation : 0.368 sec. test_loops : 0.232 sec. test_ifelse : 0.169 sec.
Output for 7.1.6
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.1.6 Platform : Linux -------------------------------------- test_math : 0.285 sec. test_stringmanipulation : 0.324 sec. test_loops : 0.197 sec. test_ifelse : 0.143 sec.
Output for 7.1.5
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:40 Server : @ PHP version : 7.1.5 Platform : Linux -------------------------------------- test_math : 0.276 sec. test_stringmanipulation : 0.320 sec. test_loops : 0.201 sec. test_ifelse : 0.144 sec.
Output for 7.1.0
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.1.0 Platform : Linux -------------------------------------- test_math : 0.298 sec. test_stringmanipulation : -0.104 sec. test_loops : -0.199 sec. test_ifelse : 1.070 sec.
Output for 7.0.20
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.0.20 Platform : Linux -------------------------------------- test_math : 0.330 sec. test_stringmanipulation : 0.490 sec. test_loops : 0.264 sec. test_ifelse : 0.139 sec.
Output for 7.0.14
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.0.14 Platform : Linux -------------------------------------- test_math : 0.285 sec. test_stringmanipulation : -0.001 sec. test_loops : -0.181 sec. test_ifelse : 1.047 sec.
Output for 7.0.10
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.0.10 Platform : Linux -------------------------------------- test_math : 0.219 sec. test_stringmanipulation : 0.286 sec. test_loops : 0.156 sec. test_ifelse : 0.115 sec.
Output for 7.0.9
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.0.9 Platform : Linux -------------------------------------- test_math : 0.279 sec. test_stringmanipulation : 0.285 sec. test_loops : 0.157 sec. test_ifelse : 0.117 sec.
Output for 7.0.8
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.0.8 Platform : Linux -------------------------------------- test_math : 0.264 sec. test_stringmanipulation : 0.331 sec. test_loops : 0.193 sec. test_ifelse : 0.128 sec.
Output for 7.0.7
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.0.7 Platform : Linux -------------------------------------- test_math : 0.215 sec. test_stringmanipulation : 0.296 sec. test_loops : 0.162 sec. test_ifelse : 0.115 sec.
Output for 7.0.6
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.0.6 Platform : Linux -------------------------------------- test_math : 0.260 sec. test_stringmanipulation : 0.282 sec. test_loops : 0.195 sec. test_ifelse : 0.121 sec.
Output for 7.0.5
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.0.5 Platform : Linux -------------------------------------- test_math : 0.291 sec. test_stringmanipulation : 0.366 sec. test_loops : 0.239 sec. test_ifelse : 0.125 sec.
Output for 7.0.4
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.0.4 Platform : Linux -------------------------------------- test_math : 0.324 sec. test_stringmanipulation : 0.405 sec. test_loops : 0.209 sec. test_ifelse : 0.135 sec.
Output for 7.0.3
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.0.3 Platform : Linux -------------------------------------- test_math : 0.256 sec. test_stringmanipulation : 0.288 sec. test_loops : 0.162 sec. test_ifelse : 0.116 sec.
Output for 7.0.2
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.0.2 Platform : Linux -------------------------------------- test_math : 0.288 sec. test_stringmanipulation : 0.340 sec. test_loops : 0.192 sec. test_ifelse : 0.146 sec.
Output for 7.0.1
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.0.1 Platform : Linux -------------------------------------- test_math : 0.223 sec. test_stringmanipulation : 0.288 sec. test_loops : 0.207 sec. test_ifelse : 0.132 sec.
Output for 7.0.0
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 7.0.0 Platform : Linux -------------------------------------- test_math : 0.329 sec. test_stringmanipulation : 0.410 sec. test_loops : 0.184 sec. test_ifelse : 0.132 sec.
Output for 5.6.28
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.28 Platform : Linux -------------------------------------- test_math : -0.092 sec. test_stringmanipulation : 1.226 sec. test_loops : 1.036 sec.
Process exited with code 137.
Output for 5.6.25
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.25 Platform : Linux -------------------------------------- test_math : 0.758 sec. test_stringmanipulation : 0.718 sec. test_loops : 0.503 sec. test_ifelse : 0.319 sec.
Output for 5.6.24
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.24 Platform : Linux -------------------------------------- test_math : 0.950 sec. test_stringmanipulation : 0.780 sec. test_loops : 0.517 sec.
Process exited with code 137.
Output for 5.6.23
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.23 Platform : Linux -------------------------------------- test_math : 0.881 sec. test_stringmanipulation : 0.719 sec. test_loops : 0.511 sec.
Process exited with code 137.
Output for 5.6.22
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.22 Platform : Linux -------------------------------------- test_math : 0.767 sec. test_stringmanipulation : 0.717 sec. test_loops : 0.503 sec. test_ifelse : 0.319 sec.
Output for 5.6.21
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.21 Platform : Linux -------------------------------------- test_math : 0.930 sec. test_stringmanipulation : 0.715 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.6.20
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.20 Platform : Linux -------------------------------------- test_math : 0.930 sec. test_stringmanipulation : 0.732 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.19
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.19 Platform : Linux -------------------------------------- test_math : 0.943 sec. test_stringmanipulation : 0.754 sec. test_loops : 0.565 sec.
Process exited with code 137.
Output for 5.6.18
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.18 Platform : Linux -------------------------------------- test_math : 0.892 sec. test_stringmanipulation : 0.754 sec. test_loops : 0.509 sec.
Process exited with code 137.
Output for 5.6.17
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.17 Platform : Linux -------------------------------------- test_math : 0.860 sec. test_stringmanipulation : 0.717 sec. test_loops : 0.504 sec. test_ifelse : 0.323 sec.
Output for 5.6.16
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.16 Platform : Linux -------------------------------------- test_math : 0.911 sec. test_stringmanipulation : 0.713 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.15
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.15 Platform : Linux -------------------------------------- test_math : 0.856 sec. test_stringmanipulation : 0.720 sec. test_loops : 0.507 sec. test_ifelse : 0.326 sec.
Output for 5.6.14
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.14 Platform : Linux -------------------------------------- test_math : 0.902 sec. test_stringmanipulation : 0.716 sec. test_loops : 0.524 sec.
Process exited with code 137.
Output for 5.6.13
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.13 Platform : Linux -------------------------------------- test_math : 0.889 sec. test_stringmanipulation : 0.730 sec. test_loops : 0.508 sec.
Process exited with code 137.
Output for 5.6.12
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.12 Platform : Linux -------------------------------------- test_math : 0.925 sec. test_stringmanipulation : 0.727 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.6.11
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.11 Platform : Linux -------------------------------------- test_math : 0.794 sec. test_stringmanipulation : 0.708 sec. test_loops : 0.504 sec. test_ifelse : 0.323 sec.
Output for 5.6.10
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.10 Platform : Linux -------------------------------------- test_math : 0.872 sec. test_stringmanipulation : 0.719 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.6.9
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.9 Platform : Linux -------------------------------------- test_math : 0.866 sec. test_stringmanipulation : 0.719 sec. test_loops : 0.508 sec.
Process exited with code 137.
Output for 5.6.8
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.8 Platform : Linux -------------------------------------- test_math : 0.814 sec. test_stringmanipulation : 0.708 sec. test_loops : 0.503 sec. test_ifelse : 0.325 sec.
Output for 5.6.7
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.7 Platform : Linux -------------------------------------- test_math : 0.918 sec. test_stringmanipulation : 0.715 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.6
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.6 Platform : Linux -------------------------------------- test_math : 0.860 sec. test_stringmanipulation : 0.714 sec. test_loops : 0.503 sec. test_ifelse : 0.322 sec.
Output for 5.6.5
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.5 Platform : Linux -------------------------------------- test_math : 0.740 sec. test_stringmanipulation : 0.714 sec. test_loops : 0.504 sec. test_ifelse : 0.323 sec.
Output for 5.6.4
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.4 Platform : Linux -------------------------------------- test_math : 0.921 sec. test_stringmanipulation : 0.709 sec. test_loops : 0.511 sec.
Process exited with code 137.
Output for 5.6.3
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.3 Platform : Linux -------------------------------------- test_math : 0.783 sec. test_stringmanipulation : 0.732 sec. test_loops : 0.510 sec. test_ifelse : 0.334 sec.
Output for 5.6.2
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.2 Platform : Linux -------------------------------------- test_math : 0.926 sec. test_stringmanipulation : 0.726 sec. test_loops : 0.524 sec.
Process exited with code 137.
Output for 5.6.1
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.1 Platform : Linux -------------------------------------- test_math : 0.872 sec. test_stringmanipulation : 0.720 sec. test_loops : 0.505 sec.
Process exited with code 137.
Output for 5.6.0
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.6.0 Platform : Linux -------------------------------------- test_math : 0.858 sec. test_stringmanipulation : 0.705 sec. test_loops : 0.503 sec. test_ifelse : 0.322 sec.
Output for 5.5.38
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.38 Platform : Linux -------------------------------------- test_math : 0.982 sec. test_stringmanipulation : 0.856 sec. test_loops : 0.571 sec.
Process exited with code 137.
Output for 5.5.37
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.37 Platform : Linux -------------------------------------- test_math : 0.894 sec. test_stringmanipulation : 0.924 sec. test_loops : 0.589 sec.
Process exited with code 137.
Output for 5.5.36
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.36 Platform : Linux -------------------------------------- test_math : 1.367 sec.
Process exited with code 137.
Output for 5.5.35
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.35 Platform : Linux -------------------------------------- test_math : 0.935 sec. test_stringmanipulation : 0.718 sec. test_loops : 0.509 sec.
Process exited with code 137.
Output for 5.5.34
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.34 Platform : Linux -------------------------------------- test_math : 0.959 sec. test_stringmanipulation : 0.746 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.5.33
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.33 Platform : Linux -------------------------------------- test_math : 0.821 sec. test_stringmanipulation : 0.763 sec. test_loops : 0.520 sec.
Process exited with code 137.
Output for 5.5.32
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.32 Platform : Linux -------------------------------------- test_math : 1.251 sec.
Process exited with code 137.
Output for 5.5.31
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.31 Platform : Linux -------------------------------------- test_math : 0.960 sec. test_stringmanipulation : 0.798 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.5.30
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.30 Platform : Linux -------------------------------------- test_math : 0.917 sec. test_stringmanipulation : 0.730 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.5.29
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.29 Platform : Linux -------------------------------------- test_math : 0.876 sec. test_stringmanipulation : 0.733 sec. test_loops : 0.508 sec. test_ifelse : 0.323 sec.
Output for 5.5.28
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.28 Platform : Linux -------------------------------------- test_math : 0.791 sec. test_stringmanipulation : 0.755 sec. test_loops : 0.595 sec.
Process exited with code 137.
Output for 5.5.27
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.27 Platform : Linux -------------------------------------- test_math : 0.866 sec. test_stringmanipulation : 0.840 sec. test_loops : 0.560 sec.
Process exited with code 137.
Output for 5.5.26
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.26 Platform : Linux -------------------------------------- test_math : 1.313 sec.
Process exited with code 137.
Output for 5.5.25
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.25 Platform : Linux -------------------------------------- test_math : 0.920 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.5.24
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.24 Platform : Linux -------------------------------------- test_math : 0.893 sec. test_stringmanipulation : 0.730 sec. test_loops : 0.511 sec.
Process exited with code 137.
Output for 5.5.23
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.23 Platform : Linux -------------------------------------- test_math : 1.299 sec.
Process exited with code 137.
Output for 5.5.22
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.22 Platform : Linux -------------------------------------- test_math : 0.951 sec. test_stringmanipulation : 0.719 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.5.21
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.21 Platform : Linux -------------------------------------- test_math : 0.806 sec. test_stringmanipulation : 0.729 sec. test_loops : 0.504 sec. test_ifelse : 0.322 sec.
Output for 5.5.20
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.20 Platform : Linux -------------------------------------- test_math : 1.418 sec.
Process exited with code 137.
Output for 5.5.19
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.19 Platform : Linux -------------------------------------- test_math : 1.213 sec.
Process exited with code 137.
Output for 5.5.18
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.18 Platform : Linux -------------------------------------- test_math : 0.922 sec. test_stringmanipulation : 0.734 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.5.16
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.16 Platform : Linux -------------------------------------- test_math : 1.441 sec.
Process exited with code 137.
Output for 5.5.15
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.15 Platform : Linux -------------------------------------- test_math : 0.944 sec. test_stringmanipulation : 0.730 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.5.14
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.14 Platform : Linux -------------------------------------- test_math : 0.756 sec. test_stringmanipulation : 0.723 sec. test_loops : 0.506 sec. test_ifelse : 0.324 sec.
Output for 5.5.13
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.13 Platform : Linux -------------------------------------- test_math : 0.808 sec. test_stringmanipulation : 0.712 sec. test_loops : 0.506 sec. test_ifelse : 0.322 sec.
Output for 5.5.12
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.12 Platform : Linux -------------------------------------- test_math : 0.750 sec. test_stringmanipulation : 0.736 sec. test_loops : 0.528 sec. test_ifelse : 0.331 sec.
Output for 5.5.11
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.11 Platform : Linux -------------------------------------- test_math : 0.803 sec. test_stringmanipulation : 0.714 sec. test_loops : 0.503 sec. test_ifelse : 0.322 sec.
Output for 5.5.10
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.10 Platform : Linux -------------------------------------- test_math : 0.929 sec. test_stringmanipulation : 0.733 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.5.9
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.9 Platform : Linux -------------------------------------- test_math : 0.798 sec. test_stringmanipulation : 0.715 sec. test_loops : 0.503 sec. test_ifelse : 0.322 sec.
Output for 5.5.8
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.8 Platform : Linux -------------------------------------- test_math : 0.941 sec. test_stringmanipulation : 0.933 sec.
Process exited with code 137.
Output for 5.5.7
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.7 Platform : Linux -------------------------------------- test_math : 1.234 sec.
Process exited with code 137.
Output for 5.5.6
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.6 Platform : Linux -------------------------------------- test_math : 1.257 sec.
Process exited with code 137.
Output for 5.5.5
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.5 Platform : Linux -------------------------------------- test_math : 1.072 sec. test_stringmanipulation : 0.785 sec.
Process exited with code 137.
Output for 5.5.4
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.4 Platform : Linux -------------------------------------- test_math : 1.308 sec.
Process exited with code 137.
Output for 5.5.3
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.3 Platform : Linux -------------------------------------- test_math : 0.880 sec. test_stringmanipulation : 0.721 sec. test_loops : 0.532 sec.
Process exited with code 137.
Output for 5.5.2
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.2 Platform : Linux -------------------------------------- test_math : 0.805 sec. test_stringmanipulation : 0.726 sec. test_loops : 0.503 sec. test_ifelse : 0.322 sec.
Output for 5.5.1
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.1 Platform : Linux -------------------------------------- test_math : 1.534 sec.
Process exited with code 137.
Output for 5.5.0
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.5.0 Platform : Linux -------------------------------------- test_math : 0.762 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.503 sec. test_ifelse : 0.323 sec.
Output for 5.4.45
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.45 Platform : Linux -------------------------------------- test_math : 0.763 sec. test_stringmanipulation : 0.719 sec. test_loops : 0.517 sec. test_ifelse : 0.331 sec.
Output for 5.4.44
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.44 Platform : Linux -------------------------------------- test_math : 1.549 sec.
Process exited with code 137.
Output for 5.4.43
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.43 Platform : Linux -------------------------------------- test_math : 0.872 sec. test_stringmanipulation : 0.721 sec. test_loops : 0.508 sec.
Process exited with code 137.
Output for 5.4.42
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.42 Platform : Linux -------------------------------------- test_math : 1.701 sec.
Process exited with code 137.
Output for 5.4.41
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.41 Platform : Linux -------------------------------------- test_math : 0.929 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.4.40
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.40 Platform : Linux -------------------------------------- test_math : 0.846 sec. test_stringmanipulation : 0.702 sec. test_loops : 0.507 sec. test_ifelse : 0.325 sec.
Output for 5.4.39
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.39 Platform : Linux -------------------------------------- test_math : 0.750 sec. test_stringmanipulation : 0.704 sec. test_loops : 0.534 sec. test_ifelse : 0.330 sec.
Output for 5.4.38
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.38 Platform : Linux -------------------------------------- test_math : 1.174 sec.
Process exited with code 137.
Output for 5.4.37
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.37 Platform : Linux -------------------------------------- test_math : 1.205 sec.
Process exited with code 137.
Output for 5.4.36
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.36 Platform : Linux -------------------------------------- test_math : 1.348 sec.
Process exited with code 137.
Output for 5.4.35
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.35 Platform : Linux -------------------------------------- test_math : 1.268 sec.
Process exited with code 137.
Output for 5.4.34
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.34 Platform : Linux -------------------------------------- test_math : 1.317 sec.
Process exited with code 137.
Output for 5.4.32
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.32 Platform : Linux -------------------------------------- test_math : 1.244 sec.
Process exited with code 137.
Output for 5.4.31
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.31 Platform : Linux -------------------------------------- test_math : 1.288 sec.
Process exited with code 137.
Output for 5.4.30
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.30 Platform : Linux -------------------------------------- test_math : 0.731 sec. test_stringmanipulation : 0.708 sec. test_loops : 0.506 sec. test_ifelse : 0.325 sec.
Output for 5.4.29
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.29 Platform : Linux -------------------------------------- test_math : 1.235 sec.
Process exited with code 137.
Output for 5.4.28
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.28 Platform : Linux -------------------------------------- test_math : 1.284 sec.
Process exited with code 137.
Output for 5.4.27
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.27 Platform : Linux -------------------------------------- test_math : 0.753 sec. test_stringmanipulation : 0.711 sec. test_loops : 0.505 sec. test_ifelse : 0.326 sec.
Output for 5.4.26
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.26 Platform : Linux -------------------------------------- test_math : 1.226 sec.
Process exited with code 137.
Output for 5.4.25
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.25 Platform : Linux -------------------------------------- test_math : 0.934 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.4.24
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.24 Platform : Linux -------------------------------------- test_math : 0.883 sec. test_stringmanipulation : 0.709 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.4.23
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.23 Platform : Linux -------------------------------------- test_math : 0.924 sec. test_stringmanipulation : 0.721 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.4.22
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.22 Platform : Linux -------------------------------------- test_math : 1.466 sec.
Process exited with code 137.
Output for 5.4.21
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.21 Platform : Linux -------------------------------------- test_math : 0.857 sec. test_stringmanipulation : 0.713 sec. test_loops : 0.505 sec. test_ifelse : 0.325 sec.
Output for 5.4.20
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.20 Platform : Linux -------------------------------------- test_math : 1.147 sec.
Process exited with code 137.
Output for 5.4.19
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.19 Platform : Linux -------------------------------------- test_math : 1.464 sec.
Process exited with code 137.
Output for 5.4.18
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.18 Platform : Linux -------------------------------------- test_math : 0.907 sec. test_stringmanipulation : 0.744 sec. test_loops : 0.511 sec.
Process exited with code 137.
Output for 5.4.17
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.17 Platform : Linux -------------------------------------- test_math : 0.894 sec. test_stringmanipulation : 0.741 sec. test_loops : 0.574 sec.
Process exited with code 137.
Output for 5.4.16
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.16 Platform : Linux -------------------------------------- test_math : 0.800 sec. test_stringmanipulation : 0.709 sec. test_loops : 0.505 sec. test_ifelse : 0.325 sec.
Output for 5.4.15
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.15 Platform : Linux -------------------------------------- test_math : 0.934 sec. test_stringmanipulation : 0.737 sec. test_loops : 0.522 sec.
Process exited with code 137.
Output for 5.4.14
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.14 Platform : Linux -------------------------------------- test_math : 0.874 sec. test_stringmanipulation : 0.716 sec. test_loops : 0.506 sec. test_ifelse : 0.323 sec.
Output for 5.4.13
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.13 Platform : Linux -------------------------------------- test_math : 0.755 sec. test_stringmanipulation : 0.712 sec. test_loops : 0.507 sec. test_ifelse : 0.324 sec.
Output for 5.4.12
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.12 Platform : Linux -------------------------------------- test_math : 1.452 sec.
Process exited with code 137.
Output for 5.4.11
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.11 Platform : Linux -------------------------------------- test_math : 0.810 sec. test_stringmanipulation : 0.707 sec. test_loops : 0.534 sec. test_ifelse : 0.327 sec.
Output for 5.4.10
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.10 Platform : Linux -------------------------------------- test_math : 1.318 sec.
Process exited with code 137.
Output for 5.4.9
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.9 Platform : Linux -------------------------------------- test_math : 0.900 sec. test_stringmanipulation : 0.717 sec. test_loops : 0.531 sec.
Process exited with code 137.
Output for 5.4.8
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.8 Platform : Linux -------------------------------------- test_math : 0.932 sec. test_stringmanipulation : 0.723 sec. test_loops : 0.531 sec.
Process exited with code 137.
Output for 5.4.7
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.7 Platform : Linux -------------------------------------- test_math : 1.037 sec. test_stringmanipulation : 0.840 sec.
Process exited with code 137.
Output for 5.4.6
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.6 Platform : Linux -------------------------------------- test_math : 0.892 sec. test_stringmanipulation : 0.713 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.4.5
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.5 Platform : Linux -------------------------------------- test_math : 1.453 sec.
Process exited with code 137.
Output for 5.4.4
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.4 Platform : Linux -------------------------------------- test_math : 1.343 sec.
Process exited with code 137.
Output for 5.4.3
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.3 Platform : Linux -------------------------------------- test_math : 1.359 sec.
Process exited with code 137.
Output for 5.4.2
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.2 Platform : Linux -------------------------------------- test_math : 0.882 sec. test_stringmanipulation : 0.709 sec. test_loops : 0.506 sec. test_ifelse : 0.326 sec.
Output for 5.4.1
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.1 Platform : Linux -------------------------------------- test_math : 0.994 sec. test_stringmanipulation : 0.867 sec. test_loops : 0.570 sec.
Process exited with code 137.
Output for 5.4.0
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.4.0 Platform : Linux -------------------------------------- test_math : 1.475 sec.
Process exited with code 137.
Output for 5.3.29
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.29 Platform : Linux -------------------------------------- test_math : 1.507 sec.
Process exited with code 137.
Output for 5.3.28
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.28 Platform : Linux -------------------------------------- test_math : 1.356 sec.
Process exited with code 137.
Output for 5.3.27
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.27 Platform : Linux -------------------------------------- test_math : 1.513 sec.
Process exited with code 137.
Output for 5.3.26
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.26 Platform : Linux -------------------------------------- test_math : 1.443 sec.
Process exited with code 137.
Output for 5.3.25
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.25 Platform : Linux -------------------------------------- test_math : 0.934 sec. test_stringmanipulation : 0.753 sec. test_loops : 0.688 sec.
Process exited with code 137.
Output for 5.3.24
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.24 Platform : Linux -------------------------------------- test_math : 1.691 sec.
Process exited with code 137.
Output for 5.3.23
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.23 Platform : Linux -------------------------------------- test_math : 1.661 sec.
Process exited with code 137.
Output for 5.3.22
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.22 Platform : Linux -------------------------------------- test_math : 0.990 sec. test_stringmanipulation : 0.758 sec.
Process exited with code 137.
Output for 5.3.21
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.21 Platform : Linux -------------------------------------- test_math : 1.651 sec.
Process exited with code 137.
Output for 5.3.20
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.20 Platform : Linux -------------------------------------- test_math : 1.700 sec.
Process exited with code 137.
Output for 5.3.19
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.19 Platform : Linux -------------------------------------- test_math : 0.830 sec. test_stringmanipulation : 0.726 sec. test_loops : 0.691 sec.
Process exited with code 137.
Output for 5.3.18
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.18 Platform : Linux -------------------------------------- test_math : 0.823 sec. test_stringmanipulation : 0.732 sec. test_loops : 0.711 sec.
Process exited with code 137.
Output for 5.3.17
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.17 Platform : Linux -------------------------------------- test_math : 1.635 sec.
Process exited with code 137.
Output for 5.3.16
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.16 Platform : Linux -------------------------------------- test_math : 1.709 sec.
Process exited with code 137.
Output for 5.3.15
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.15 Platform : Linux -------------------------------------- test_math : 1.915 sec.
Process exited with code 137.
Output for 5.3.14
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.14 Platform : Linux -------------------------------------- test_math : 1.913 sec.
Process exited with code 137.
Output for 5.3.13
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.13 Platform : Linux -------------------------------------- test_math : 0.930 sec. test_stringmanipulation : 0.873 sec.
Process exited with code 137.
Output for 5.3.12
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.12 Platform : Linux -------------------------------------- test_math : 0.950 sec. test_stringmanipulation : 0.888 sec.
Process exited with code 137.
Output for 5.3.11
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.11 Platform : Linux -------------------------------------- test_math : 0.946 sec. test_stringmanipulation : 0.754 sec. test_loops : 0.694 sec.
Process exited with code 137.
Output for 5.3.10
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.10 Platform : Linux -------------------------------------- test_math : 0.922 sec. test_stringmanipulation : 0.737 sec. test_loops : 0.692 sec.
Process exited with code 137.
Output for 5.3.9
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.9 Platform : Linux -------------------------------------- test_math : 1.394 sec.
Process exited with code 137.
Output for 5.3.8
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.8 Platform : Linux -------------------------------------- test_math : 1.424 sec.
Process exited with code 137.
Output for 5.3.7
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.7 Platform : Linux -------------------------------------- test_math : 1.459 sec.
Process exited with code 137.
Output for 5.3.6
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.6 Platform : Linux -------------------------------------- test_math : 0.895 sec. test_stringmanipulation : 0.744 sec. test_loops : 0.724 sec.
Process exited with code 137.
Output for 5.3.5
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.5 Platform : Linux -------------------------------------- test_math : 1.511 sec.
Process exited with code 137.
Output for 5.3.4
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.4 Platform : Linux -------------------------------------- test_math : 1.284 sec.
Process exited with code 137.
Output for 5.3.3
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.3 Platform : Linux -------------------------------------- test_math : 0.969 sec. test_stringmanipulation : 0.746 sec.
Process exited with code 137.
Output for 5.3.2
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.2 Platform : Linux -------------------------------------- test_math : 0.861 sec. test_stringmanipulation : 0.813 sec.
Process exited with code 137.
Output for 5.3.1
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.1 Platform : Linux -------------------------------------- test_math : 1.576 sec.
Process exited with code 137.
Output for 5.3.0
Notice: Undefined index: SERVER_NAME in /in/fFjtY on line 56 Notice: Undefined index: SERVER_ADDR in /in/fFjtY on line 56 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:32:39 Server : @ PHP version : 5.3.0 Platform : Linux -------------------------------------- test_math : 1.717 sec.
Process exited with code 137.

preferences:
169.67 ms | 401 KiB | 179 Q