3v4l.org

run code in 300+ PHP versions simultaneously
<?php $_SERVER['SERVER_NAME'] = 'localhost'; $_SERVER['SERVER_ADDR'] = '127.0.0.1'; function test_Math($count = 14000) { $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 = 13000) { $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 = 1900000) { $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 = 900000) { $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.4.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.4.0 Platform : Linux -------------------------------------- Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/sbYbb on line 15 Deprecated: Invalid characters passed for attempted conversion, these have been i
Process exited with code 137.
Output for 7.3.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.3.12 Platform : Linux -------------------------------------- test_math : 0.028 sec. test_stringmanipulation : 0.035 sec. test_loops : 0.024 sec. test_ifelse : 0.026 sec. -------------------------------------- Total time: : 0.113 sec.</pre>
Output for 7.3.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.3.11 Platform : Linux -------------------------------------- test_math : 0.042 sec. test_stringmanipulation : 0.046 sec. test_loops : 0.024 sec. test_ifelse : 0.030 sec. -------------------------------------- Total time: : 0.142 sec.</pre>
Output for 7.3.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.3.10 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.036 sec. test_loops : 0.022 sec. test_ifelse : 0.030 sec. -------------------------------------- Total time: : 0.115 sec.</pre>
Output for 7.3.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.3.9 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.035 sec. test_loops : 0.022 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.107 sec.</pre>
Output for 7.3.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.3.8 Platform : Linux -------------------------------------- test_math : 0.025 sec. test_stringmanipulation : 0.035 sec. test_loops : 0.022 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.109 sec.</pre>
Output for 7.3.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.3.7 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.051 sec. test_loops : 0.028 sec. test_ifelse : 0.041 sec. -------------------------------------- Total time: : 0.146 sec.</pre>
Output for 7.3.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.3.6 Platform : Linux -------------------------------------- test_math : 0.036 sec. test_stringmanipulation : 0.036 sec. test_loops : 0.022 sec. test_ifelse : 0.028 sec. -------------------------------------- Total time: : 0.122 sec.</pre>
Output for 7.3.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.3.5 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.040 sec. test_loops : 0.023 sec. test_ifelse : 0.031 sec. -------------------------------------- Total time: : 0.12 sec.</pre>
Output for 7.3.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.3.4 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.040 sec. test_loops : 0.024 sec. test_ifelse : 0.030 sec. -------------------------------------- Total time: : 0.12 sec.</pre>
Output for 7.3.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.3.3 Platform : Linux -------------------------------------- test_math : 0.025 sec. test_stringmanipulation : 0.052 sec. test_loops : 0.030 sec. test_ifelse : 0.042 sec. -------------------------------------- Total time: : 0.149 sec.</pre>
Output for 7.3.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.3.2 Platform : Linux -------------------------------------- test_math : 0.042 sec. test_stringmanipulation : 0.058 sec. test_loops : 0.024 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.151 sec.</pre>
Output for 7.3.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.3.1 Platform : Linux -------------------------------------- test_math : 0.037 sec. test_stringmanipulation : 0.035 sec. test_loops : 0.022 sec. test_ifelse : 0.028 sec. -------------------------------------- Total time: : 0.122 sec.</pre>
Output for 7.3.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.3.0 Platform : Linux -------------------------------------- test_math : 0.024 sec. test_stringmanipulation : 0.035 sec. test_loops : 0.022 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.108 sec.</pre>
Output for 7.2.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.2.25 Platform : Linux -------------------------------------- test_math : 0.031 sec. test_stringmanipulation : 0.043 sec. test_loops : 0.023 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.124 sec.</pre>
Output for 7.2.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.2.24 Platform : Linux -------------------------------------- test_math : 0.031 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.022 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.122 sec.</pre>
Output for 7.2.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.2.23 Platform : Linux -------------------------------------- test_math : 0.031 sec. test_stringmanipulation : 0.048 sec. test_loops : 0.024 sec. test_ifelse : 0.031 sec. -------------------------------------- Total time: : 0.134 sec.</pre>
Output for 7.2.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.2.22 Platform : Linux -------------------------------------- test_math : 0.028 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.023 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.12 sec.</pre>
Output for 7.2.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.2.21 Platform : Linux -------------------------------------- test_math : 0.032 sec. test_stringmanipulation : 0.052 sec. test_loops : 0.026 sec. test_ifelse : 0.034 sec. -------------------------------------- Total time: : 0.144 sec.</pre>
Output for 7.2.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.2.20 Platform : Linux -------------------------------------- test_math : 0.028 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.022 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.132 sec.</pre>
Output for 7.2.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.2.19 Platform : Linux -------------------------------------- test_math : 0.033 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.022 sec. test_ifelse : 0.025 sec. -------------------------------------- Total time: : 0.122 sec.</pre>
Output for 7.2.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.2.18 Platform : Linux -------------------------------------- test_math : 0.028 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.022 sec. test_ifelse : 0.024 sec. -------------------------------------- Total time: : 0.116 sec.</pre>
Output for 7.2.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.2.17 Platform : Linux -------------------------------------- test_math : 0.028 sec. test_stringmanipulation : 0.041 sec. test_loops : 0.025 sec. test_ifelse : 0.041 sec. -------------------------------------- Total time: : 0.135 sec.</pre>
Output for 7.2.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.2.0 Platform : Linux -------------------------------------- test_math : 0.046 sec. test_stringmanipulation : 0.031 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.111 sec.</pre>
Output for 7.1.33
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.1.33 Platform : Linux -------------------------------------- test_math : 0.038 sec. test_stringmanipulation : 0.055 sec. test_loops : 0.054 sec. test_ifelse : 0.048 sec. -------------------------------------- Total time: : 0.195 sec.</pre>
Output for 7.1.32
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.1.32 Platform : Linux -------------------------------------- test_math : 0.052 sec. test_stringmanipulation : 0.063 sec. test_loops : 0.054 sec. test_ifelse : 0.050 sec. -------------------------------------- Total time: : 0.219 sec.</pre>
Output for 7.1.31
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.1.31 Platform : Linux -------------------------------------- test_math : 0.045 sec. test_stringmanipulation : 0.062 sec. test_loops : 0.057 sec. test_ifelse : 0.052 sec. -------------------------------------- Total time: : 0.216 sec.</pre>
Output for 7.1.30
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.1.30 Platform : Linux -------------------------------------- test_math : 0.039 sec. test_stringmanipulation : 0.055 sec. test_loops : 0.055 sec. test_ifelse : 0.051 sec. -------------------------------------- Total time: : 0.2 sec.</pre>
Output for 7.1.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.1.29 Platform : Linux -------------------------------------- test_math : 0.041 sec. test_stringmanipulation : 0.055 sec. test_loops : 0.054 sec. test_ifelse : 0.056 sec. -------------------------------------- Total time: : 0.206 sec.</pre>
Output for 7.1.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.1.28 Platform : Linux -------------------------------------- test_math : 0.039 sec. test_stringmanipulation : 0.056 sec. test_loops : 0.056 sec. test_ifelse : 0.049 sec. -------------------------------------- Total time: : 0.2 sec.</pre>
Output for 7.1.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.1.27 Platform : Linux -------------------------------------- test_math : 0.054 sec. test_stringmanipulation : 0.054 sec. test_loops : 0.053 sec. test_ifelse : 0.048 sec. -------------------------------------- Total time: : 0.209 sec.</pre>
Output for 7.1.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.1.26 Platform : Linux -------------------------------------- test_math : 0.044 sec. test_stringmanipulation : 0.062 sec. test_loops : 0.057 sec. test_ifelse : 0.051 sec. -------------------------------------- Total time: : 0.214 sec.</pre>
Output for 7.1.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.1.7 Platform : Linux -------------------------------------- test_math : 0.030 sec. test_stringmanipulation : 0.037 sec. test_loops : 0.024 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.105 sec.</pre>
Output for 7.1.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.1.6 Platform : Linux -------------------------------------- test_math : 0.047 sec. test_stringmanipulation : 0.053 sec. test_loops : 0.027 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.142 sec.</pre>
Output for 7.1.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.1.5 Platform : Linux -------------------------------------- test_math : 0.028 sec. test_stringmanipulation : 0.034 sec. test_loops : 0.020 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.097 sec.</pre>
Output for 7.1.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.1.0 Platform : Linux -------------------------------------- test_math : 0.040 sec. test_stringmanipulation : 0.049 sec. test_loops : 0.027 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.148 sec.</pre>
Output for 7.0.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.0.20 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.032 sec. test_loops : 0.023 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.096 sec.</pre>
Output for 7.0.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.0.14 Platform : Linux -------------------------------------- test_math : 0.040 sec. test_stringmanipulation : 0.047 sec. test_loops : 0.024 sec. test_ifelse : 0.043 sec. -------------------------------------- Total time: : 0.154 sec.</pre>
Output for 7.0.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.0.12 Platform : Linux -------------------------------------- test_math : 0.036 sec. test_stringmanipulation : 0.044 sec. test_loops : 0.026 sec. test_ifelse : 0.028 sec. -------------------------------------- Total time: : 0.134 sec.</pre>
Output for 7.0.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.0.10 Platform : Linux -------------------------------------- test_math : 0.042 sec. test_stringmanipulation : 0.048 sec. test_loops : 0.023 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.129 sec.</pre>
Output for 7.0.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.0.9 Platform : Linux -------------------------------------- test_math : 0.032 sec. test_stringmanipulation : 0.037 sec. test_loops : 0.019 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.102 sec.</pre>
Output for 7.0.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.0.8 Platform : Linux -------------------------------------- test_math : 0.046 sec. test_stringmanipulation : 0.048 sec. test_loops : 0.029 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.137 sec.</pre>
Output for 7.0.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.0.7 Platform : Linux -------------------------------------- test_math : 0.040 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.020 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.117 sec.</pre>
Output for 7.0.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.0.6 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.032 sec. test_loops : 0.021 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.092 sec.</pre>
Output for 7.0.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.0.5 Platform : Linux -------------------------------------- test_math : 0.024 sec. test_stringmanipulation : 0.030 sec. test_loops : 0.043 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.11 sec.</pre>
Output for 7.0.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.0.4 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.030 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.086 sec.</pre>
Output for 7.0.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.0.3 Platform : Linux -------------------------------------- test_math : 0.025 sec. test_stringmanipulation : 0.032 sec. test_loops : 0.018 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.088 sec.</pre>
Output for 7.0.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.0.2 Platform : Linux -------------------------------------- test_math : 0.024 sec. test_stringmanipulation : 0.029 sec. test_loops : 0.016 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.082 sec.</pre>
Output for 7.0.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.0.1 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.029 sec. test_loops : 0.016 sec. test_ifelse : 0.012 sec. -------------------------------------- Total time: : 0.08 sec.</pre>
Output for 7.0.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 7.0.0 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.029 sec. test_loops : 0.017 sec. test_ifelse : 0.012 sec. -------------------------------------- Total time: : 0.08 sec.</pre>
Output for 5.6.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.28 Platform : Linux -------------------------------------- test_math : 0.119 sec. test_stringmanipulation : 0.093 sec. test_loops : 0.059 sec. test_ifelse : 0.054 sec. -------------------------------------- Total time: : 0.325 sec.</pre>
Output for 5.6.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.25 Platform : Linux -------------------------------------- test_math : 0.095 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.064 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.287 sec.</pre>
Output for 5.6.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.24 Platform : Linux -------------------------------------- test_math : 0.107 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.062 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.296 sec.</pre>
Output for 5.6.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.23 Platform : Linux -------------------------------------- test_math : 0.091 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.062 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.28 sec.</pre>
Output for 5.6.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.22 Platform : Linux -------------------------------------- test_math : 0.126 sec. test_stringmanipulation : 0.092 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.318 sec.</pre>
Output for 5.6.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.21 Platform : Linux -------------------------------------- test_math : 0.104 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.062 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.292 sec.</pre>
Output for 5.6.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.20 Platform : Linux -------------------------------------- test_math : 0.092 sec. test_stringmanipulation : 0.090 sec. test_loops : 0.062 sec. test_ifelse : 0.041 sec. -------------------------------------- Total time: : 0.285 sec.</pre>
Output for 5.6.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.19 Platform : Linux -------------------------------------- test_math : 0.078 sec. test_stringmanipulation : 0.072 sec. test_loops : 0.050 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.232 sec.</pre>
Output for 5.6.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.18 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.053 sec. test_ifelse : 0.035 sec. -------------------------------------- Total time: : 0.245 sec.</pre>
Output for 5.6.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.17 Platform : Linux -------------------------------------- test_math : 0.075 sec. test_stringmanipulation : 0.075 sec. test_loops : 0.051 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.233 sec.</pre>
Output for 5.6.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.16 Platform : Linux -------------------------------------- test_math : 0.101 sec. test_stringmanipulation : 0.076 sec. test_loops : 0.051 sec. test_ifelse : 0.033 sec. -------------------------------------- Total time: : 0.261 sec.</pre>
Output for 5.6.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.15 Platform : Linux -------------------------------------- test_math : 0.076 sec. test_stringmanipulation : 0.074 sec. test_loops : 0.051 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.233 sec.</pre>
Output for 5.6.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.14 Platform : Linux -------------------------------------- test_math : 0.076 sec. test_stringmanipulation : 0.074 sec. test_loops : 0.051 sec. test_ifelse : 0.033 sec. -------------------------------------- Total time: : 0.234 sec.</pre>
Output for 5.6.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.13 Platform : Linux -------------------------------------- test_math : 0.117 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.052 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.288 sec.</pre>
Output for 5.6.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.12 Platform : Linux -------------------------------------- test_math : 0.089 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.058 sec. test_ifelse : 0.038 sec. -------------------------------------- Total time: : 0.272 sec.</pre>
Output for 5.6.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.11 Platform : Linux -------------------------------------- test_math : 0.090 sec. test_stringmanipulation : 0.091 sec. test_loops : 0.059 sec. test_ifelse : 0.038 sec. -------------------------------------- Total time: : 0.278 sec.</pre>
Output for 5.6.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.10 Platform : Linux -------------------------------------- test_math : 0.092 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.28 sec.</pre>
Output for 5.6.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.9 Platform : Linux -------------------------------------- test_math : 0.093 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.063 sec. test_ifelse : 0.042 sec. -------------------------------------- Total time: : 0.287 sec.</pre>
Output for 5.6.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.8 Platform : Linux -------------------------------------- test_math : 0.089 sec. test_stringmanipulation : 0.091 sec. test_loops : 0.063 sec. test_ifelse : 0.042 sec. -------------------------------------- Total time: : 0.285 sec.</pre>
Output for 5.6.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.7 Platform : Linux -------------------------------------- test_math : 0.128 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.316 sec.</pre>
Output for 5.6.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.6 Platform : Linux -------------------------------------- test_math : 0.093 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.284 sec.</pre>
Output for 5.6.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.5 Platform : Linux -------------------------------------- test_math : 0.091 sec. test_stringmanipulation : 0.086 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.277 sec.</pre>
Output for 5.6.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.4 Platform : Linux -------------------------------------- test_math : 0.159 sec. test_stringmanipulation : 0.099 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.358 sec.</pre>
Output for 5.6.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.3 Platform : Linux -------------------------------------- test_math : 0.121 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.061 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.309 sec.</pre>
Output for 5.6.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.2 Platform : Linux -------------------------------------- test_math : 0.102 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.061 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.291 sec.</pre>
Output for 5.6.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.1 Platform : Linux -------------------------------------- test_math : 0.113 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.302 sec.</pre>
Output for 5.6.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.6.0 Platform : Linux -------------------------------------- test_math : 0.105 sec. test_stringmanipulation : 0.081 sec. test_loops : 0.057 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.275 sec.</pre>
Output for 5.5.38
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.38 Platform : Linux -------------------------------------- test_math : 0.109 sec. test_stringmanipulation : 0.097 sec. test_loops : 0.066 sec. test_ifelse : 0.041 sec. -------------------------------------- Total time: : 0.313 sec.</pre>
Output for 5.5.37
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.37 Platform : Linux -------------------------------------- test_math : 0.094 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.283 sec.</pre>
Output for 5.5.36
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.36 Platform : Linux -------------------------------------- test_math : 0.090 sec. test_stringmanipulation : 0.085 sec. test_loops : 0.056 sec. test_ifelse : 0.035 sec. -------------------------------------- Total time: : 0.266 sec.</pre>
Output for 5.5.35
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.35 Platform : Linux -------------------------------------- test_math : 0.092 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.058 sec. test_ifelse : 0.034 sec. -------------------------------------- Total time: : 0.273 sec.</pre>
Output for 5.5.34
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.34 Platform : Linux -------------------------------------- test_math : 0.103 sec. test_stringmanipulation : 0.076 sec. test_loops : 0.051 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.262 sec.</pre>
Output for 5.5.33
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.33 Platform : Linux -------------------------------------- test_math : 0.081 sec. test_stringmanipulation : 0.075 sec. test_loops : 0.050 sec. test_ifelse : 0.034 sec. -------------------------------------- Total time: : 0.24 sec.</pre>
Output for 5.5.32
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.32 Platform : Linux -------------------------------------- test_math : 0.077 sec. test_stringmanipulation : 0.074 sec. test_loops : 0.050 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.233 sec.</pre>
Output for 5.5.31
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.31 Platform : Linux -------------------------------------- test_math : 0.080 sec. test_stringmanipulation : 0.074 sec. test_loops : 0.051 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.237 sec.</pre>
Output for 5.5.30
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.30 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.075 sec. test_loops : 0.051 sec. test_ifelse : 0.033 sec. -------------------------------------- Total time: : 0.238 sec.</pre>
Output for 5.5.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.29 Platform : Linux -------------------------------------- test_math : 0.108 sec. test_stringmanipulation : 0.083 sec. test_loops : 0.051 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.274 sec.</pre>
Output for 5.5.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.28 Platform : Linux -------------------------------------- test_math : 0.095 sec. test_stringmanipulation : 0.107 sec. test_loops : 0.060 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.301 sec.</pre>
Output for 5.5.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.27 Platform : Linux -------------------------------------- test_math : 0.114 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.305 sec.</pre>
Output for 5.5.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.26 Platform : Linux -------------------------------------- test_math : 0.123 sec. test_stringmanipulation : 0.091 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.314 sec.</pre>
Output for 5.5.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.25 Platform : Linux -------------------------------------- test_math : 0.110 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.061 sec. test_ifelse : 0.041 sec. -------------------------------------- Total time: : 0.301 sec.</pre>
Output for 5.5.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.24 Platform : Linux -------------------------------------- test_math : 0.118 sec. test_stringmanipulation : 0.115 sec. test_loops : 0.066 sec. test_ifelse : 0.044 sec. -------------------------------------- Total time: : 0.343 sec.</pre>
Output for 5.5.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.23 Platform : Linux -------------------------------------- test_math : 0.095 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.062 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.285 sec.</pre>
Output for 5.5.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.22 Platform : Linux -------------------------------------- test_math : 0.093 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.282 sec.</pre>
Output for 5.5.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.21 Platform : Linux -------------------------------------- test_math : 0.107 sec. test_stringmanipulation : 0.090 sec. test_loops : 0.069 sec. test_ifelse : 0.045 sec. -------------------------------------- Total time: : 0.311 sec.</pre>
Output for 5.5.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.20 Platform : Linux -------------------------------------- test_math : 0.125 sec. test_stringmanipulation : 0.092 sec. test_loops : 0.061 sec. test_ifelse : 0.041 sec. -------------------------------------- Total time: : 0.319 sec.</pre>
Output for 5.5.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.19 Platform : Linux -------------------------------------- test_math : 0.119 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.308 sec.</pre>
Output for 5.5.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.18 Platform : Linux -------------------------------------- test_math : 0.097 sec. test_stringmanipulation : 0.090 sec. test_loops : 0.062 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.288 sec.</pre>
Output for 5.5.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.16 Platform : Linux -------------------------------------- test_math : 0.106 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.295 sec.</pre>
Output for 5.5.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.15 Platform : Linux -------------------------------------- test_math : 0.096 sec. test_stringmanipulation : 0.090 sec. test_loops : 0.061 sec. test_ifelse : 0.038 sec. -------------------------------------- Total time: : 0.285 sec.</pre>
Output for 5.5.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.14 Platform : Linux -------------------------------------- test_math : 0.116 sec. test_stringmanipulation : 0.090 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.306 sec.</pre>
Output for 5.5.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.13 Platform : Linux -------------------------------------- test_math : 0.117 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.306 sec.</pre>
Output for 5.5.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.12 Platform : Linux -------------------------------------- test_math : 0.085 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.060 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.272 sec.</pre>
Output for 5.5.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.11 Platform : Linux -------------------------------------- test_math : 0.093 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.281 sec.</pre>
Output for 5.5.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.10 Platform : Linux -------------------------------------- test_math : 0.093 sec. test_stringmanipulation : 0.093 sec. test_loops : 0.064 sec. test_ifelse : 0.041 sec. -------------------------------------- Total time: : 0.291 sec.</pre>
Output for 5.5.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.9 Platform : Linux -------------------------------------- test_math : 0.093 sec. test_stringmanipulation : 0.092 sec. test_loops : 0.059 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.283 sec.</pre>
Output for 5.5.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.8 Platform : Linux -------------------------------------- test_math : 0.099 sec. test_stringmanipulation : 0.093 sec. test_loops : 0.058 sec. test_ifelse : 0.038 sec. -------------------------------------- Total time: : 0.288 sec.</pre>
Output for 5.5.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.7 Platform : Linux -------------------------------------- test_math : 0.109 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.297 sec.</pre>
Output for 5.5.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.6 Platform : Linux -------------------------------------- test_math : 0.111 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.301 sec.</pre>
Output for 5.5.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.5 Platform : Linux -------------------------------------- test_math : 0.115 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.303 sec.</pre>
Output for 5.5.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.4 Platform : Linux -------------------------------------- test_math : 0.114 sec. test_stringmanipulation : 0.084 sec. test_loops : 0.051 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.281 sec.</pre>
Output for 5.5.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.3 Platform : Linux -------------------------------------- test_math : 0.115 sec. test_stringmanipulation : 0.090 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.305 sec.</pre>
Output for 5.5.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.2 Platform : Linux -------------------------------------- test_math : 0.095 sec. test_stringmanipulation : 0.093 sec. test_loops : 0.059 sec. test_ifelse : 0.037 sec. -------------------------------------- Total time: : 0.284 sec.</pre>
Output for 5.5.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.1 Platform : Linux -------------------------------------- test_math : 0.091 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.279 sec.</pre>
Output for 5.5.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.5.0 Platform : Linux -------------------------------------- test_math : 0.088 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.061 sec. test_ifelse : 0.044 sec. -------------------------------------- Total time: : 0.282 sec.</pre>
Output for 5.4.45
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.45 Platform : Linux -------------------------------------- test_math : 0.090 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.061 sec. test_ifelse : 0.048 sec. -------------------------------------- Total time: : 0.286 sec.</pre>
Output for 5.4.44
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.44 Platform : Linux -------------------------------------- test_math : 0.090 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.061 sec. test_ifelse : 0.038 sec. -------------------------------------- Total time: : 0.276 sec.</pre>
Output for 5.4.43
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.43 Platform : Linux -------------------------------------- test_math : 0.115 sec. test_stringmanipulation : 0.090 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.307 sec.</pre>
Output for 5.4.42
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.42 Platform : Linux -------------------------------------- test_math : 0.091 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.062 sec. test_ifelse : 0.042 sec. -------------------------------------- Total time: : 0.282 sec.</pre>
Output for 5.4.41
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.41 Platform : Linux -------------------------------------- test_math : 0.081 sec. test_stringmanipulation : 0.073 sec. test_loops : 0.051 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.237 sec.</pre>
Output for 5.4.40
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.40 Platform : Linux -------------------------------------- test_math : 0.089 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.059 sec. test_ifelse : 0.041 sec. -------------------------------------- Total time: : 0.277 sec.</pre>
Output for 5.4.39
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.39 Platform : Linux -------------------------------------- test_math : 0.096 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.065 sec. test_ifelse : 0.043 sec. -------------------------------------- Total time: : 0.292 sec.</pre>
Output for 5.4.38
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.38 Platform : Linux -------------------------------------- test_math : 0.117 sec. test_stringmanipulation : 0.092 sec. test_loops : 0.065 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.313 sec.</pre>
Output for 5.4.37
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.37 Platform : Linux -------------------------------------- test_math : 0.092 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.063 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.282 sec.</pre>
Output for 5.4.36
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.36 Platform : Linux -------------------------------------- test_math : 0.125 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.316 sec.</pre>
Output for 5.4.35
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.35 Platform : Linux -------------------------------------- test_math : 0.114 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.303 sec.</pre>
Output for 5.4.34
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.34 Platform : Linux -------------------------------------- test_math : 0.104 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.066 sec. test_ifelse : 0.042 sec. -------------------------------------- Total time: : 0.3 sec.</pre>
Output for 5.4.32
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.32 Platform : Linux -------------------------------------- test_math : 0.105 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.294 sec.</pre>
Output for 5.4.31
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.31 Platform : Linux -------------------------------------- test_math : 0.112 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.3 sec.</pre>
Output for 5.4.30
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.30 Platform : Linux -------------------------------------- test_math : 0.088 sec. test_stringmanipulation : 0.086 sec. test_loops : 0.059 sec. test_ifelse : 0.037 sec. -------------------------------------- Total time: : 0.27 sec.</pre>
Output for 5.4.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.29 Platform : Linux -------------------------------------- test_math : 0.113 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.301 sec.</pre>
Output for 5.4.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.28 Platform : Linux -------------------------------------- test_math : 0.110 sec. test_stringmanipulation : 0.102 sec. test_loops : 0.077 sec. test_ifelse : 0.048 sec. -------------------------------------- Total time: : 0.337 sec.</pre>
Output for 5.4.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.27 Platform : Linux -------------------------------------- test_math : 0.092 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.281 sec.</pre>
Output for 5.4.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.26 Platform : Linux -------------------------------------- test_math : 0.106 sec. test_stringmanipulation : 0.086 sec. test_loops : 0.061 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.293 sec.</pre>
Output for 5.4.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.25 Platform : Linux -------------------------------------- test_math : 0.140 sec. test_stringmanipulation : 0.102 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.344 sec.</pre>
Output for 5.4.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.24 Platform : Linux -------------------------------------- test_math : 0.114 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.303 sec.</pre>
Output for 5.4.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.23 Platform : Linux -------------------------------------- test_math : 0.090 sec. test_stringmanipulation : 0.091 sec. test_loops : 0.060 sec. test_ifelse : 0.037 sec. -------------------------------------- Total time: : 0.278 sec.</pre>
Output for 5.4.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.22 Platform : Linux -------------------------------------- test_math : 0.097 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.062 sec. test_ifelse : 0.043 sec. -------------------------------------- Total time: : 0.29 sec.</pre>
Output for 5.4.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.21 Platform : Linux -------------------------------------- test_math : 0.109 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.298 sec.</pre>
Output for 5.4.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.20 Platform : Linux -------------------------------------- test_math : 0.090 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.059 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.277 sec.</pre>
Output for 5.4.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.19 Platform : Linux -------------------------------------- test_math : 0.102 sec. test_stringmanipulation : 0.076 sec. test_loops : 0.051 sec. test_ifelse : 0.033 sec. -------------------------------------- Total time: : 0.262 sec.</pre>
Output for 5.4.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.18 Platform : Linux -------------------------------------- test_math : 0.093 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.281 sec.</pre>
Output for 5.4.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.17 Platform : Linux -------------------------------------- test_math : 0.113 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.061 sec. test_ifelse : 0.045 sec. -------------------------------------- Total time: : 0.306 sec.</pre>
Output for 5.4.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.16 Platform : Linux -------------------------------------- test_math : 0.106 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.295 sec.</pre>
Output for 5.4.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.15 Platform : Linux -------------------------------------- test_math : 0.075 sec. test_stringmanipulation : 0.072 sec. test_loops : 0.051 sec. test_ifelse : 0.034 sec. -------------------------------------- Total time: : 0.232 sec.</pre>
Output for 5.4.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.14 Platform : Linux -------------------------------------- test_math : 0.092 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.062 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.281 sec.</pre>
Output for 5.4.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.13 Platform : Linux -------------------------------------- test_math : 0.091 sec. test_stringmanipulation : 0.074 sec. test_loops : 0.051 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.248 sec.</pre>
Output for 5.4.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.12 Platform : Linux -------------------------------------- test_math : 0.111 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.061 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.298 sec.</pre>
Output for 5.4.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.11 Platform : Linux -------------------------------------- test_math : 0.110 sec. test_stringmanipulation : 0.077 sec. test_loops : 0.051 sec. test_ifelse : 0.033 sec. -------------------------------------- Total time: : 0.271 sec.</pre>
Output for 5.4.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.10 Platform : Linux -------------------------------------- test_math : 0.095 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.285 sec.</pre>
Output for 5.4.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.9 Platform : Linux -------------------------------------- test_math : 0.118 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.061 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.308 sec.</pre>
Output for 5.4.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.8 Platform : Linux -------------------------------------- test_math : 0.089 sec. test_stringmanipulation : 0.086 sec. test_loops : 0.059 sec. test_ifelse : 0.042 sec. -------------------------------------- Total time: : 0.276 sec.</pre>
Output for 5.4.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.7 Platform : Linux -------------------------------------- test_math : 0.105 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.061 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.294 sec.</pre>
Output for 5.4.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.6 Platform : Linux -------------------------------------- test_math : 0.109 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.299 sec.</pre>
Output for 5.4.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.5 Platform : Linux -------------------------------------- test_math : 0.111 sec. test_stringmanipulation : 0.086 sec. test_loops : 0.059 sec. test_ifelse : 0.038 sec. -------------------------------------- Total time: : 0.294 sec.</pre>
Output for 5.4.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.4 Platform : Linux -------------------------------------- test_math : 0.103 sec. test_stringmanipulation : 0.086 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.291 sec.</pre>
Output for 5.4.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.3 Platform : Linux -------------------------------------- test_math : 0.091 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.28 sec.</pre>
Output for 5.4.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.2 Platform : Linux -------------------------------------- test_math : 0.109 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.061 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.297 sec.</pre>
Output for 5.4.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.1 Platform : Linux -------------------------------------- test_math : 0.128 sec. test_stringmanipulation : 0.091 sec. test_loops : 0.062 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.321 sec.</pre>
Output for 5.4.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.4.0 Platform : Linux -------------------------------------- test_math : 0.111 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.062 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.299 sec.</pre>
Output for 5.3.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.29 Platform : Linux -------------------------------------- test_math : 0.097 sec. test_stringmanipulation : 0.095 sec. test_loops : 0.085 sec. test_ifelse : 0.054 sec. -------------------------------------- Total time: : 0.331 sec.</pre>
Output for 5.3.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.28 Platform : Linux -------------------------------------- test_math : 0.109 sec. test_stringmanipulation : 0.093 sec. test_loops : 0.084 sec. test_ifelse : 0.056 sec. -------------------------------------- Total time: : 0.342 sec.</pre>
Output for 5.3.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.27 Platform : Linux -------------------------------------- test_math : 0.118 sec. test_stringmanipulation : 0.094 sec. test_loops : 0.084 sec. test_ifelse : 0.054 sec. -------------------------------------- Total time: : 0.35 sec.</pre>
Output for 5.3.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.26 Platform : Linux -------------------------------------- test_math : 0.119 sec. test_stringmanipulation : 0.095 sec. test_loops : 0.085 sec. test_ifelse : 0.056 sec. -------------------------------------- Total time: : 0.355 sec.</pre>
Output for 5.3.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.25 Platform : Linux -------------------------------------- test_math : 0.100 sec. test_stringmanipulation : 0.092 sec. test_loops : 0.083 sec. test_ifelse : 0.054 sec. -------------------------------------- Total time: : 0.329 sec.</pre>
Output for 5.3.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.24 Platform : Linux -------------------------------------- test_math : 0.129 sec. test_stringmanipulation : 0.096 sec. test_loops : 0.084 sec. test_ifelse : 0.054 sec. -------------------------------------- Total time: : 0.363 sec.</pre>
Output for 5.3.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.23 Platform : Linux -------------------------------------- test_math : 0.116 sec. test_stringmanipulation : 0.094 sec. test_loops : 0.084 sec. test_ifelse : 0.053 sec. -------------------------------------- Total time: : 0.347 sec.</pre>
Output for 5.3.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.22 Platform : Linux -------------------------------------- test_math : 0.096 sec. test_stringmanipulation : 0.090 sec. test_loops : 0.081 sec. test_ifelse : 0.059 sec. -------------------------------------- Total time: : 0.326 sec.</pre>
Output for 5.3.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.21 Platform : Linux -------------------------------------- test_math : 0.104 sec. test_stringmanipulation : 0.093 sec. test_loops : 0.085 sec. test_ifelse : 0.074 sec. -------------------------------------- Total time: : 0.356 sec.</pre>
Output for 5.3.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.20 Platform : Linux -------------------------------------- test_math : 0.110 sec. test_stringmanipulation : 0.090 sec. test_loops : 0.085 sec. test_ifelse : 0.076 sec. -------------------------------------- Total time: : 0.361 sec.</pre>
Output for 5.3.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.19 Platform : Linux -------------------------------------- test_math : 0.117 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.084 sec. test_ifelse : 0.069 sec. -------------------------------------- Total time: : 0.359 sec.</pre>
Output for 5.3.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.18 Platform : Linux -------------------------------------- test_math : 0.104 sec. test_stringmanipulation : 0.098 sec. test_loops : 0.099 sec. test_ifelse : 0.077 sec. -------------------------------------- Total time: : 0.378 sec.</pre>
Output for 5.3.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.17 Platform : Linux -------------------------------------- test_math : 0.095 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.086 sec. test_ifelse : 0.065 sec. -------------------------------------- Total time: : 0.334 sec.</pre>
Output for 5.3.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.16 Platform : Linux -------------------------------------- test_math : 0.105 sec. test_stringmanipulation : 0.092 sec. test_loops : 0.084 sec. test_ifelse : 0.069 sec. -------------------------------------- Total time: : 0.35 sec.</pre>
Output for 5.3.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.15 Platform : Linux -------------------------------------- test_math : 0.125 sec. test_stringmanipulation : 0.091 sec. test_loops : 0.085 sec. test_ifelse : 0.070 sec. -------------------------------------- Total time: : 0.371 sec.</pre>
Output for 5.3.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.14 Platform : Linux -------------------------------------- test_math : 0.103 sec. test_stringmanipulation : 0.091 sec. test_loops : 0.084 sec. test_ifelse : 0.067 sec. -------------------------------------- Total time: : 0.345 sec.</pre>
Output for 5.3.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.13 Platform : Linux -------------------------------------- test_math : 0.094 sec. test_stringmanipulation : 0.106 sec. test_loops : 0.084 sec. test_ifelse : 0.069 sec. -------------------------------------- Total time: : 0.353 sec.</pre>
Output for 5.3.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.12 Platform : Linux -------------------------------------- test_math : 0.108 sec. test_stringmanipulation : 0.094 sec. test_loops : 0.084 sec. test_ifelse : 0.074 sec. -------------------------------------- Total time: : 0.36 sec.</pre>
Output for 5.3.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.11 Platform : Linux -------------------------------------- test_math : 0.102 sec. test_stringmanipulation : 0.094 sec. test_loops : 0.086 sec. test_ifelse : 0.069 sec. -------------------------------------- Total time: : 0.351 sec.</pre>
Output for 5.3.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.10 Platform : Linux -------------------------------------- test_math : 0.112 sec. test_stringmanipulation : 0.090 sec. test_loops : 0.084 sec. test_ifelse : 0.069 sec. -------------------------------------- Total time: : 0.355 sec.</pre>
Output for 5.3.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.9 Platform : Linux -------------------------------------- test_math : 0.101 sec. test_stringmanipulation : 0.090 sec. test_loops : 0.089 sec. test_ifelse : 0.066 sec. -------------------------------------- Total time: : 0.346 sec.</pre>
Output for 5.3.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.8 Platform : Linux -------------------------------------- test_math : 0.122 sec. test_stringmanipulation : 0.092 sec. test_loops : 0.088 sec. test_ifelse : 0.069 sec. -------------------------------------- Total time: : 0.371 sec.</pre>
Output for 5.3.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.7 Platform : Linux -------------------------------------- test_math : 0.096 sec. test_stringmanipulation : 0.093 sec. test_loops : 0.085 sec. test_ifelse : 0.067 sec. -------------------------------------- Total time: : 0.341 sec.</pre>
Output for 5.3.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.6 Platform : Linux -------------------------------------- test_math : 0.097 sec. test_stringmanipulation : 0.091 sec. test_loops : 0.094 sec. test_ifelse : 0.070 sec. -------------------------------------- Total time: : 0.352 sec.</pre>
Output for 5.3.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.5 Platform : Linux -------------------------------------- test_math : 0.097 sec. test_stringmanipulation : 0.092 sec. test_loops : 0.088 sec. test_ifelse : 0.070 sec. -------------------------------------- Total time: : 0.347 sec.</pre>
Output for 5.3.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.4 Platform : Linux -------------------------------------- test_math : 0.115 sec. test_stringmanipulation : 0.090 sec. test_loops : 0.088 sec. test_ifelse : 0.069 sec. -------------------------------------- Total time: : 0.362 sec.</pre>
Output for 5.3.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.3 Platform : Linux -------------------------------------- test_math : 0.093 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.094 sec. test_ifelse : 0.073 sec. -------------------------------------- Total time: : 0.347 sec.</pre>
Output for 5.3.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.2 Platform : Linux -------------------------------------- test_math : 0.082 sec. test_stringmanipulation : 0.075 sec. test_loops : 0.076 sec. test_ifelse : 0.054 sec. -------------------------------------- Total time: : 0.287 sec.</pre>
Output for 5.3.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.1 Platform : Linux -------------------------------------- test_math : 0.088 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.073 sec. test_ifelse : 0.057 sec. -------------------------------------- Total time: : 0.296 sec.</pre>
Output for 5.3.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.3.0 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.077 sec. test_loops : 0.073 sec. test_ifelse : 0.058 sec. -------------------------------------- Total time: : 0.287 sec.</pre>
Output for 5.2.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.17 Platform : Linux -------------------------------------- test_math : 0.136 sec. test_stringmanipulation : 0.097 sec. test_loops : 0.129 sec. test_ifelse : 0.133 sec. -------------------------------------- Total time: : 0.495 sec.</pre>
Output for 5.2.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.16 Platform : Linux -------------------------------------- test_math : 0.097 sec. test_stringmanipulation : 0.097 sec. test_loops : 0.125 sec. test_ifelse : 0.114 sec. -------------------------------------- Total time: : 0.433 sec.</pre>
Output for 5.2.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.15 Platform : Linux -------------------------------------- test_math : 0.100 sec. test_stringmanipulation : 0.095 sec. test_loops : 0.130 sec. test_ifelse : 0.108 sec. -------------------------------------- Total time: : 0.433 sec.</pre>
Output for 5.2.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.14 Platform : Linux -------------------------------------- test_math : 0.104 sec. test_stringmanipulation : 0.088 sec. test_loops : 0.104 sec. test_ifelse : 0.101 sec. -------------------------------------- Total time: : 0.397 sec.</pre>
Output for 5.2.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.13 Platform : Linux -------------------------------------- test_math : 0.097 sec. test_stringmanipulation : 0.093 sec. test_loops : 0.125 sec. test_ifelse : 0.107 sec. -------------------------------------- Total time: : 0.422 sec.</pre>
Output for 5.2.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.12 Platform : Linux -------------------------------------- test_math : 0.080 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.106 sec. test_ifelse : 0.105 sec. -------------------------------------- Total time: : 0.369 sec.</pre>
Output for 5.2.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.11 Platform : Linux -------------------------------------- test_math : 0.080 sec. test_stringmanipulation : 0.082 sec. test_loops : 0.107 sec. test_ifelse : 0.100 sec. -------------------------------------- Total time: : 0.369 sec.</pre>
Output for 5.2.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.10 Platform : Linux -------------------------------------- test_math : 0.092 sec. test_stringmanipulation : 0.090 sec. test_loops : 0.116 sec. test_ifelse : 0.116 sec. -------------------------------------- Total time: : 0.414 sec.</pre>
Output for 5.2.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.9 Platform : Linux -------------------------------------- test_math : 0.080 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.103 sec. test_ifelse : 0.098 sec. -------------------------------------- Total time: : 0.361 sec.</pre>
Output for 5.2.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.8 Platform : Linux -------------------------------------- test_math : 0.097 sec. test_stringmanipulation : 0.092 sec. test_loops : 0.139 sec. test_ifelse : 0.144 sec. -------------------------------------- Total time: : 0.472 sec.</pre>
Output for 5.2.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.7 Platform : Linux -------------------------------------- test_math : 0.083 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.104 sec. test_ifelse : 0.102 sec. -------------------------------------- Total time: : 0.368 sec.</pre>
Output for 5.2.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.6 Platform : Linux -------------------------------------- test_math : 0.078 sec. test_stringmanipulation : 0.077 sec. test_loops : 0.103 sec. test_ifelse : 0.099 sec. -------------------------------------- Total time: : 0.357 sec.</pre>
Output for 5.2.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.5 Platform : Linux -------------------------------------- test_math : 0.115 sec. test_stringmanipulation : 0.099 sec. test_loops : 0.127 sec. test_ifelse : 0.116 sec. -------------------------------------- Total time: : 0.457 sec.</pre>
Output for 5.2.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.4 Platform : Linux -------------------------------------- test_math : 0.135 sec. test_stringmanipulation : 0.101 sec. test_loops : 0.126 sec. test_ifelse : 0.123 sec. -------------------------------------- Total time: : 0.485 sec.</pre>
Output for 5.2.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.3 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.081 sec. test_loops : 0.104 sec. test_ifelse : 0.104 sec. -------------------------------------- Total time: : 0.368 sec.</pre>
Output for 5.2.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.2 Platform : Linux -------------------------------------- test_math : 0.133 sec. test_stringmanipulation : 0.138 sec. test_loops : 0.135 sec. test_ifelse : 0.127 sec. -------------------------------------- Total time: : 0.533 sec.</pre>
Output for 5.2.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.1 Platform : Linux -------------------------------------- test_math : 0.110 sec. test_stringmanipulation : 0.132 sec. test_loops : 0.108 sec. test_ifelse : 0.113 sec. -------------------------------------- Total time: : 0.463 sec.</pre>
Output for 5.2.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.2.0 Platform : Linux -------------------------------------- test_math : 0.110 sec. test_stringmanipulation : 0.159 sec. test_loops : 0.131 sec. test_ifelse : 0.114 sec. -------------------------------------- Total time: : 0.514 sec.</pre>
Output for 5.1.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.1.6 Platform : Linux -------------------------------------- test_math : 0.091 sec. test_stringmanipulation : 0.133 sec. test_loops : 0.136 sec. test_ifelse : 0.122 sec. -------------------------------------- Total time: : 0.482 sec.</pre>
Output for 5.1.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.1.5 Platform : Linux -------------------------------------- test_math : 0.105 sec. test_stringmanipulation : 0.132 sec. test_loops : 0.103 sec. test_ifelse : 0.104 sec. -------------------------------------- Total time: : 0.444 sec.</pre>
Output for 5.1.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.1.4 Platform : Linux -------------------------------------- test_math : 0.124 sec. test_stringmanipulation : 0.126 sec. test_loops : 0.122 sec. test_ifelse : 0.126 sec. -------------------------------------- Total time: : 0.498 sec.</pre>
Output for 5.1.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.1.3 Platform : Linux -------------------------------------- test_math : 0.131 sec. test_stringmanipulation : 0.129 sec. test_loops : 0.124 sec. test_ifelse : 0.124 sec. -------------------------------------- Total time: : 0.508 sec.</pre>
Output for 5.1.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.1.2 Platform : Linux -------------------------------------- test_math : 0.107 sec. test_stringmanipulation : 0.126 sec. test_loops : 0.119 sec. test_ifelse : 0.130 sec. -------------------------------------- Total time: : 0.482 sec.</pre>
Output for 5.1.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.1.1 Platform : Linux -------------------------------------- test_math : 0.109 sec. test_stringmanipulation : 0.144 sec. test_loops : 0.150 sec. test_ifelse : 0.144 sec. -------------------------------------- Total time: : 0.547 sec.</pre>
Output for 5.1.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.1.0 Platform : Linux -------------------------------------- test_math : 0.106 sec. test_stringmanipulation : 0.124 sec. test_loops : 0.132 sec. test_ifelse : 0.123 sec. -------------------------------------- Total time: : 0.485 sec.</pre>
Output for 5.0.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.0.5 Platform : Linux -------------------------------------- test_math : 0.165 sec. test_stringmanipulation : 0.179 sec. test_loops : 0.362 sec. test_ifelse : 0.251 sec. -------------------------------------- Total time: : 0.957 sec.</pre>
Output for 5.0.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.0.4 Platform : Linux -------------------------------------- test_math : 0.193 sec. test_stringmanipulation : 0.177 sec. test_loops : 0.362 sec. test_ifelse : 0.257 sec. -------------------------------------- Total time: : 0.989 sec.</pre>
Output for 5.0.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.0.3 Platform : Linux -------------------------------------- test_math : 0.148 sec. test_stringmanipulation : 0.146 sec. test_loops : 0.281 sec. test_ifelse : 0.220 sec. -------------------------------------- Total time: : 0.795 sec.</pre>
Output for 5.0.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.0.2 Platform : Linux -------------------------------------- test_math : 0.175 sec. test_stringmanipulation : 0.175 sec. test_loops : 0.338 sec. test_ifelse : 0.242 sec. -------------------------------------- Total time: : 0.93 sec.</pre>
Output for 5.0.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.0.1 Platform : Linux -------------------------------------- test_math : 0.165 sec. test_stringmanipulation : 0.171 sec. test_loops : 0.307 sec. test_ifelse : 0.206 sec. -------------------------------------- Total time: : 0.849 sec.</pre>
Output for 5.0.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 5.0.0 Platform : Linux -------------------------------------- test_math : 0.188 sec. test_stringmanipulation : 0.171 sec. test_loops : 0.339 sec. test_ifelse : 0.254 sec. -------------------------------------- Total time: : 0.952 sec.</pre>
Output for 4.4.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.4.9 Platform : Linux -------------------------------------- test_math : 0.125 sec. test_stringmanipulation : 0.164 sec. test_loops : 0.362 sec. test_ifelse : 0.271 sec. -------------------------------------- Total time: : 0.922 sec.</pre>
Output for 4.4.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.4.8 Platform : Linux -------------------------------------- test_math : 0.116 sec. test_stringmanipulation : 0.126 sec. test_loops : 0.279 sec. test_ifelse : 0.208 sec. -------------------------------------- Total time: : 0.729 sec.</pre>
Output for 4.4.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.4.7 Platform : Linux -------------------------------------- test_math : 0.116 sec. test_stringmanipulation : 0.149 sec. test_loops : 0.284 sec. test_ifelse : 0.208 sec. -------------------------------------- Total time: : 0.757 sec.</pre>
Output for 4.4.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.4.6 Platform : Linux -------------------------------------- test_math : 0.174 sec. test_stringmanipulation : 0.142 sec. test_loops : 0.285 sec. test_ifelse : 0.209 sec. -------------------------------------- Total time: : 0.81 sec.</pre>
Output for 4.4.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.4.5 Platform : Linux -------------------------------------- test_math : 0.152 sec. test_stringmanipulation : 0.152 sec. test_loops : 0.341 sec. test_ifelse : 0.249 sec. -------------------------------------- Total time: : 0.894 sec.</pre>
Output for 4.4.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.4.4 Platform : Linux -------------------------------------- test_math : 0.131 sec. test_stringmanipulation : 0.153 sec. test_loops : 0.344 sec. test_ifelse : 0.228 sec. -------------------------------------- Total time: : 0.856 sec.</pre>
Output for 4.4.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.4.3 Platform : Linux -------------------------------------- test_math : 0.146 sec. test_stringmanipulation : 0.150 sec. test_loops : 0.342 sec. test_ifelse : 0.244 sec. -------------------------------------- Total time: : 0.882 sec.</pre>
Output for 4.4.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.4.2 Platform : Linux -------------------------------------- test_math : 0.170 sec. test_stringmanipulation : 0.153 sec. test_loops : 0.352 sec. test_ifelse : 0.262 sec. -------------------------------------- Total time: : 0.937 sec.</pre>
Output for 4.4.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.4.1 Platform : Linux -------------------------------------- test_math : 0.142 sec. test_stringmanipulation : 0.186 sec. test_loops : 0.351 sec. test_ifelse : 0.243 sec. -------------------------------------- Total time: : 0.922 sec.</pre>
Output for 4.4.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.4.0 Platform : Linux -------------------------------------- test_math : 0.162 sec. test_stringmanipulation : 0.149 sec. test_loops : 0.351 sec. test_ifelse : 0.256 sec. -------------------------------------- Total time: : 0.918 sec.</pre>
Output for 4.3.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.3.11 Platform : Linux -------------------------------------- test_math : 0.124 sec. test_stringmanipulation : 0.153 sec. test_loops : 0.336 sec. test_ifelse : 0.207 sec. -------------------------------------- Total time: : 0.82 sec.</pre>
Output for 4.3.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.3.10 Platform : Linux -------------------------------------- test_math : 0.125 sec. test_stringmanipulation : 0.153 sec. test_loops : 0.341 sec. test_ifelse : 0.245 sec. -------------------------------------- Total time: : 0.864 sec.</pre>
Output for 4.3.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.3.9 Platform : Linux -------------------------------------- test_math : 0.156 sec. test_stringmanipulation : 0.181 sec. test_loops : 0.401 sec. test_ifelse : 0.247 sec. -------------------------------------- Total time: : 0.985 sec.</pre>
Output for 4.3.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.3.8 Platform : Linux -------------------------------------- test_math : 0.174 sec. test_stringmanipulation : 0.171 sec. test_loops : 0.352 sec. test_ifelse : 0.248 sec. -------------------------------------- Total time: : 0.945 sec.</pre>
Output for 4.3.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.3.7 Platform : Linux -------------------------------------- test_math : 0.203 sec. test_stringmanipulation : 0.176 sec. test_loops : 0.334 sec. test_ifelse : 0.247 sec. -------------------------------------- Total time: : 0.96 sec.</pre>
Output for 4.3.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.3.6 Platform : Linux -------------------------------------- test_math : 0.145 sec. test_stringmanipulation : 0.164 sec. test_loops : 0.372 sec. test_ifelse : 0.273 sec. -------------------------------------- Total time: : 0.954 sec.</pre>
Output for 4.3.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.3.5 Platform : Linux -------------------------------------- test_math : 0.171 sec. test_stringmanipulation : 0.175 sec. test_loops : 0.358 sec. test_ifelse : 0.249 sec. -------------------------------------- Total time: : 0.953 sec.</pre>
Output for 4.3.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.3.4 Platform : Linux -------------------------------------- test_math : 0.143 sec. test_stringmanipulation : 0.170 sec. test_loops : 0.296 sec. test_ifelse : 0.239 sec. -------------------------------------- Total time: : 0.848 sec.</pre>
Output for 4.3.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.3.3 Platform : Linux -------------------------------------- test_math : 0.205 sec. test_stringmanipulation : 0.170 sec. test_loops : 0.328 sec. test_ifelse : 0.249 sec. -------------------------------------- Total time: : 0.952 sec.</pre>
Output for 4.3.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.3.2 Platform : Linux -------------------------------------- test_math : 0.156 sec. test_stringmanipulation : 0.140 sec. test_loops : 0.276 sec. test_ifelse : 0.216 sec. -------------------------------------- Total time: : 0.788 sec.</pre>
Output for 4.3.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.3.1 Platform : Linux -------------------------------------- test_math : 0.192 sec. test_stringmanipulation : 0.172 sec. test_loops : 0.327 sec. test_ifelse : 0.241 sec. -------------------------------------- Total time: : 0.932 sec.</pre>
Output for 4.3.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:37:56 Server : localhost@127.0.0.1 PHP version : 4.3.0 Platform : Linux -------------------------------------- test_math : 0.160 sec. test_stringmanipulation : 0.149 sec. test_loops : 0.339 sec. test_ifelse : 0.213 sec. -------------------------------------- Total time: : 0.861 sec.</pre>

preferences:
206.49 ms | 402 KiB | 248 Q