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 = 1400) { $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 = 1300) { $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 = 190000) { $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 = 90000) { $time_start = microtime(true); for ($i=0; $i < $count; $i++) { if ($i == -1) { } elseif ($i == -2) { } else if ($i == -3) { } } return number_format(microtime(true) - $time_start, 3); } $total = 0; $functions = get_defined_functions(); $line = str_pad("-",38,"-"); echo "<pre>$line\n|".str_pad("PHP BENCHMARK SCRIPT",36," ",STR_PAD_BOTH)."|\n$line\nStart : ".date("Y-m-d H:i:s")."\nServer : {$_SERVER['SERVER_NAME']}@{$_SERVER['SERVER_ADDR']}\nPHP version : ".PHP_VERSION."\nPlatform : ".PHP_OS. "\n$line\n"; foreach ($functions['user'] as $user) { if (preg_match('/^test_/', $user)) { $total += $result = $user(); echo str_pad($user, 25) . " : " . $result ." sec.\n"; } } echo str_pad("-", 38, "-") . "\n" . str_pad("Total time:", 25) . " : " . $total ." sec.</pre>";
Output for 7.3.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.3.1 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.005 sec. test_loops : 0.002 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.014 sec.</pre>
Output for 7.3.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.3.0 Platform : Linux -------------------------------------- test_math : 0.003 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.003 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.015 sec.</pre>
Output for 7.2.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.2.13 Platform : Linux -------------------------------------- test_math : 0.003 sec. test_stringmanipulation : 0.004 sec. test_loops : 0.002 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.012 sec.</pre>
Output for 7.2.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.2.12 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.002 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.015 sec.</pre>
Output for 7.2.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.2.11 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.004 sec. test_loops : 0.002 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.013 sec.</pre>
Output for 7.2.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.2.10 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.005 sec. test_loops : 0.002 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.014 sec.</pre>
Output for 7.2.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.2.9 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.004 sec. test_loops : 0.002 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.014 sec.</pre>
Output for 7.2.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.2.8 Platform : Linux -------------------------------------- test_math : 0.003 sec. test_stringmanipulation : 0.005 sec. test_loops : 0.002 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.013 sec.</pre>
Output for 7.2.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.2.7 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.002 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.015 sec.</pre>
Output for 7.2.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.2.6 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.005 sec. test_loops : 0.002 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.015 sec.</pre>
Output for 7.2.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.2.5 Platform : Linux -------------------------------------- test_math : 0.003 sec. test_stringmanipulation : 0.004 sec. test_loops : 0.002 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.012 sec.</pre>
Output for 7.2.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.2.4 Platform : Linux -------------------------------------- test_math : 0.003 sec. test_stringmanipulation : 0.005 sec. test_loops : 0.002 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.013 sec.</pre>
Output for 7.2.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.2.3 Platform : Linux -------------------------------------- test_math : 0.003 sec. test_stringmanipulation : 0.004 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.011 sec.</pre>
Output for 7.2.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.2.2 Platform : Linux -------------------------------------- test_math : 0.003 sec. test_stringmanipulation : 0.005 sec. test_loops : 0.002 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.013 sec.</pre>
Output for 7.2.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.2.1 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.004 sec. test_loops : 0.002 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.013 sec.</pre>
Output for 7.2.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.2.0 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.005 sec. test_loops : 0.002 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.014 sec.</pre>
Output for 7.1.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.25 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.005 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.02 sec.</pre>
Output for 7.1.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.24 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.008 sec. test_ifelse : 0.006 sec. -------------------------------------- Total time: : 0.024 sec.</pre>
Output for 7.1.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.23 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.022 sec.</pre>
Output for 7.1.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.22 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.005 sec. test_loops : 0.005 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.019 sec.</pre>
Output for 7.1.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.21 Platform : Linux -------------------------------------- test_math : 0.006 sec. test_stringmanipulation : 0.007 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.024 sec.</pre>
Output for 7.1.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.20 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.007 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.023 sec.</pre>
Output for 7.1.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.19 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.1.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.18 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.022 sec.</pre>
Output for 7.1.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.17 Platform : Linux -------------------------------------- test_math : 0.006 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.023 sec.</pre>
Output for 7.1.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.16 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.022 sec.</pre>
Output for 7.1.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.15 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.007 sec. test_loops : 0.005 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.1.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.14 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.005 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.1.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.13 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.022 sec.</pre>
Output for 7.1.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.12 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.1.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.11 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.1.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.10 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.1.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.9 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.005 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.1.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.8 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.1.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.7 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.1.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.6 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.005 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.02 sec.</pre>
Output for 7.1.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.5 Platform : Linux -------------------------------------- test_math : 0.006 sec. test_stringmanipulation : 0.008 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.025 sec.</pre>
Output for 7.1.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.4 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.022 sec.</pre>
Output for 7.1.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.3 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.022 sec.</pre>
Output for 7.1.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.2 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.1.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.1 Platform : Linux -------------------------------------- test_math : 0.007 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.024 sec.</pre>
Output for 7.1.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.1.0 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.022 sec.</pre>
Output for 7.0.33
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.33 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.007 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.024 sec.</pre>
Output for 7.0.32
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.32 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.0.31
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.31 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.0.30
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.30 Platform : Linux -------------------------------------- test_math : 0.006 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.022 sec.</pre>
Output for 7.0.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.29 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.007 sec. test_loops : 0.008 sec. test_ifelse : 0.006 sec. -------------------------------------- Total time: : 0.025 sec.</pre>
Output for 7.0.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.28 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.0.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.27 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.022 sec.</pre>
Output for 7.0.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.26 Platform : Linux -------------------------------------- test_math : 0.033 sec. test_stringmanipulation : 0.008 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.052 sec.</pre>
Output for 7.0.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.25 Platform : Linux -------------------------------------- test_math : 0.038 sec. test_stringmanipulation : 0.008 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.058 sec.</pre>
Output for 7.0.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.24 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.022 sec.</pre>
Output for 7.0.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.23 Platform : Linux -------------------------------------- test_math : 0.006 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.023 sec.</pre>
Output for 7.0.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.22 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.007 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.022 sec.</pre>
Output for 7.0.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.21 Platform : Linux -------------------------------------- test_math : 0.010 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.027 sec.</pre>
Output for 7.0.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.20 Platform : Linux -------------------------------------- test_math : 0.006 sec. test_stringmanipulation : 0.008 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.027 sec.</pre>
Output for 7.0.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.19 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.0.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.18 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.005 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.02 sec.</pre>
Output for 7.0.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.17 Platform : Linux -------------------------------------- test_math : 0.006 sec. test_stringmanipulation : 0.007 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.024 sec.</pre>
Output for 7.0.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.16 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.022 sec.</pre>
Output for 7.0.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.15 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.0.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.14 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.0.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.13 Platform : Linux -------------------------------------- test_math : 0.006 sec. test_stringmanipulation : 0.007 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.024 sec.</pre>
Output for 7.0.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.12 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.022 sec.</pre>
Output for 7.0.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.11 Platform : Linux -------------------------------------- test_math : 0.006 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.023 sec.</pre>
Output for 7.0.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.10 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.011 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.028 sec.</pre>
Output for 7.0.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.9 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.0.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.8 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.005 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.0.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.7 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.0.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.6 Platform : Linux -------------------------------------- test_math : 0.006 sec. test_stringmanipulation : 0.009 sec. test_loops : 0.008 sec. test_ifelse : 0.006 sec. -------------------------------------- Total time: : 0.029 sec.</pre>
Output for 7.0.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.5 Platform : Linux -------------------------------------- test_math : 0.006 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.023 sec.</pre>
Output for 7.0.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.4 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.0.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.3 Platform : Linux -------------------------------------- test_math : 0.006 sec. test_stringmanipulation : 0.007 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.024 sec.</pre>
Output for 7.0.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.2 Platform : Linux -------------------------------------- test_math : 0.005 sec. test_stringmanipulation : 0.007 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.024 sec.</pre>
Output for 7.0.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.1 Platform : Linux -------------------------------------- test_math : 0.004 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.021 sec.</pre>
Output for 7.0.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 7.0.0 Platform : Linux -------------------------------------- test_math : 0.007 sec. test_stringmanipulation : 0.006 sec. test_loops : 0.006 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.024 sec.</pre>
Output for 5.6.38
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.38 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.061 sec.</pre>
Output for 5.6.37
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.37 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.061 sec.</pre>
Output for 5.6.36
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.36 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.06 sec.</pre>
Output for 5.6.35
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.35 Platform : Linux -------------------------------------- test_math : 0.015 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.062 sec.</pre>
Output for 5.6.34
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.34 Platform : Linux -------------------------------------- test_math : 0.012 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.059 sec.</pre>
Output for 5.6.33
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.33 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.063 sec.</pre>
Output for 5.6.32
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.32 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.063 sec.</pre>
Output for 5.6.31
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.31 Platform : Linux -------------------------------------- test_math : 0.012 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.059 sec.</pre>
Output for 5.6.30
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.30 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.06 sec.</pre>
Output for 5.6.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.29 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.06 sec.</pre>
Output for 5.6.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.28 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.063 sec.</pre>
Output for 5.6.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.27 Platform : Linux -------------------------------------- test_math : 0.012 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.026 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.6.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.26 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.068 sec.</pre>
Output for 5.6.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.25 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.019 sec. test_loops : 0.024 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.077 sec.</pre>
Output for 5.6.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.24 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.059 sec.</pre>
Output for 5.6.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.23 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.020 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.064 sec.</pre>
Output for 5.6.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.22 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.061 sec.</pre>
Output for 5.6.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.21 Platform : Linux -------------------------------------- test_math : 0.015 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.063 sec.</pre>
Output for 5.6.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.20 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.061 sec.</pre>
Output for 5.6.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.19 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.021 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.063 sec.</pre>
Output for 5.6.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.18 Platform : Linux -------------------------------------- test_math : 0.016 sec. test_stringmanipulation : 0.018 sec. test_loops : 0.025 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.075 sec.</pre>
Output for 5.6.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.17 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.018 sec. test_loops : 0.024 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.073 sec.</pre>
Output for 5.6.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.16 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.022 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.064 sec.</pre>
Output for 5.6.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.15 Platform : Linux -------------------------------------- test_math : 0.016 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.022 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.065 sec.</pre>
Output for 5.6.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.14 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.022 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.063 sec.</pre>
Output for 5.6.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.13 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.020 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.075 sec.</pre>
Output for 5.6.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.12 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.067 sec.</pre>
Output for 5.6.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.11 Platform : Linux -------------------------------------- test_math : 0.012 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.059 sec.</pre>
Output for 5.6.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.10 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.061 sec.</pre>
Output for 5.6.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.9 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.020 sec. test_loops : 0.026 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.08 sec.</pre>
Output for 5.6.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.8 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.06 sec.</pre>
Output for 5.6.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.7 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.06 sec.</pre>
Output for 5.6.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.6 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.020 sec. test_loops : 0.021 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.073 sec.</pre>
Output for 5.6.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.5 Platform : Linux -------------------------------------- test_math : 0.012 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.059 sec.</pre>
Output for 5.6.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.4 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.06 sec.</pre>
Output for 5.6.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.3 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.06 sec.</pre>
Output for 5.6.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.2 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.061 sec.</pre>
Output for 5.6.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.1 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.065 sec.</pre>
Output for 5.6.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.6.0 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.017 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.067 sec.</pre>
Output for 5.5.38
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.38 Platform : Linux -------------------------------------- test_math : 0.015 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.064 sec.</pre>
Output for 5.5.37
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.37 Platform : Linux -------------------------------------- test_math : 0.015 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.5.36
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.36 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.020 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.075 sec.</pre>
Output for 5.5.35
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.35 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.069 sec.</pre>
Output for 5.5.34
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.34 Platform : Linux -------------------------------------- test_math : 0.016 sec. test_stringmanipulation : 0.020 sec. test_loops : 0.024 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.074 sec.</pre>
Output for 5.5.33
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.33 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.5.32
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.32 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.071 sec.</pre>
Output for 5.5.31
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.31 Platform : Linux -------------------------------------- test_math : 0.016 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.5.30
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.30 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.018 sec. test_loops : 0.026 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.079 sec.</pre>
Output for 5.5.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.29 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.065 sec.</pre>
Output for 5.5.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.28 Platform : Linux -------------------------------------- test_math : 0.015 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.5.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.27 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.068 sec.</pre>
Output for 5.5.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.26 Platform : Linux -------------------------------------- test_math : 0.015 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.5.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.25 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.019 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.06 sec.</pre>
Output for 5.5.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.24 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.5.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.23 Platform : Linux -------------------------------------- test_math : 0.015 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.5.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.22 Platform : Linux -------------------------------------- test_math : 0.015 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.019 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.061 sec.</pre>
Output for 5.5.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.21 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.019 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.059 sec.</pre>
Output for 5.5.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.20 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.019 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.06 sec.</pre>
Output for 5.5.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.19 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.065 sec.</pre>
Output for 5.5.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.18 Platform : Linux -------------------------------------- test_math : 0.016 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.5.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.17 Platform : Linux -------------------------------------- test_math : 0.016 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.064 sec.</pre>
Output for 5.5.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.16 Platform : Linux -------------------------------------- test_math : 0.015 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.5.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.15 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.026 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.067 sec.</pre>
Output for 5.5.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.14 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.061 sec.</pre>
Output for 5.5.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.13 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.067 sec.</pre>
Output for 5.5.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.12 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.063 sec.</pre>
Output for 5.5.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.11 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.062 sec.</pre>
Output for 5.5.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.10 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.068 sec.</pre>
Output for 5.5.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.9 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.017 sec. test_loops : 0.023 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.077 sec.</pre>
Output for 5.5.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.8 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.022 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.072 sec.</pre>
Output for 5.5.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.7 Platform : Linux -------------------------------------- test_math : 0.024 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.072 sec.</pre>
Output for 5.5.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.6 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.020 sec. test_loops : 0.024 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.081 sec.</pre>
Output for 5.5.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.5 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.023 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.069 sec.</pre>
Output for 5.5.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.4 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.024 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.074 sec.</pre>
Output for 5.5.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.3 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.021 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.069 sec.</pre>
Output for 5.5.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.2 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.5.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.1 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.067 sec.</pre>
Output for 5.5.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.5.0 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.022 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.07 sec.</pre>
Output for 5.4.45
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.45 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.023 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.067 sec.</pre>
Output for 5.4.44
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.44 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.022 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.4.43
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.43 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.071 sec.</pre>
Output for 5.4.42
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.42 Platform : Linux -------------------------------------- test_math : 0.024 sec. test_stringmanipulation : 0.021 sec. test_loops : 0.027 sec. test_ifelse : 0.020 sec. -------------------------------------- Total time: : 0.092 sec.</pre>
Output for 5.4.41
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.41 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.06 sec.</pre>
Output for 5.4.40
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.40 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.067 sec.</pre>
Output for 5.4.39
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.39 Platform : Linux -------------------------------------- test_math : 0.041 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.026 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.098 sec.</pre>
Output for 5.4.38
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.38 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.023 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.073 sec.</pre>
Output for 5.4.37
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.37 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.4.36
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.36 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.023 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.074 sec.</pre>
Output for 5.4.35
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.35 Platform : Linux -------------------------------------- test_math : 0.014 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.019 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.06 sec.</pre>
Output for 5.4.34
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.34 Platform : Linux -------------------------------------- test_math : 0.015 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.063 sec.</pre>
Output for 5.4.33
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.33 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.065 sec.</pre>
Output for 5.4.32
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.32 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.067 sec.</pre>
Output for 5.4.31
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.31 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.023 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.064 sec.</pre>
Output for 5.4.30
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.30 Platform : Linux -------------------------------------- test_math : 0.016 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.023 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.067 sec.</pre>
Output for 5.4.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.29 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.024 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.072 sec.</pre>
Output for 5.4.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.28 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.024 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.075 sec.</pre>
Output for 5.4.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.27 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.020 sec. test_loops : 0.023 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.078 sec.</pre>
Output for 5.4.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.26 Platform : Linux -------------------------------------- test_math : 0.016 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.065 sec.</pre>
Output for 5.4.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.25 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.4.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.24 Platform : Linux -------------------------------------- test_math : 0.032 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.08 sec.</pre>
Output for 5.4.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.23 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.069 sec.</pre>
Output for 5.4.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.22 Platform : Linux -------------------------------------- test_math : 0.015 sec. test_stringmanipulation : 0.017 sec. test_loops : 0.023 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.07 sec.</pre>
Output for 5.4.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.21 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.068 sec.</pre>
Output for 5.4.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.20 Platform : Linux -------------------------------------- test_math : 0.015 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.064 sec.</pre>
Output for 5.4.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.19 Platform : Linux -------------------------------------- test_math : 0.016 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.4.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.18 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.019 sec. test_loops : 0.026 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.08 sec.</pre>
Output for 5.4.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.17 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.020 sec. test_loops : 0.024 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.078 sec.</pre>
Output for 5.4.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.16 Platform : Linux -------------------------------------- test_math : 0.013 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.062 sec.</pre>
Output for 5.4.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.15 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.068 sec.</pre>
Output for 5.4.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.14 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.024 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.075 sec.</pre>
Output for 5.4.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.13 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.024 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.077 sec.</pre>
Output for 5.4.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.12 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.023 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.07 sec.</pre>
Output for 5.4.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.11 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.023 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.069 sec.</pre>
Output for 5.4.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.10 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.023 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.074 sec.</pre>
Output for 5.4.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.9 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.022 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.072 sec.</pre>
Output for 5.4.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.8 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.023 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.069 sec.</pre>
Output for 5.4.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.7 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.020 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.067 sec.</pre>
Output for 5.4.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.6 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.023 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.074 sec.</pre>
Output for 5.4.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.5 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.022 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.075 sec.</pre>
Output for 5.4.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.4 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.018 sec. test_loops : 0.024 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.075 sec.</pre>
Output for 5.4.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.3 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.013 sec. test_loops : 0.022 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 5.4.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.2 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.071 sec.</pre>
Output for 5.4.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.1 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.071 sec.</pre>
Output for 5.4.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.4.0 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.071 sec.</pre>
Output for 5.3.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.29 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.022 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.071 sec.</pre>
Output for 5.3.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.28 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.018 sec. test_loops : 0.024 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.079 sec.</pre>
Output for 5.3.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.27 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.024 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.074 sec.</pre>
Output for 5.3.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.26 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.022 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.073 sec.</pre>
Output for 5.3.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.25 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.023 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.073 sec.</pre>
Output for 5.3.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.24 Platform : Linux -------------------------------------- test_math : 0.016 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.021 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.067 sec.</pre>
Output for 5.3.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.23 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.017 sec. test_loops : 0.024 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.077 sec.</pre>
Output for 5.3.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.22 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.022 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.073 sec.</pre>
Output for 5.3.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.21 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.023 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.077 sec.</pre>
Output for 5.3.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.20 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.021 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.072 sec.</pre>
Output for 5.3.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.19 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.022 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.076 sec.</pre>
Output for 5.3.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.18 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.022 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.073 sec.</pre>
Output for 5.3.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.17 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.017 sec. test_loops : 0.023 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.077 sec.</pre>
Output for 5.3.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.16 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.022 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.07 sec.</pre>
Output for 5.3.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.15 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.018 sec. test_loops : 0.023 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.078 sec.</pre>
Output for 5.3.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.14 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.022 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.071 sec.</pre>
Output for 5.3.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.13 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.021 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.068 sec.</pre>
Output for 5.3.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.12 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.021 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.071 sec.</pre>
Output for 5.3.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.11 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.021 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.074 sec.</pre>
Output for 5.3.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.10 Platform : Linux -------------------------------------- test_math : 0.024 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.023 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.079 sec.</pre>
Output for 5.3.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.9 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.024 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.076 sec.</pre>
Output for 5.3.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.8 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.024 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.076 sec.</pre>
Output for 5.3.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.7 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.023 sec. test_ifelse : 0.017 sec. -------------------------------------- Total time: : 0.074 sec.</pre>
Output for 5.3.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.6 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.016 sec. test_loops : 0.025 sec. test_ifelse : 0.017 sec. -------------------------------------- Total time: : 0.079 sec.</pre>
Output for 5.3.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.5 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.020 sec. test_loops : 0.029 sec. test_ifelse : 0.017 sec. -------------------------------------- Total time: : 0.085 sec.</pre>
Output for 5.3.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.4 Platform : Linux -------------------------------------- test_math : 0.016 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.023 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.069 sec.</pre>
Output for 5.3.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.3 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.017 sec. test_loops : 0.028 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.077 sec.</pre>
Output for 5.3.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.2 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.022 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.07 sec.</pre>
Output for 5.3.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.1 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.020 sec. test_loops : 0.025 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.083 sec.</pre>
Output for 5.3.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.3.0 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.021 sec. test_loops : 0.023 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.079 sec.</pre>
Output for 5.2.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.17 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.030 sec. test_ifelse : 0.024 sec. -------------------------------------- Total time: : 0.087 sec.</pre>
Output for 5.2.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.16 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.029 sec. test_ifelse : 0.025 sec. -------------------------------------- Total time: : 0.086 sec.</pre>
Output for 5.2.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.15 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.026 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.085 sec.</pre>
Output for 5.2.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.14 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.029 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.09 sec.</pre>
Output for 5.2.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.13 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.017 sec. test_loops : 0.030 sec. test_ifelse : 0.025 sec. -------------------------------------- Total time: : 0.09 sec.</pre>
Output for 5.2.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.12 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.031 sec. test_ifelse : 0.034 sec. -------------------------------------- Total time: : 0.098 sec.</pre>
Output for 5.2.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.11 Platform : Linux -------------------------------------- test_math : 0.016 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.029 sec. test_ifelse : 0.023 sec. -------------------------------------- Total time: : 0.082 sec.</pre>
Output for 5.2.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.10 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.027 sec. test_ifelse : 0.024 sec. -------------------------------------- Total time: : 0.082 sec.</pre>
Output for 5.2.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.9 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.027 sec. test_ifelse : 0.023 sec. -------------------------------------- Total time: : 0.082 sec.</pre>
Output for 5.2.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.8 Platform : Linux -------------------------------------- test_math : 0.015 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.028 sec. test_ifelse : 0.026 sec. -------------------------------------- Total time: : 0.084 sec.</pre>
Output for 5.2.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.7 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.014 sec. test_loops : 0.026 sec. test_ifelse : 0.028 sec. -------------------------------------- Total time: : 0.086 sec.</pre>
Output for 5.2.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.6 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.022 sec. test_loops : 0.038 sec. test_ifelse : 0.035 sec. -------------------------------------- Total time: : 0.116 sec.</pre>
Output for 5.2.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.5 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.021 sec. test_loops : 0.038 sec. test_ifelse : 0.031 sec. -------------------------------------- Total time: : 0.111 sec.</pre>
Output for 5.2.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.4 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.015 sec. test_loops : 0.030 sec. test_ifelse : 0.024 sec. -------------------------------------- Total time: : 0.087 sec.</pre>
Output for 5.2.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.3 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.018 sec. test_loops : 0.030 sec. test_ifelse : 0.024 sec. -------------------------------------- Total time: : 0.092 sec.</pre>
Output for 5.2.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.2 Platform : Linux -------------------------------------- test_math : 0.021 sec. test_stringmanipulation : 0.021 sec. test_loops : 0.029 sec. test_ifelse : 0.025 sec. -------------------------------------- Total time: : 0.096 sec.</pre>
Output for 5.2.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.1 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.021 sec. test_loops : 0.027 sec. test_ifelse : 0.025 sec. -------------------------------------- Total time: : 0.095 sec.</pre>
Output for 5.2.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.2.0 Platform : Linux -------------------------------------- test_math : 0.019 sec. test_stringmanipulation : 0.018 sec. test_loops : 0.026 sec. test_ifelse : 0.023 sec. -------------------------------------- Total time: : 0.086 sec.</pre>
Output for 5.1.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.1.6 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.018 sec. test_loops : 0.027 sec. test_ifelse : 0.024 sec. -------------------------------------- Total time: : 0.087 sec.</pre>
Output for 5.1.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.1.5 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.020 sec. test_loops : 0.030 sec. test_ifelse : 0.024 sec. -------------------------------------- Total time: : 0.091 sec.</pre>
Output for 5.1.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.1.4 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.029 sec. test_loops : 0.038 sec. test_ifelse : 0.035 sec. -------------------------------------- Total time: : 0.122 sec.</pre>
Output for 5.1.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.1.3 Platform : Linux -------------------------------------- test_math : 0.020 sec. test_stringmanipulation : 0.018 sec. test_loops : 0.027 sec. test_ifelse : 0.025 sec. -------------------------------------- Total time: : 0.09 sec.</pre>
Output for 5.1.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.1.2 Platform : Linux -------------------------------------- test_math : 0.018 sec. test_stringmanipulation : 0.019 sec. test_loops : 0.029 sec. test_ifelse : 0.028 sec. -------------------------------------- Total time: : 0.094 sec.</pre>
Output for 5.1.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.1.1 Platform : Linux -------------------------------------- test_math : 0.017 sec. test_stringmanipulation : 0.017 sec. test_loops : 0.028 sec. test_ifelse : 0.025 sec. -------------------------------------- Total time: : 0.087 sec.</pre>
Output for 5.1.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.1.0 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.020 sec. test_loops : 0.030 sec. test_ifelse : 0.026 sec. -------------------------------------- Total time: : 0.099 sec.</pre>
Output for 5.0.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.0.5 Platform : Linux -------------------------------------- test_math : 0.029 sec. test_stringmanipulation : 0.028 sec. test_loops : 0.094 sec. test_ifelse : 0.062 sec. -------------------------------------- Total time: : 0.213 sec.</pre>
Output for 5.0.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.0.4 Platform : Linux -------------------------------------- test_math : 0.031 sec. test_stringmanipulation : 0.040 sec. test_loops : 0.097 sec. test_ifelse : 0.067 sec. -------------------------------------- Total time: : 0.235 sec.</pre>
Output for 5.0.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.0.3 Platform : Linux -------------------------------------- test_math : 0.025 sec. test_stringmanipulation : 0.031 sec. test_loops : 0.107 sec. test_ifelse : 0.071 sec. -------------------------------------- Total time: : 0.234 sec.</pre>
Output for 5.0.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.0.2 Platform : Linux -------------------------------------- test_math : 0.025 sec. test_stringmanipulation : 0.025 sec. test_loops : 0.091 sec. test_ifelse : 0.057 sec. -------------------------------------- Total time: : 0.198 sec.</pre>
Output for 5.0.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.0.1 Platform : Linux -------------------------------------- test_math : 0.025 sec. test_stringmanipulation : 0.026 sec. test_loops : 0.108 sec. test_ifelse : 0.060 sec. -------------------------------------- Total time: : 0.219 sec.</pre>
Output for 5.0.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 5.0.0 Platform : Linux -------------------------------------- test_math : 0.031 sec. test_stringmanipulation : 0.037 sec. test_loops : 0.091 sec. test_ifelse : 0.070 sec. -------------------------------------- Total time: : 0.229 sec.</pre>
Output for 4.4.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.4.9 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.023 sec. test_loops : 0.119 sec. test_ifelse : 0.072 sec. -------------------------------------- Total time: : 0.236 sec.</pre>
Output for 4.4.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.4.8 Platform : Linux -------------------------------------- test_math : 0.024 sec. test_stringmanipulation : 0.024 sec. test_loops : 0.102 sec. test_ifelse : 0.066 sec. -------------------------------------- Total time: : 0.216 sec.</pre>
Output for 4.4.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.4.7 Platform : Linux -------------------------------------- test_math : 0.025 sec. test_stringmanipulation : 0.028 sec. test_loops : 0.094 sec. test_ifelse : 0.061 sec. -------------------------------------- Total time: : 0.208 sec.</pre>
Output for 4.4.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.4.6 Platform : Linux -------------------------------------- test_math : 0.024 sec. test_stringmanipulation : 0.024 sec. test_loops : 0.098 sec. test_ifelse : 0.063 sec. -------------------------------------- Total time: : 0.209 sec.</pre>
Output for 4.4.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.4.5 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.026 sec. test_loops : 0.102 sec. test_ifelse : 0.058 sec. -------------------------------------- Total time: : 0.209 sec.</pre>
Output for 4.4.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.4.4 Platform : Linux -------------------------------------- test_math : 0.024 sec. test_stringmanipulation : 0.023 sec. test_loops : 0.095 sec. test_ifelse : 0.069 sec. -------------------------------------- Total time: : 0.211 sec.</pre>
Output for 4.4.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.4.3 Platform : Linux -------------------------------------- test_math : 0.025 sec. test_stringmanipulation : 0.023 sec. test_loops : 0.110 sec. test_ifelse : 0.082 sec. -------------------------------------- Total time: : 0.24 sec.</pre>
Output for 4.4.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.4.2 Platform : Linux -------------------------------------- test_math : 0.025 sec. test_stringmanipulation : 0.026 sec. test_loops : 0.097 sec. test_ifelse : 0.066 sec. -------------------------------------- Total time: : 0.214 sec.</pre>
Output for 4.4.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.4.1 Platform : Linux -------------------------------------- test_math : 0.025 sec. test_stringmanipulation : 0.022 sec. test_loops : 0.096 sec. test_ifelse : 0.066 sec. -------------------------------------- Total time: : 0.209 sec.</pre>
Output for 4.4.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.4.0 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.024 sec. test_loops : 0.107 sec. test_ifelse : 0.072 sec. -------------------------------------- Total time: : 0.229 sec.</pre>
Output for 4.3.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.3.11 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.025 sec. test_loops : 0.106 sec. test_ifelse : 0.061 sec. -------------------------------------- Total time: : 0.219 sec.</pre>
Output for 4.3.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.3.10 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.033 sec. test_loops : 0.111 sec. test_ifelse : 0.060 sec. -------------------------------------- Total time: : 0.23 sec.</pre>
Output for 4.3.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.3.9 Platform : Linux -------------------------------------- test_math : 0.028 sec. test_stringmanipulation : 0.027 sec. test_loops : 0.098 sec. test_ifelse : 0.064 sec. -------------------------------------- Total time: : 0.217 sec.</pre>
Output for 4.3.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.3.8 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.027 sec. test_loops : 0.105 sec. test_ifelse : 0.075 sec. -------------------------------------- Total time: : 0.234 sec.</pre>
Output for 4.3.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.3.7 Platform : Linux -------------------------------------- test_math : 0.031 sec. test_stringmanipulation : 0.038 sec. test_loops : 0.117 sec. test_ifelse : 0.083 sec. -------------------------------------- Total time: : 0.269 sec.</pre>
Output for 4.3.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.3.6 Platform : Linux -------------------------------------- test_math : 0.031 sec. test_stringmanipulation : 0.038 sec. test_loops : 0.126 sec. test_ifelse : 0.060 sec. -------------------------------------- Total time: : 0.255 sec.</pre>
Output for 4.3.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.3.5 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.025 sec. test_loops : 0.092 sec. test_ifelse : 0.060 sec. -------------------------------------- Total time: : 0.2 sec.</pre>
Output for 4.3.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.3.4 Platform : Linux -------------------------------------- test_math : 0.025 sec. test_stringmanipulation : 0.025 sec. test_loops : 0.095 sec. test_ifelse : 0.077 sec. -------------------------------------- Total time: : 0.222 sec.</pre>
Output for 4.3.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.3.3 Platform : Linux -------------------------------------- test_math : 0.030 sec. test_stringmanipulation : 0.026 sec. test_loops : 0.096 sec. test_ifelse : 0.061 sec. -------------------------------------- Total time: : 0.213 sec.</pre>
Output for 4.3.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.3.2 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.024 sec. test_loops : 0.093 sec. test_ifelse : 0.062 sec. -------------------------------------- Total time: : 0.206 sec.</pre>
Output for 4.3.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.3.1 Platform : Linux -------------------------------------- test_math : 0.025 sec. test_stringmanipulation : 0.024 sec. test_loops : 0.087 sec. test_ifelse : 0.064 sec. -------------------------------------- Total time: : 0.2 sec.</pre>
Output for 4.3.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-04-29 12:35:52 Server : localhost@127.0.0.1 PHP version : 4.3.0 Platform : Linux -------------------------------------- test_math : 0.024 sec. test_stringmanipulation : 0.026 sec. test_loops : 0.102 sec. test_ifelse : 0.067 sec. -------------------------------------- Total time: : 0.219 sec.</pre>

preferences:
190.97 ms | 402 KiB | 288 Q