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.3.12
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.3.12 Platform : Linux -------------------------------------- test_math : 0.267 sec. test_stringmanipulation : 0.389 sec. test_loops : 0.231 sec. test_ifelse : 0.388 sec. -------------------------------------- Total time: : 1.275 sec.</pre>
Output for 7.3.11
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.3.11 Platform : Linux -------------------------------------- test_math : 0.235 sec. test_stringmanipulation : 0.346 sec. test_loops : 0.214 sec. test_ifelse : 0.332 sec. -------------------------------------- Total time: : 1.127 sec.</pre>
Output for 7.3.10
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.3.10 Platform : Linux -------------------------------------- test_math : 0.241 sec. test_stringmanipulation : 0.348 sec. test_loops : 0.214 sec. test_ifelse : 0.358 sec. -------------------------------------- Total time: : 1.161 sec.</pre>
Output for 7.3.9
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.3.9 Platform : Linux -------------------------------------- test_math : 0.233 sec. test_stringmanipulation : 0.342 sec. test_loops : 0.214 sec. test_ifelse : 0.320 sec. -------------------------------------- Total time: : 1.109 sec.</pre>
Output for 7.3.8
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.3.8 Platform : Linux -------------------------------------- test_math : 0.267 sec. test_stringmanipulation : 0.384 sec. test_loops : 0.229 sec. test_ifelse : 0.356 sec. -------------------------------------- Total time: : 1.236 sec.</pre>
Output for 7.3.7
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.3.7 Platform : Linux -------------------------------------- test_math : 0.270 sec. test_stringmanipulation : 0.343 sec. test_loops : 0.215 sec. test_ifelse : 0.342 sec. -------------------------------------- Total time: : 1.17 sec.</pre>
Output for 7.3.6
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.3.6 Platform : Linux -------------------------------------- test_math : 0.234 sec. test_stringmanipulation : 0.350 sec. test_loops : 0.215 sec. test_ifelse : 0.317 sec. -------------------------------------- Total time: : 1.116 sec.</pre>
Output for 7.3.5
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.3.5 Platform : Linux -------------------------------------- test_math : 0.225 sec. test_stringmanipulation : 0.341 sec. test_loops : 0.214 sec. test_ifelse : 0.314 sec. -------------------------------------- Total time: : 1.094 sec.</pre>
Output for 7.3.4
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.3.4 Platform : Linux -------------------------------------- test_math : 0.226 sec. test_stringmanipulation : 0.339 sec. test_loops : 0.214 sec. test_ifelse : 0.342 sec. -------------------------------------- Total time: : 1.121 sec.</pre>
Output for 7.3.3
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.3.3 Platform : Linux -------------------------------------- test_math : 0.227 sec. test_stringmanipulation : 0.339 sec. test_loops : 0.214 sec. test_ifelse : 0.314 sec. -------------------------------------- Total time: : 1.094 sec.</pre>
Output for 7.3.2
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.3.2 Platform : Linux -------------------------------------- test_math : 0.267 sec. test_stringmanipulation : 0.386 sec. test_loops : 0.230 sec. test_ifelse : 0.347 sec. -------------------------------------- Total time: : 1.23 sec.</pre>
Output for 7.3.1
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.3.1 Platform : Linux -------------------------------------- test_math : 0.260 sec. test_stringmanipulation : 0.392 sec. test_loops : 0.228 sec. test_ifelse : 0.380 sec. -------------------------------------- Total time: : 1.26 sec.</pre>
Output for 7.3.0
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.3.0 Platform : Linux -------------------------------------- test_math : 0.231 sec. test_stringmanipulation : 0.342 sec. test_loops : 0.214 sec. test_ifelse : 0.322 sec. -------------------------------------- Total time: : 1.109 sec.</pre>
Output for 7.2.24
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.24 Platform : Linux -------------------------------------- test_math : 0.273 sec. test_stringmanipulation : 0.410 sec. test_loops : 0.221 sec. test_ifelse : 0.351 sec. -------------------------------------- Total time: : 1.255 sec.</pre>
Output for 7.2.23
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.23 Platform : Linux -------------------------------------- test_math : 0.266 sec. test_stringmanipulation : 0.404 sec. test_loops : 0.219 sec. test_ifelse : 0.353 sec. -------------------------------------- Total time: : 1.242 sec.</pre>
Output for 7.2.22
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.22 Platform : Linux -------------------------------------- test_math : 0.276 sec. test_stringmanipulation : 0.410 sec. test_loops : 0.217 sec. test_ifelse : 0.315 sec. -------------------------------------- Total time: : 1.218 sec.</pre>
Output for 7.2.21
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.21 Platform : Linux -------------------------------------- test_math : 0.279 sec. test_stringmanipulation : 0.426 sec. test_loops : 0.217 sec. test_ifelse : 0.336 sec. -------------------------------------- Total time: : 1.258 sec.</pre>
Output for 7.2.20
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.20 Platform : Linux -------------------------------------- test_math : 0.308 sec. test_stringmanipulation : 0.414 sec. test_loops : 0.219 sec. test_ifelse : 0.321 sec. -------------------------------------- Total time: : 1.262 sec.</pre>
Output for 7.2.19
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.19 Platform : Linux -------------------------------------- test_math : 0.276 sec. test_stringmanipulation : 0.404 sec. test_loops : 0.216 sec. test_ifelse : 0.366 sec. -------------------------------------- Total time: : 1.262 sec.</pre>
Output for 7.2.18
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.18 Platform : Linux -------------------------------------- test_math : 0.273 sec. test_stringmanipulation : 0.421 sec. test_loops : 0.216 sec. test_ifelse : 0.332 sec. -------------------------------------- Total time: : 1.242 sec.</pre>
Output for 7.2.17
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.17 Platform : Linux -------------------------------------- test_math : 0.271 sec. test_stringmanipulation : 0.409 sec. test_loops : 0.216 sec. test_ifelse : 0.333 sec. -------------------------------------- Total time: : 1.229 sec.</pre>
Output for 7.2.16
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.16 Platform : Linux -------------------------------------- test_math : 0.271 sec. test_stringmanipulation : 0.409 sec. test_loops : 0.216 sec. test_ifelse : 0.364 sec. -------------------------------------- Total time: : 1.26 sec.</pre>
Output for 7.2.15
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.15 Platform : Linux -------------------------------------- test_math : 0.266 sec. test_stringmanipulation : 0.398 sec. test_loops : 0.216 sec. test_ifelse : 0.314 sec. -------------------------------------- Total time: : 1.194 sec.</pre>
Output for 7.2.14
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.14 Platform : Linux -------------------------------------- test_math : 0.270 sec. test_stringmanipulation : 0.409 sec. test_loops : 0.216 sec. test_ifelse : 0.315 sec. -------------------------------------- Total time: : 1.21 sec.</pre>
Output for 7.2.13
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.13 Platform : Linux -------------------------------------- test_math : 0.291 sec. test_stringmanipulation : 0.458 sec. test_loops : 0.241 sec. test_ifelse : 0.355 sec. -------------------------------------- Total time: : 1.345 sec.</pre>
Output for 7.2.12
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.12 Platform : Linux -------------------------------------- test_math : 0.269 sec. test_stringmanipulation : 0.411 sec. test_loops : 0.217 sec. test_ifelse : 0.374 sec. -------------------------------------- Total time: : 1.271 sec.</pre>
Output for 7.2.11
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.11 Platform : Linux -------------------------------------- test_math : 0.267 sec. test_stringmanipulation : 0.403 sec. test_loops : 0.217 sec. test_ifelse : 0.330 sec. -------------------------------------- Total time: : 1.217 sec.</pre>
Output for 7.2.10
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.10 Platform : Linux -------------------------------------- test_math : 0.284 sec. test_stringmanipulation : 0.412 sec. test_loops : 0.216 sec. test_ifelse : 0.320 sec. -------------------------------------- Total time: : 1.232 sec.</pre>
Output for 7.2.9
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.9 Platform : Linux -------------------------------------- test_math : 0.272 sec. test_stringmanipulation : 0.406 sec. test_loops : 0.216 sec. test_ifelse : 0.329 sec. -------------------------------------- Total time: : 1.223 sec.</pre>
Output for 7.2.8
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.8 Platform : Linux -------------------------------------- test_math : 0.309 sec. test_stringmanipulation : 0.455 sec. test_loops : 0.232 sec. test_ifelse : 0.359 sec. -------------------------------------- Total time: : 1.355 sec.</pre>
Output for 7.2.7
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.7 Platform : Linux -------------------------------------- test_math : 0.260 sec. test_stringmanipulation : 0.398 sec. test_loops : 0.216 sec. test_ifelse : 0.329 sec. -------------------------------------- Total time: : 1.203 sec.</pre>
Output for 7.2.6
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.6 Platform : Linux -------------------------------------- test_math : 0.275 sec. test_stringmanipulation : 0.414 sec. test_loops : 0.216 sec. test_ifelse : 0.365 sec. -------------------------------------- Total time: : 1.27 sec.</pre>
Output for 7.2.5
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.5 Platform : Linux -------------------------------------- test_math : 0.281 sec. test_stringmanipulation : 0.414 sec. test_loops : 0.216 sec. test_ifelse : 0.331 sec. -------------------------------------- Total time: : 1.242 sec.</pre>
Output for 7.2.4
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.4 Platform : Linux -------------------------------------- test_math : 0.276 sec. test_stringmanipulation : 0.416 sec. test_loops : 0.217 sec. test_ifelse : 0.329 sec. -------------------------------------- Total time: : 1.238 sec.</pre>
Output for 7.2.3
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.3 Platform : Linux -------------------------------------- test_math : 0.297 sec. test_stringmanipulation : 0.459 sec. test_loops : 0.237 sec. test_ifelse : 0.370 sec. -------------------------------------- Total time: : 1.363 sec.</pre>
Output for 7.2.2
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.2 Platform : Linux -------------------------------------- test_math : 0.261 sec. test_stringmanipulation : 0.404 sec. test_loops : 0.216 sec. test_ifelse : 0.330 sec. -------------------------------------- Total time: : 1.211 sec.</pre>
Output for 7.2.1
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.1 Platform : Linux -------------------------------------- test_math : 0.269 sec. test_stringmanipulation : 0.437 sec. test_loops : 0.223 sec. test_ifelse : 0.329 sec. -------------------------------------- Total time: : 1.258 sec.</pre>
Output for 7.2.0
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.2.0 Platform : Linux -------------------------------------- test_math : 0.293 sec. test_stringmanipulation : 0.458 sec. test_loops : 0.230 sec. test_ifelse : 0.340 sec. -------------------------------------- Total time: : 1.321 sec.</pre>
Output for 7.1.33
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.1.33 Platform : Linux -------------------------------------- test_math : 0.416 sec. test_stringmanipulation : 0.597 sec. test_loops : 0.561 sec. test_ifelse : 0.561 sec. -------------------------------------- Total time: : 2.135 sec.</pre>
Output for 7.1.32
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.1.32 Platform : Linux -------------------------------------- test_math : 0.374 sec. test_stringmanipulation : 0.537 sec. test_loops : 0.526 sec. test_ifelse : 0.544 sec. -------------------------------------- Total time: : 1.981 sec.</pre>
Output for 7.1.31
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.1.31 Platform : Linux -------------------------------------- test_math : 0.371 sec. test_stringmanipulation : 0.535 sec. test_loops : 0.555 sec. test_ifelse : 0.564 sec. -------------------------------------- Total time: : 2.025 sec.</pre>
Output for 7.1.30
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.1.30 Platform : Linux -------------------------------------- test_math : 0.371 sec. test_stringmanipulation : 0.530 sec. test_loops : 0.538 sec. test_ifelse : 0.549 sec. -------------------------------------- Total time: : 1.988 sec.</pre>
Output for 7.1.29
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.1.29 Platform : Linux -------------------------------------- test_math : 0.384 sec. test_stringmanipulation : 0.543 sec. test_loops : 0.529 sec. test_ifelse : 0.526 sec. -------------------------------------- Total time: : 1.982 sec.</pre>
Output for 7.1.28
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.1.28 Platform : Linux -------------------------------------- test_math : 0.373 sec. test_stringmanipulation : 0.580 sec. test_loops : 0.538 sec. test_ifelse : 0.537 sec. -------------------------------------- Total time: : 2.028 sec.</pre>
Output for 7.1.27
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.1.27 Platform : Linux -------------------------------------- test_math : 0.367 sec. test_stringmanipulation : 0.534 sec. test_loops : 0.527 sec. test_ifelse : 0.543 sec. -------------------------------------- Total time: : 1.971 sec.</pre>
Output for 7.1.26
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.1.26 Platform : Linux -------------------------------------- test_math : 0.373 sec. test_stringmanipulation : 0.535 sec. test_loops : 0.529 sec. test_ifelse : 0.527 sec. -------------------------------------- Total time: : 1.964 sec.</pre>
Output for 7.1.25
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.1.25 Platform : Linux -------------------------------------- test_math : 0.389 sec. test_stringmanipulation : 0.547 sec. test_loops : 0.532 sec. test_ifelse : 0.530 sec. -------------------------------------- Total time: : 1.998 sec.</pre>
Output for 7.1.7
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.1.7 Platform : Linux -------------------------------------- test_math : 0.308 sec. test_stringmanipulation : 0.361 sec. test_loops : 0.204 sec. test_ifelse : 0.236 sec. -------------------------------------- Total time: : 1.109 sec.</pre>
Output for 7.1.6
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.1.6 Platform : Linux -------------------------------------- test_math : 0.272 sec. test_stringmanipulation : 0.377 sec. test_loops : 0.218 sec. test_ifelse : 0.230 sec. -------------------------------------- Total time: : 1.097 sec.</pre>
Output for 7.1.5
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.1.5 Platform : Linux -------------------------------------- test_math : 0.236 sec. test_stringmanipulation : 0.320 sec. test_loops : 0.201 sec. test_ifelse : 0.209 sec. -------------------------------------- Total time: : 0.966 sec.</pre>
Output for 7.1.0
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.1.0 Platform : Linux -------------------------------------- test_math : 0.233 sec. test_stringmanipulation : 0.319 sec. test_loops : 0.111 sec. test_ifelse : 0.486 sec. -------------------------------------- Total time: : 1.149 sec.</pre>
Output for 7.0.20
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.0.20 Platform : Linux -------------------------------------- test_math : 0.257 sec. test_stringmanipulation : 0.367 sec. test_loops : 0.234 sec. test_ifelse : 0.225 sec. -------------------------------------- Total time: : 1.083 sec.</pre>
Output for 7.0.14
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.0.14 Platform : Linux -------------------------------------- test_math : 0.272 sec. test_stringmanipulation : 0.325 sec. test_loops : 0.143 sec. test_ifelse : 0.447 sec. -------------------------------------- Total time: : 1.187 sec.</pre>
Output for 7.0.10
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.0.10 Platform : Linux -------------------------------------- test_math : 0.276 sec. test_stringmanipulation : 0.350 sec. test_loops : 0.189 sec. test_ifelse : 0.193 sec. -------------------------------------- Total time: : 1.008 sec.</pre>
Output for 7.0.9
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.0.9 Platform : Linux -------------------------------------- test_math : 0.269 sec. test_stringmanipulation : 0.347 sec. test_loops : 0.188 sec. test_ifelse : 0.194 sec. -------------------------------------- Total time: : 0.998 sec.</pre>
Output for 7.0.8
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.0.8 Platform : Linux -------------------------------------- test_math : 0.259 sec. test_stringmanipulation : 0.330 sec. test_loops : 0.204 sec. test_ifelse : 0.203 sec. -------------------------------------- Total time: : 0.996 sec.</pre>
Output for 7.0.7
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.0.7 Platform : Linux -------------------------------------- test_math : 0.299 sec. test_stringmanipulation : 0.357 sec. test_loops : 0.199 sec. test_ifelse : 0.174 sec. -------------------------------------- Total time: : 1.029 sec.</pre>
Output for 7.0.6
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.0.6 Platform : Linux -------------------------------------- test_math : 0.300 sec. test_stringmanipulation : 0.352 sec. test_loops : 0.236 sec. test_ifelse : 0.208 sec. -------------------------------------- Total time: : 1.096 sec.</pre>
Output for 7.0.5
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.0.5 Platform : Linux -------------------------------------- test_math : 0.352 sec. test_stringmanipulation : 0.351 sec. test_loops : 0.228 sec. test_ifelse : 0.205 sec. -------------------------------------- Total time: : 1.136 sec.</pre>
Output for 7.0.4
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.0.4 Platform : Linux -------------------------------------- test_math : 0.264 sec. test_stringmanipulation : 0.297 sec. test_loops : 0.191 sec. test_ifelse : 0.189 sec. -------------------------------------- Total time: : 0.941 sec.</pre>
Output for 7.0.3
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.0.3 Platform : Linux -------------------------------------- test_math : 0.299 sec. test_stringmanipulation : 0.347 sec. test_loops : 0.196 sec. test_ifelse : 0.191 sec. -------------------------------------- Total time: : 1.033 sec.</pre>
Output for 7.0.2
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.0.2 Platform : Linux -------------------------------------- test_math : 0.285 sec. test_stringmanipulation : 0.343 sec. test_loops : 0.185 sec. test_ifelse : 0.182 sec. -------------------------------------- Total time: : 0.995 sec.</pre>
Output for 7.0.1
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.0.1 Platform : Linux -------------------------------------- test_math : 0.276 sec. test_stringmanipulation : 0.285 sec. test_loops : 0.162 sec. test_ifelse : 0.187 sec. -------------------------------------- Total time: : 0.91 sec.</pre>
Output for 7.0.0
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 7.0.0 Platform : Linux -------------------------------------- test_math : 0.287 sec. test_stringmanipulation : 0.289 sec. test_loops : 0.162 sec. test_ifelse : 0.172 sec. -------------------------------------- Total time: : 0.91 sec.</pre>
Output for 5.6.28
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.28 Platform : Linux -------------------------------------- test_math : -0.685 sec. test_stringmanipulation : 0.797 sec.
Process exited with code 137.
Output for 5.6.25
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.25 Platform : Linux -------------------------------------- test_math : 0.920 sec. test_stringmanipulation : 0.718 sec. test_loops : 0.535 sec.
Process exited with code 137.
Output for 5.6.24
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.24 Platform : Linux -------------------------------------- test_math : 0.884 sec. test_stringmanipulation : 0.709 sec. test_loops : 0.508 sec.
Process exited with code 137.
Output for 5.6.23
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.23 Platform : Linux -------------------------------------- test_math : 0.894 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/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.22 Platform : Linux -------------------------------------- test_math : 0.758 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.508 sec. test_ifelse : 0.363 sec. -------------------------------------- Total time: : 2.351 sec.</pre>
Output for 5.6.21
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.21 Platform : Linux -------------------------------------- test_math : 0.886 sec. test_stringmanipulation : 0.712 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.6.20
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.20 Platform : Linux -------------------------------------- test_math : 0.922 sec. test_stringmanipulation : 0.732 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.6.19
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.19 Platform : Linux -------------------------------------- test_math : 0.767 sec. test_stringmanipulation : 0.742 sec. test_loops : 0.504 sec. test_ifelse : 0.365 sec. -------------------------------------- Total time: : 2.378 sec.</pre>
Output for 5.6.18
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.18 Platform : Linux -------------------------------------- test_math : 0.891 sec. test_stringmanipulation : 0.864 sec. test_loops : 0.575 sec.
Process exited with code 137.
Output for 5.6.17
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.17 Platform : Linux -------------------------------------- test_math : 0.831 sec. test_stringmanipulation : 0.819 sec. test_loops : 0.562 sec.
Process exited with code 137.
Output for 5.6.16
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.16 Platform : Linux -------------------------------------- test_math : 0.913 sec. test_stringmanipulation : 0.763 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.6.15
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.15 Platform : Linux -------------------------------------- test_math : 0.925 sec. test_stringmanipulation : 0.834 sec. test_loops : 0.584 sec.
Process exited with code 137.
Output for 5.6.14
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.14 Platform : Linux -------------------------------------- test_math : 0.915 sec. test_stringmanipulation : 0.727 sec. test_loops : 0.505 sec.
Process exited with code 137.
Output for 5.6.13
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.13 Platform : Linux -------------------------------------- test_math : 0.882 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.12
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.12 Platform : Linux -------------------------------------- test_math : 0.911 sec. test_stringmanipulation : 0.726 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.11
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.11 Platform : Linux -------------------------------------- test_math : 0.883 sec. test_stringmanipulation : 0.839 sec. test_loops : 0.557 sec.
Process exited with code 137.
Output for 5.6.10
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.10 Platform : Linux -------------------------------------- test_math : 0.834 sec. test_stringmanipulation : 0.862 sec. test_loops : 0.574 sec.
Process exited with code 137.
Output for 5.6.9
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.9 Platform : Linux -------------------------------------- test_math : 0.880 sec. test_stringmanipulation : 0.889 sec. test_loops : 0.599 sec.
Process exited with code 137.
Output for 5.6.8
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.8 Platform : Linux -------------------------------------- test_math : 0.953 sec. test_stringmanipulation : 0.731 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.6.7
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.7 Platform : Linux -------------------------------------- test_math : 1.043 sec. test_stringmanipulation : 0.734 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.6
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.6 Platform : Linux -------------------------------------- test_math : 0.937 sec. test_stringmanipulation : 0.750 sec. test_loops : 0.508 sec.
Process exited with code 137.
Output for 5.6.5
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.5 Platform : Linux -------------------------------------- test_math : 0.937 sec. test_stringmanipulation : 0.738 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.4
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.4 Platform : Linux -------------------------------------- test_math : 0.873 sec. test_stringmanipulation : 0.719 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.3
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.3 Platform : Linux -------------------------------------- test_math : 0.891 sec. test_stringmanipulation : 0.734 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.6.2
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.2 Platform : Linux -------------------------------------- test_math : 0.798 sec. test_stringmanipulation : 0.815 sec. test_loops : 0.505 sec.
Process exited with code 137.
Output for 5.6.1
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.1 Platform : Linux -------------------------------------- test_math : 0.938 sec. test_stringmanipulation : 0.726 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.6.0
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.6.0 Platform : Linux -------------------------------------- test_math : 0.855 sec. test_stringmanipulation : 0.743 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.5.38
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.38 Platform : Linux -------------------------------------- test_math : 0.883 sec. test_stringmanipulation : 0.718 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.5.37
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.37 Platform : Linux -------------------------------------- test_math : 0.750 sec. test_stringmanipulation : 0.721 sec. test_loops : 0.504 sec. test_ifelse : 0.363 sec. -------------------------------------- Total time: : 2.338 sec.</pre>
Output for 5.5.36
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.36 Platform : Linux -------------------------------------- test_math : 0.916 sec. test_stringmanipulation : 0.728 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.5.35
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.35 Platform : Linux -------------------------------------- test_math : 0.943 sec. test_stringmanipulation : 0.725 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.5.34
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.34 Platform : Linux -------------------------------------- test_math : 1.311 sec.
Process exited with code 137.
Output for 5.5.33
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.33 Platform : Linux -------------------------------------- test_math : 1.236 sec.
Process exited with code 137.
Output for 5.5.32
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.32 Platform : Linux -------------------------------------- test_math : 0.912 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.566 sec.
Process exited with code 137.
Output for 5.5.31
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.31 Platform : Linux -------------------------------------- test_math : 0.949 sec. test_stringmanipulation : 0.729 sec. test_loops : 0.516 sec.
Process exited with code 137.
Output for 5.5.30
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.30 Platform : Linux -------------------------------------- test_math : 0.976 sec. test_stringmanipulation : 0.732 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.5.29
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.29 Platform : Linux -------------------------------------- test_math : 1.362 sec.
Process exited with code 137.
Output for 5.5.28
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.28 Platform : Linux -------------------------------------- test_math : 0.951 sec. test_stringmanipulation : 0.723 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.5.27
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.27 Platform : Linux -------------------------------------- test_math : 1.223 sec.
Process exited with code 137.
Output for 5.5.26
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.26 Platform : Linux -------------------------------------- test_math : 1.305 sec.
Process exited with code 137.
Output for 5.5.25
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.25 Platform : Linux -------------------------------------- test_math : 0.960 sec. test_stringmanipulation : 0.815 sec. test_loops : 0.505 sec.
Process exited with code 137.
Output for 5.5.24
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.24 Platform : Linux -------------------------------------- test_math : 0.936 sec. test_stringmanipulation : 0.723 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.5.23
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.23 Platform : Linux -------------------------------------- test_math : 1.182 sec.
Process exited with code 137.
Output for 5.5.22
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.22 Platform : Linux -------------------------------------- test_math : 0.841 sec. test_stringmanipulation : 0.799 sec. test_loops : 0.545 sec.
Process exited with code 137.
Output for 5.5.21
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.21 Platform : Linux -------------------------------------- test_math : 1.244 sec.
Process exited with code 137.
Output for 5.5.20
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.20 Platform : Linux -------------------------------------- test_math : 0.941 sec. test_stringmanipulation : 0.738 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.5.19
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.19 Platform : Linux -------------------------------------- test_math : 1.432 sec.
Process exited with code 137.
Output for 5.5.18
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.18 Platform : Linux -------------------------------------- test_math : 1.386 sec.
Process exited with code 137.
Output for 5.5.16
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.16 Platform : Linux -------------------------------------- test_math : 1.207 sec. test_stringmanipulation : 1.224 sec.
Process exited with code 137.
Output for 5.5.15
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.15 Platform : Linux -------------------------------------- test_math : 0.915 sec. test_stringmanipulation : 0.728 sec. test_loops : 0.504 sec.
Process exited with code 137.
Output for 5.5.14
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.14 Platform : Linux -------------------------------------- test_math : 0.810 sec. test_stringmanipulation : 0.720 sec. test_loops : 0.503 sec. test_ifelse : 0.363 sec. -------------------------------------- Total time: : 2.396 sec.</pre>
Output for 5.5.13
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.13 Platform : Linux -------------------------------------- test_math : 0.945 sec. test_stringmanipulation : 0.727 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.5.12
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.12 Platform : Linux -------------------------------------- test_math : 1.300 sec.
Process exited with code 137.
Output for 5.5.11
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.11 Platform : Linux -------------------------------------- test_math : 0.988 sec. test_stringmanipulation : 0.725 sec. test_loops : 0.503 sec.
Process exited with code 137.
Output for 5.5.10
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.10 Platform : Linux -------------------------------------- test_math : 0.951 sec. test_stringmanipulation : 0.736 sec. test_loops : 0.512 sec.
Process exited with code 137.
Output for 5.5.9
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.9 Platform : Linux -------------------------------------- test_math : 1.323 sec.
Process exited with code 137.
Output for 5.5.8
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.8 Platform : Linux -------------------------------------- test_math : 0.899 sec. test_stringmanipulation : 0.731 sec. test_loops : 0.513 sec.
Process exited with code 137.
Output for 5.5.7
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.7 Platform : Linux -------------------------------------- test_math : 1.296 sec.
Process exited with code 137.
Output for 5.5.6
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.6 Platform : Linux -------------------------------------- test_math : 0.781 sec. test_stringmanipulation : 0.747 sec. test_loops : 0.515 sec. test_ifelse : 0.364 sec. -------------------------------------- Total time: : 2.407 sec.</pre>
Output for 5.5.5
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.5 Platform : Linux -------------------------------------- test_math : 1.268 sec.
Process exited with code 137.
Output for 5.5.4
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.4 Platform : Linux -------------------------------------- test_math : 1.180 sec. test_stringmanipulation : 1.225 sec.
Process exited with code 137.
Output for 5.5.3
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.3 Platform : Linux -------------------------------------- test_math : 1.245 sec.
Process exited with code 137.
Output for 5.5.2
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.2 Platform : Linux -------------------------------------- test_math : 0.797 sec. test_stringmanipulation : 0.720 sec. test_loops : 0.503 sec. test_ifelse : 0.371 sec. -------------------------------------- Total time: : 2.391 sec.</pre>
Output for 5.5.1
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.1 Platform : Linux -------------------------------------- test_math : 1.216 sec.
Process exited with code 137.
Output for 5.5.0
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.5.0 Platform : Linux -------------------------------------- test_math : 0.846 sec. test_stringmanipulation : 0.724 sec. test_loops : 0.504 sec. test_ifelse : 0.364 sec. -------------------------------------- Total time: : 2.438 sec.</pre>
Output for 5.4.45
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.45 Platform : Linux -------------------------------------- test_math : 0.959 sec. test_stringmanipulation : 0.745 sec. test_loops : 0.510 sec.
Process exited with code 137.
Output for 5.4.44
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.44 Platform : Linux -------------------------------------- test_math : 1.185 sec.
Process exited with code 137.
Output for 5.4.43
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.43 Platform : Linux -------------------------------------- test_math : 0.898 sec. test_stringmanipulation : 0.879 sec. test_loops : 0.600 sec.
Process exited with code 137.
Output for 5.4.42
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.42 Platform : Linux -------------------------------------- test_math : 1.340 sec.
Process exited with code 137.
Output for 5.4.41
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.41 Platform : Linux -------------------------------------- test_math : 1.123 sec.
Process exited with code 137.
Output for 5.4.40
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.40 Platform : Linux -------------------------------------- test_math : 0.767 sec. test_stringmanipulation : 0.696 sec. test_loops : 0.505 sec. test_ifelse : 0.349 sec. -------------------------------------- Total time: : 2.317 sec.</pre>
Output for 5.4.39
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.39 Platform : Linux -------------------------------------- test_math : 0.916 sec. test_stringmanipulation : 0.721 sec. test_loops : 0.510 sec.
Process exited with code 137.
Output for 5.4.38
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.38 Platform : Linux -------------------------------------- test_math : 0.784 sec. test_stringmanipulation : 0.711 sec. test_loops : 0.506 sec. test_ifelse : 0.350 sec. -------------------------------------- Total time: : 2.351 sec.</pre>
Output for 5.4.37
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.37 Platform : Linux -------------------------------------- test_math : 0.891 sec. test_stringmanipulation : 0.712 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.4.36
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.36 Platform : Linux -------------------------------------- test_math : 0.782 sec. test_stringmanipulation : 0.704 sec. test_loops : 0.506 sec. test_ifelse : 0.349 sec. -------------------------------------- Total time: : 2.341 sec.</pre>
Output for 5.4.35
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.35 Platform : Linux -------------------------------------- test_math : 1.221 sec.
Process exited with code 137.
Output for 5.4.34
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.34 Platform : Linux -------------------------------------- test_math : 0.933 sec. test_stringmanipulation : 0.718 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.4.32
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.32 Platform : Linux -------------------------------------- test_math : 1.261 sec.
Process exited with code 137.
Output for 5.4.31
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.31 Platform : Linux -------------------------------------- test_math : 1.002 sec. test_stringmanipulation : 0.754 sec.
Process exited with code 137.
Output for 5.4.30
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.30 Platform : Linux -------------------------------------- test_math : 0.770 sec. test_stringmanipulation : 0.711 sec. test_loops : 0.505 sec. test_ifelse : 0.349 sec. -------------------------------------- Total time: : 2.335 sec.</pre>
Output for 5.4.29
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.29 Platform : Linux -------------------------------------- test_math : 0.934 sec. test_stringmanipulation : 0.737 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.4.28
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.28 Platform : Linux -------------------------------------- test_math : 0.804 sec. test_stringmanipulation : 0.713 sec. test_loops : 0.508 sec.
Process exited with code 137.
Output for 5.4.27
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.27 Platform : Linux -------------------------------------- test_math : 0.908 sec. test_stringmanipulation : 0.924 sec. test_loops : 0.557 sec.
Process exited with code 137.
Output for 5.4.26
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.26 Platform : Linux -------------------------------------- test_math : 0.830 sec. test_stringmanipulation : 0.727 sec. test_loops : 0.505 sec. test_ifelse : 0.349 sec. -------------------------------------- Total time: : 2.411 sec.</pre>
Output for 5.4.25
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.25 Platform : Linux -------------------------------------- test_math : 0.935 sec. test_stringmanipulation : 0.710 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.4.24
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.24 Platform : Linux -------------------------------------- test_math : 1.555 sec.
Process exited with code 137.
Output for 5.4.23
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.23 Platform : Linux -------------------------------------- test_math : 0.892 sec. test_stringmanipulation : 0.719 sec. test_loops : 0.508 sec.
Process exited with code 137.
Output for 5.4.22
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.22 Platform : Linux -------------------------------------- test_math : 1.228 sec.
Process exited with code 137.
Output for 5.4.21
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.21 Platform : Linux -------------------------------------- test_math : 0.924 sec. test_stringmanipulation : 0.875 sec. test_loops : 0.582 sec.
Process exited with code 137.
Output for 5.4.20
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.20 Platform : Linux -------------------------------------- test_math : 1.088 sec. test_stringmanipulation : 0.881 sec.
Process exited with code 137.
Output for 5.4.19
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.19 Platform : Linux -------------------------------------- test_math : 0.888 sec. test_stringmanipulation : 0.824 sec. test_loops : 0.622 sec.
Process exited with code 137.
Output for 5.4.18
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.18 Platform : Linux -------------------------------------- test_math : 0.847 sec. test_stringmanipulation : 0.718 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.4.17
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.17 Platform : Linux -------------------------------------- test_math : 1.563 sec.
Process exited with code 137.
Output for 5.4.16
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.16 Platform : Linux -------------------------------------- test_math : 1.366 sec.
Process exited with code 137.
Output for 5.4.15
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.15 Platform : Linux -------------------------------------- test_math : 1.023 sec. test_stringmanipulation : 0.804 sec. test_loops : 0.581 sec.
Process exited with code 137.
Output for 5.4.14
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.14 Platform : Linux -------------------------------------- test_math : 1.259 sec.
Process exited with code 137.
Output for 5.4.13
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.13 Platform : Linux -------------------------------------- test_math : 0.917 sec. test_stringmanipulation : 0.719 sec. test_loops : 0.506 sec.
Process exited with code 137.
Output for 5.4.12
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.12 Platform : Linux -------------------------------------- test_math : 0.832 sec. test_stringmanipulation : 0.745 sec. test_loops : 0.508 sec. test_ifelse : 0.350 sec. -------------------------------------- Total time: : 2.435 sec.</pre>
Output for 5.4.11
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.11 Platform : Linux -------------------------------------- test_math : 1.199 sec.
Process exited with code 137.
Output for 5.4.10
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.10 Platform : Linux -------------------------------------- test_math : 0.754 sec. test_stringmanipulation : 0.722 sec. test_loops : 0.508 sec. test_ifelse : 0.349 sec. -------------------------------------- Total time: : 2.333 sec.</pre>
Output for 5.4.9
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.9 Platform : Linux -------------------------------------- test_math : 0.876 sec. test_stringmanipulation : 0.878 sec. test_loops : 0.581 sec.
Process exited with code 137.
Output for 5.4.8
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.8 Platform : Linux -------------------------------------- test_math : 0.902 sec. test_stringmanipulation : 0.864 sec. test_loops : 0.587 sec.
Process exited with code 137.
Output for 5.4.7
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.7 Platform : Linux -------------------------------------- test_math : 0.882 sec. test_stringmanipulation : 0.751 sec. test_loops : 0.505 sec.
Process exited with code 137.
Output for 5.4.6
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.6 Platform : Linux -------------------------------------- test_math : 1.409 sec.
Process exited with code 137.
Output for 5.4.5
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.5 Platform : Linux -------------------------------------- test_math : 0.815 sec. test_stringmanipulation : 0.714 sec. test_loops : 0.506 sec. test_ifelse : 0.349 sec. -------------------------------------- Total time: : 2.384 sec.</pre>
Output for 5.4.4
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.4 Platform : Linux -------------------------------------- test_math : 0.876 sec. test_stringmanipulation : 0.714 sec. test_loops : 0.506 sec. test_ifelse : 0.349 sec. -------------------------------------- Total time: : 2.445 sec.</pre>
Output for 5.4.3
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.3 Platform : Linux -------------------------------------- test_math : 0.868 sec. test_stringmanipulation : 0.716 sec. test_loops : 0.507 sec.
Process exited with code 137.
Output for 5.4.2
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.2 Platform : Linux -------------------------------------- test_math : 0.779 sec. test_stringmanipulation : 0.710 sec. test_loops : 0.505 sec. test_ifelse : 0.350 sec. -------------------------------------- Total time: : 2.344 sec.</pre>
Output for 5.4.1
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.1 Platform : Linux -------------------------------------- test_math : 1.214 sec.
Process exited with code 137.
Output for 5.4.0
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.4.0 Platform : Linux -------------------------------------- test_math : 1.347 sec.
Process exited with code 137.
Output for 5.3.29
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.29 Platform : Linux -------------------------------------- test_math : 0.915 sec. test_stringmanipulation : 0.741 sec. test_loops : 0.700 sec.
Process exited with code 137.
Output for 5.3.28
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.28 Platform : Linux -------------------------------------- test_math : 0.797 sec. test_stringmanipulation : 0.780 sec.
Process exited with code 137.
Output for 5.3.27
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.27 Platform : Linux -------------------------------------- test_math : 1.601 sec.
Process exited with code 137.
Output for 5.3.26
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.26 Platform : Linux -------------------------------------- test_math : 1.653 sec.
Process exited with code 137.
Output for 5.3.25
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.25 Platform : Linux -------------------------------------- test_math : 0.971 sec. test_stringmanipulation : 1.058 sec.
Process exited with code 137.
Output for 5.3.24
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.24 Platform : Linux -------------------------------------- test_math : 1.620 sec.
Process exited with code 137.
Output for 5.3.23
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.23 Platform : Linux -------------------------------------- test_math : 0.898 sec. test_stringmanipulation : 0.827 sec. test_loops : 0.688 sec.
Process exited with code 137.
Output for 5.3.22
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.22 Platform : Linux -------------------------------------- test_math : 0.817 sec. test_stringmanipulation : 0.768 sec. test_loops : 0.696 sec.
Process exited with code 137.
Output for 5.3.21
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.21 Platform : Linux -------------------------------------- test_math : 0.810 sec. test_stringmanipulation : 0.741 sec. test_loops : 0.738 sec.
Process exited with code 137.
Output for 5.3.20
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.20 Platform : Linux -------------------------------------- test_math : 0.965 sec. test_stringmanipulation : 0.744 sec. test_loops : 0.695 sec.
Process exited with code 137.
Output for 5.3.19
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.19 Platform : Linux -------------------------------------- test_math : 0.971 sec. test_stringmanipulation : 0.812 sec.
Process exited with code 137.
Output for 5.3.18
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.18 Platform : Linux -------------------------------------- test_math : 0.994 sec. test_stringmanipulation : 0.930 sec.
Process exited with code 137.
Output for 5.3.17
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.17 Platform : Linux -------------------------------------- test_math : 0.941 sec. test_stringmanipulation : 0.747 sec. test_loops : 0.725 sec.
Process exited with code 137.
Output for 5.3.16
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.16 Platform : Linux -------------------------------------- test_math : 1.425 sec.
Process exited with code 137.
Output for 5.3.15
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.15 Platform : Linux -------------------------------------- test_math : 1.336 sec.
Process exited with code 137.
Output for 5.3.14
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.14 Platform : Linux -------------------------------------- test_math : 1.566 sec.
Process exited with code 137.
Output for 5.3.13
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.13 Platform : Linux -------------------------------------- test_math : 1.297 sec.
Process exited with code 137.
Output for 5.3.12
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.12 Platform : Linux -------------------------------------- test_math : 1.593 sec.
Process exited with code 137.
Output for 5.3.11
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.11 Platform : Linux -------------------------------------- test_math : 1.642 sec.
Process exited with code 137.
Output for 5.3.10
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.10 Platform : Linux -------------------------------------- test_math : 1.392 sec.
Process exited with code 137.
Output for 5.3.9
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.9 Platform : Linux -------------------------------------- test_math : 1.376 sec.
Process exited with code 137.
Output for 5.3.8
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.8 Platform : Linux -------------------------------------- test_math : 0.950 sec. test_stringmanipulation : 0.963 sec.
Process exited with code 137.
Output for 5.3.7
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.7 Platform : Linux -------------------------------------- test_math : 0.949 sec. test_stringmanipulation : 0.926 sec.
Process exited with code 137.
Output for 5.3.6
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.6 Platform : Linux -------------------------------------- test_math : 1.332 sec.
Process exited with code 137.
Output for 5.3.5
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.5 Platform : Linux -------------------------------------- test_math : 0.981 sec. test_stringmanipulation : 0.749 sec.
Process exited with code 137.
Output for 5.3.4
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.4 Platform : Linux -------------------------------------- test_math : 1.291 sec.
Process exited with code 137.
Output for 5.3.3
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.3 Platform : Linux -------------------------------------- test_math : 0.967 sec. test_stringmanipulation : 0.752 sec.
Process exited with code 137.
Output for 5.3.2
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.2 Platform : Linux -------------------------------------- test_math : 1.328 sec.
Process exited with code 137.
Output for 5.3.1
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.1 Platform : Linux -------------------------------------- test_math : 0.972 sec. test_stringmanipulation : 0.765 sec.
Process exited with code 137.
Output for 5.3.0
Notice: Undefined index: SERVER_NAME in /in/LSm0f on line 71 Notice: Undefined index: SERVER_ADDR in /in/LSm0f on line 71 <pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2013-12-02 11:20:19 Server : @ PHP version : 5.3.0 Platform : Linux -------------------------------------- test_math : 0.829 sec. test_stringmanipulation : 0.746 sec. test_loops : 0.728 sec.
Process exited with code 137.

preferences:
145.53 ms | 402 KiB | 209 Q