3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* ########################################################################## # PHP Benchmark Performance Script # # <A9> 2010 Code24 BV # # # # Author : Alessandro Torrisi # # Company : Code24 BV, The Netherlands # # Date : July 31, 2010 # # version : 1.0 # # License : Creative Commons CC-BY license # # Website : http://www.php-benchmark-script.com # # # ########################################################################## */ set_time_limit(0); function get_microtime() { $time = microtime(true); if (is_string($time)) { list($f, $i) = explode(" ", $time); $time = intval($i) + floatval($f); } return $time; } function test_Math($count = 14000) { $time_start = get_microtime(); $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(get_microtime() - $time_start, 3); } function test_StringManipulation($count = 13000) { $time_start = get_microtime(); $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(get_microtime() - $time_start, 3); } function test_Loops($count = 1900000) { $time_start = get_microtime(); for($i = 0; $i < $count; ++$i); $i = 0; while($i++ < $count); return number_format(get_microtime() - $time_start, 3); } function test_IfElse($count = 900000) { $time_start = get_microtime(); for ($i=0; $i < $count; $i++) { if ($i == -1) { } elseif ($i == -2) { } else if ($i == -3) { } } return number_format(get_microtime() - $time_start, 3); } $total = 0; $functions = get_defined_functions(); $line = str_pad("-",38,"-"); echo "<pre>\n$line\n|".str_pad("PHP BENCHMARK SCRIPT",36," ",STR_PAD_BOTH)."|\n$line\nStart : ".date("Y-m-d H:i:s")."\nServer : ".php_uname()."\nPHP version : ".PHP_VERSION."\nPlatform : ".PHP_OS. "\n$line\n"; foreach ($functions['user'] as $user) { if (preg_match('/^test_/', $user)) { $result = $user(); $total += $result; echo str_pad($user, 25) . " : " . $result ." sec.\n"; } } echo str_pad("-", 38, "-") . "\n" . str_pad("Total time:", 25) . " : " . $total ." sec.\n</pre>\n";
Output for 7.3.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.3.12 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.036 sec. test_loops : 0.022 sec. test_ifelse : 0.028 sec. -------------------------------------- Total time: : 0.109 sec. </pre>
Output for 7.3.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.3.11 Platform : Linux -------------------------------------- test_math : 0.024 sec. test_stringmanipulation : 0.035 sec. test_loops : 0.026 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.112 sec. </pre>
Output for 7.3.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.3.10 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.035 sec. test_loops : 0.022 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.107 sec. </pre>
Output for 7.3.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.3.9 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.035 sec. test_loops : 0.022 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.107 sec. </pre>
Output for 7.3.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.3.8 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.036 sec. test_loops : 0.022 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.111 sec. </pre>
Output for 7.3.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.3.7 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.035 sec. test_loops : 0.022 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.11 sec. </pre>
Output for 7.3.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.3.6 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.034 sec. test_loops : 0.022 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.106 sec. </pre>
Output for 7.3.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.3.5 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.039 sec. test_loops : 0.024 sec. test_ifelse : 0.031 sec. -------------------------------------- Total time: : 0.12 sec. </pre>
Output for 7.3.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.3.4 Platform : Linux -------------------------------------- test_math : 0.024 sec. test_stringmanipulation : 0.035 sec. test_loops : 0.022 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.108 sec. </pre>
Output for 7.3.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.3.3 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.039 sec. test_loops : 0.024 sec. test_ifelse : 0.031 sec. -------------------------------------- Total time: : 0.121 sec. </pre>
Output for 7.3.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.3.2 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.034 sec. test_loops : 0.022 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.105 sec. </pre>
Output for 7.3.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.3.1 Platform : Linux -------------------------------------- test_math : 0.024 sec. test_stringmanipulation : 0.035 sec. test_loops : 0.022 sec. test_ifelse : 0.028 sec. -------------------------------------- Total time: : 0.109 sec. </pre>
Output for 7.3.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.3.0 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.038 sec. test_loops : 0.024 sec. test_ifelse : 0.029 sec. -------------------------------------- Total time: : 0.117 sec. </pre>
Output for 7.2.24
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.24 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.023 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.119 sec. </pre>
Output for 7.2.23
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.23 Platform : Linux -------------------------------------- test_math : 0.029 sec. test_stringmanipulation : 0.043 sec. test_loops : 0.024 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.123 sec. </pre>
Output for 7.2.22
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.22 Platform : Linux -------------------------------------- test_math : 0.028 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.023 sec. test_ifelse : 0.026 sec. -------------------------------------- Total time: : 0.119 sec. </pre>
Output for 7.2.21
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.21 Platform : Linux -------------------------------------- test_math : 0.030 sec. test_stringmanipulation : 0.040 sec. test_loops : 0.022 sec. test_ifelse : 0.028 sec. -------------------------------------- Total time: : 0.12 sec. </pre>
Output for 7.2.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.20 Platform : Linux -------------------------------------- test_math : 0.032 sec. test_stringmanipulation : 0.048 sec. test_loops : 0.025 sec. test_ifelse : 0.030 sec. -------------------------------------- Total time: : 0.135 sec. </pre>
Output for 7.2.19
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.19 Platform : Linux -------------------------------------- test_math : 0.031 sec. test_stringmanipulation : 0.041 sec. test_loops : 0.023 sec. test_ifelse : 0.024 sec. -------------------------------------- Total time: : 0.119 sec. </pre>
Output for 7.2.18
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.18 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.041 sec. test_loops : 0.023 sec. test_ifelse : 0.023 sec. -------------------------------------- Total time: : 0.113 sec. </pre>
Output for 7.2.17
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.17 Platform : Linux -------------------------------------- test_math : 0.030 sec. test_stringmanipulation : 0.047 sec. test_loops : 0.025 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.129 sec. </pre>
Output for 7.2.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.16 Platform : Linux -------------------------------------- test_math : 0.028 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.029 sec. test_ifelse : 0.024 sec. -------------------------------------- Total time: : 0.123 sec. </pre>
Output for 7.2.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.15 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.040 sec. test_loops : 0.023 sec. test_ifelse : 0.026 sec. -------------------------------------- Total time: : 0.116 sec. </pre>
Output for 7.2.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.14 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.041 sec. test_loops : 0.023 sec. test_ifelse : 0.026 sec. -------------------------------------- Total time: : 0.116 sec. </pre>
Output for 7.2.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.13 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.040 sec. test_loops : 0.023 sec. test_ifelse : 0.026 sec. -------------------------------------- Total time: : 0.116 sec. </pre>
Output for 7.2.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.12 Platform : Linux -------------------------------------- test_math : 0.028 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.023 sec. test_ifelse : 0.024 sec. -------------------------------------- Total time: : 0.117 sec. </pre>
Output for 7.2.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.11 Platform : Linux -------------------------------------- test_math : 0.029 sec. test_stringmanipulation : 0.044 sec. test_loops : 0.024 sec. test_ifelse : 0.028 sec. -------------------------------------- Total time: : 0.125 sec. </pre>
Output for 7.2.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.10 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.024 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.12 sec. </pre>
Output for 7.2.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.9 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.041 sec. test_loops : 0.023 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.118 sec. </pre>
Output for 7.2.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.8 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.041 sec. test_loops : 0.023 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.118 sec. </pre>
Output for 7.2.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.7 Platform : Linux -------------------------------------- test_math : 0.028 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.023 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.12 sec. </pre>
Output for 7.2.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.6 Platform : Linux -------------------------------------- test_math : 0.029 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.023 sec. test_ifelse : 0.025 sec. -------------------------------------- Total time: : 0.119 sec. </pre>
Output for 7.2.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.5 Platform : Linux -------------------------------------- test_math : 0.031 sec. test_stringmanipulation : 0.044 sec. test_loops : 0.024 sec. test_ifelse : 0.029 sec. -------------------------------------- Total time: : 0.128 sec. </pre>
Output for 7.2.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.4 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.024 sec. test_ifelse : 0.024 sec. -------------------------------------- Total time: : 0.117 sec. </pre>
Output for 7.2.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.3 Platform : Linux -------------------------------------- test_math : 0.028 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.023 sec. test_ifelse : 0.024 sec. -------------------------------------- Total time: : 0.117 sec. </pre>
Output for 7.2.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.2 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.041 sec. test_loops : 0.023 sec. test_ifelse : 0.026 sec. -------------------------------------- Total time: : 0.116 sec. </pre>
Output for 7.2.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.1 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.042 sec. test_loops : 0.023 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.119 sec. </pre>
Output for 7.2.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.2.0 Platform : Linux -------------------------------------- test_math : 0.028 sec. test_stringmanipulation : 0.043 sec. test_loops : 0.024 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.122 sec. </pre>
Output for 7.1.33
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.33 Platform : Linux -------------------------------------- test_math : 0.038 sec. test_stringmanipulation : 0.056 sec. test_loops : 0.057 sec. test_ifelse : 0.049 sec. -------------------------------------- Total time: : 0.2 sec. </pre>
Output for 7.1.32
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.32 Platform : Linux -------------------------------------- test_math : 0.039 sec. test_stringmanipulation : 0.055 sec. test_loops : 0.059 sec. test_ifelse : 0.050 sec. -------------------------------------- Total time: : 0.203 sec. </pre>
Output for 7.1.31
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.31 Platform : Linux -------------------------------------- test_math : 0.038 sec. test_stringmanipulation : 0.055 sec. test_loops : 0.056 sec. test_ifelse : 0.048 sec. -------------------------------------- Total time: : 0.197 sec. </pre>
Output for 7.1.30
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.30 Platform : Linux -------------------------------------- test_math : 0.038 sec. test_stringmanipulation : 0.054 sec. test_loops : 0.055 sec. test_ifelse : 0.048 sec. -------------------------------------- Total time: : 0.195 sec. </pre>
Output for 7.1.29
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.29 Platform : Linux -------------------------------------- test_math : 0.038 sec. test_stringmanipulation : 0.055 sec. test_loops : 0.057 sec. test_ifelse : 0.050 sec. -------------------------------------- Total time: : 0.2 sec. </pre>
Output for 7.1.28
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.28 Platform : Linux -------------------------------------- test_math : 0.038 sec. test_stringmanipulation : 0.054 sec. test_loops : 0.056 sec. test_ifelse : 0.048 sec. -------------------------------------- Total time: : 0.196 sec. </pre>
Output for 7.1.27
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.27 Platform : Linux -------------------------------------- test_math : 0.044 sec. test_stringmanipulation : 0.060 sec. test_loops : 0.060 sec. test_ifelse : 0.051 sec. -------------------------------------- Total time: : 0.215 sec. </pre>
Output for 7.1.26
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.26 Platform : Linux -------------------------------------- test_math : 0.039 sec. test_stringmanipulation : 0.054 sec. test_loops : 0.057 sec. test_ifelse : 0.048 sec. -------------------------------------- Total time: : 0.198 sec. </pre>
Output for 7.1.25
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.25 Platform : Linux -------------------------------------- test_math : 0.038 sec. test_stringmanipulation : 0.054 sec. test_loops : 0.061 sec. test_ifelse : 0.048 sec. -------------------------------------- Total time: : 0.201 sec. </pre>
Output for 7.1.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.7 Platform : Linux -------------------------------------- test_math : 0.028 sec. test_stringmanipulation : 0.040 sec. test_loops : 0.026 sec. test_ifelse : 0.018 sec. -------------------------------------- Total time: : 0.112 sec. </pre>
Output for 7.1.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.6 Platform : Linux -------------------------------------- test_math : 0.029 sec. test_stringmanipulation : 0.036 sec. test_loops : 0.022 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.102 sec. </pre>
Output for 7.1.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.1.5 Platform : Linux -------------------------------------- test_math : 0.049 sec. test_stringmanipulation : 0.054 sec. test_loops : 0.030 sec. test_ifelse : 0.018 sec. -------------------------------------- Total time: : 0.151 sec. </pre>
Output for 7.1.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.11-1-ARCH #1 SMP PREEMPT Sun Nov 27 09:26:14 CET 2016 x86_64 PHP version : 7.1.0 Platform : Linux -------------------------------------- test_math : 0.023 sec. test_stringmanipulation : 0.032 sec. test_loops : 0.021 sec. test_ifelse : 0.024 sec. -------------------------------------- Total time: : 0.1 sec. </pre>
Output for 7.0.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.0.20 Platform : Linux -------------------------------------- test_math : 0.025 sec. test_stringmanipulation : 0.036 sec. test_loops : 0.024 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.099 sec. </pre>
Output for 7.0.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 7.0.14 Platform : Linux -------------------------------------- test_math : 0.040 sec. test_stringmanipulation : 0.048 sec. test_loops : 0.025 sec. test_ifelse : 0.043 sec. -------------------------------------- Total time: : 0.156 sec. </pre>
Output for 7.0.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 7.0.11 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.034 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.095 sec. </pre>
Output for 7.0.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 7.0.10 Platform : Linux -------------------------------------- test_math : 0.033 sec. test_stringmanipulation : 0.036 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.104 sec. </pre>
Output for 7.0.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 7.0.9 Platform : Linux -------------------------------------- test_math : 0.026 sec. test_stringmanipulation : 0.032 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.093 sec. </pre>
Output for 7.0.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 7.0.8 Platform : Linux -------------------------------------- test_math : 0.030 sec. test_stringmanipulation : 0.032 sec. test_loops : 0.023 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.1 sec. </pre>
Output for 7.0.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 7.0.7 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.033 sec. test_loops : 0.021 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.095 sec. </pre>
Output for 7.0.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 7.0.6 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.026 sec. test_loops : 0.019 sec. test_ifelse : 0.012 sec. -------------------------------------- Total time: : 0.079 sec. </pre>
Output for 7.0.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 7.0.5 Platform : Linux -------------------------------------- test_math : 0.022 sec. test_stringmanipulation : 0.027 sec. test_loops : 0.020 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.082 sec. </pre>
Output for 7.0.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 7.0.4 Platform : Linux -------------------------------------- test_math : 0.031 sec. test_stringmanipulation : 0.034 sec. test_loops : 0.022 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.103 sec. </pre>
Output for 7.0.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 7.0.3 Platform : Linux -------------------------------------- test_math : 0.035 sec. test_stringmanipulation : 0.048 sec. test_loops : 0.022 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.121 sec. </pre>
Output for 7.0.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 7.0.2 Platform : Linux -------------------------------------- test_math : 0.032 sec. test_stringmanipulation : 0.036 sec. test_loops : 0.020 sec. test_ifelse : 0.017 sec. -------------------------------------- Total time: : 0.105 sec. </pre>
Output for 7.0.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 7.0.1 Platform : Linux -------------------------------------- test_math : 0.027 sec. test_stringmanipulation : 0.033 sec. test_loops : 0.021 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.097 sec. </pre>
Output for 7.0.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 7.0.0 Platform : Linux -------------------------------------- test_math : 0.031 sec. test_stringmanipulation : 0.034 sec. test_loops : 0.021 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.102 sec. </pre>
Output for 5.6.28
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.8.6-1-ARCH #1 SMP PREEMPT Mon Oct 31 18:51:30 CET 2016 x86_64 PHP version : 5.6.28 Platform : Linux -------------------------------------- test_math : 0.118 sec. test_stringmanipulation : 0.094 sec. test_loops : 0.061 sec. test_ifelse : 0.053 sec. -------------------------------------- Total time: : 0.326 sec. </pre>
Output for 5.6.26
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.26 Platform : Linux -------------------------------------- test_math : 0.078 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.067 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.262 sec. </pre>
Output for 5.6.25
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.25 Platform : Linux -------------------------------------- test_math : 0.078 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.263 sec. </pre>
Output for 5.6.24
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.24 Platform : Linux -------------------------------------- test_math : 0.077 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.067 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.262 sec. </pre>
Output for 5.6.23
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.23 Platform : Linux -------------------------------------- test_math : 0.088 sec. test_stringmanipulation : 0.085 sec. test_loops : 0.062 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.274 sec. </pre>
Output for 5.6.22
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.22 Platform : Linux -------------------------------------- test_math : 0.077 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.261 sec. </pre>
Output for 5.6.21
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.21 Platform : Linux -------------------------------------- test_math : 0.077 sec. test_stringmanipulation : 0.067 sec. test_loops : 0.067 sec. test_ifelse : 0.038 sec. -------------------------------------- Total time: : 0.249 sec. </pre>
Output for 5.6.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.20 Platform : Linux -------------------------------------- test_math : 0.075 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.060 sec. test_ifelse : 0.036 sec. -------------------------------------- Total time: : 0.249 sec. </pre>
Output for 5.6.19
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.19 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.067 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.265 sec. </pre>
Output for 5.6.18
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.18 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.062 sec. test_ifelse : 0.037 sec. -------------------------------------- Total time: : 0.257 sec. </pre>
Output for 5.6.17
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.17 Platform : Linux -------------------------------------- test_math : 0.094 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.279 sec. </pre>
Output for 5.6.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.16 Platform : Linux -------------------------------------- test_math : 0.087 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.068 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.272 sec. </pre>
Output for 5.6.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.15 Platform : Linux -------------------------------------- test_math : 0.077 sec. test_stringmanipulation : 0.082 sec. test_loops : 0.061 sec. test_ifelse : 0.036 sec. -------------------------------------- Total time: : 0.256 sec. </pre>
Output for 5.6.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.14 Platform : Linux -------------------------------------- test_math : 0.082 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.266 sec. </pre>
Output for 5.6.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.13 Platform : Linux -------------------------------------- test_math : 0.092 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.276 sec. </pre>
Output for 5.6.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.12 Platform : Linux -------------------------------------- test_math : 0.073 sec. test_stringmanipulation : 0.073 sec. test_loops : 0.061 sec. test_ifelse : 0.034 sec. -------------------------------------- Total time: : 0.241 sec. </pre>
Output for 5.6.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.11 Platform : Linux -------------------------------------- test_math : 0.095 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.28 sec. </pre>
Output for 5.6.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.10 Platform : Linux -------------------------------------- test_math : 0.091 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.274 sec. </pre>
Output for 5.6.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.9 Platform : Linux -------------------------------------- test_math : 0.095 sec. test_stringmanipulation : 0.082 sec. test_loops : 0.067 sec. test_ifelse : 0.037 sec. -------------------------------------- Total time: : 0.281 sec. </pre>
Output for 5.6.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.8 Platform : Linux -------------------------------------- test_math : 0.082 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.265 sec. </pre>
Output for 5.6.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.7 Platform : Linux -------------------------------------- test_math : 0.101 sec. test_stringmanipulation : 0.077 sec. test_loops : 0.063 sec. test_ifelse : 0.034 sec. -------------------------------------- Total time: : 0.275 sec. </pre>
Output for 5.6.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.6 Platform : Linux -------------------------------------- test_math : 0.092 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.275 sec. </pre>
Output for 5.6.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.5 Platform : Linux -------------------------------------- test_math : 0.084 sec. test_stringmanipulation : 0.077 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.266 sec. </pre>
Output for 5.6.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.4 Platform : Linux -------------------------------------- test_math : 0.076 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.261 sec. </pre>
Output for 5.6.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.3 Platform : Linux -------------------------------------- test_math : 0.089 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.067 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.274 sec. </pre>
Output for 5.6.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.2 Platform : Linux -------------------------------------- test_math : 0.077 sec. test_stringmanipulation : 0.075 sec. test_loops : 0.061 sec. test_ifelse : 0.037 sec. -------------------------------------- Total time: : 0.25 sec. </pre>
Output for 5.6.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.1 Platform : Linux -------------------------------------- test_math : 0.075 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.258 sec. </pre>
Output for 5.6.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.6.0 Platform : Linux -------------------------------------- test_math : 0.078 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.061 sec. test_ifelse : 0.037 sec. -------------------------------------- Total time: : 0.256 sec. </pre>
Output for 5.5.38
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.38 Platform : Linux -------------------------------------- test_math : 0.077 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.062 sec. test_ifelse : 0.036 sec. -------------------------------------- Total time: : 0.253 sec. </pre>
Output for 5.5.37
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.37 Platform : Linux -------------------------------------- test_math : 0.088 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.273 sec. </pre>
Output for 5.5.36
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.36 Platform : Linux -------------------------------------- test_math : 0.080 sec. test_stringmanipulation : 0.081 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.266 sec. </pre>
Output for 5.5.35
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.35 Platform : Linux -------------------------------------- test_math : 0.081 sec. test_stringmanipulation : 0.082 sec. test_loops : 0.067 sec. test_ifelse : 0.034 sec. -------------------------------------- Total time: : 0.264 sec. </pre>
Output for 5.5.34
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.34 Platform : Linux -------------------------------------- test_math : 0.064 sec. test_stringmanipulation : 0.069 sec. test_loops : 0.058 sec. test_ifelse : 0.037 sec. -------------------------------------- Total time: : 0.228 sec. </pre>
Output for 5.5.33
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.33 Platform : Linux -------------------------------------- test_math : 0.096 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.074 sec. test_ifelse : 0.045 sec. -------------------------------------- Total time: : 0.295 sec. </pre>
Output for 5.5.32
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.32 Platform : Linux -------------------------------------- test_math : 0.081 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.066 sec. test_ifelse : 0.043 sec. -------------------------------------- Total time: : 0.27 sec. </pre>
Output for 5.5.31
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.31 Platform : Linux -------------------------------------- test_math : 0.083 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.267 sec. </pre>
Output for 5.5.30
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.30 Platform : Linux -------------------------------------- test_math : 0.093 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.278 sec. </pre>
Output for 5.5.29
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.29 Platform : Linux -------------------------------------- test_math : 0.092 sec. test_stringmanipulation : 0.086 sec. test_loops : 0.062 sec. test_ifelse : 0.037 sec. -------------------------------------- Total time: : 0.277 sec. </pre>
Output for 5.5.28
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.28 Platform : Linux -------------------------------------- test_math : 0.092 sec. test_stringmanipulation : 0.082 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.279 sec. </pre>
Output for 5.5.27
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.27 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.066 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.265 sec. </pre>
Output for 5.5.26
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.26 Platform : Linux -------------------------------------- test_math : 0.082 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.265 sec. </pre>
Output for 5.5.25
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.25 Platform : Linux -------------------------------------- test_math : 0.095 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.066 sec. test_ifelse : 0.043 sec. -------------------------------------- Total time: : 0.283 sec. </pre>
Output for 5.5.24
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.24 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.264 sec. </pre>
Output for 5.5.23
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.23 Platform : Linux -------------------------------------- test_math : 0.077 sec. test_stringmanipulation : 0.081 sec. test_loops : 0.068 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.265 sec. </pre>
Output for 5.5.22
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.22 Platform : Linux -------------------------------------- test_math : 0.076 sec. test_stringmanipulation : 0.077 sec. test_loops : 0.063 sec. test_ifelse : 0.038 sec. -------------------------------------- Total time: : 0.254 sec. </pre>
Output for 5.5.21
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.21 Platform : Linux -------------------------------------- test_math : 0.105 sec. test_stringmanipulation : 0.084 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.294 sec. </pre>
Output for 5.5.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.20 Platform : Linux -------------------------------------- test_math : 0.086 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.271 sec. </pre>
Output for 5.5.19
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.19 Platform : Linux -------------------------------------- test_math : 0.078 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.074 sec. test_ifelse : 0.042 sec. -------------------------------------- Total time: : 0.274 sec. </pre>
Output for 5.5.18
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.18 Platform : Linux -------------------------------------- test_math : 0.078 sec. test_stringmanipulation : 0.081 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.264 sec. </pre>
Output for 5.5.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.16 Platform : Linux -------------------------------------- test_math : 0.077 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.261 sec. </pre>
Output for 5.5.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.15 Platform : Linux -------------------------------------- test_math : 0.087 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.27 sec. </pre>
Output for 5.5.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.14 Platform : Linux -------------------------------------- test_math : 0.077 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.063 sec. test_ifelse : 0.038 sec. -------------------------------------- Total time: : 0.258 sec. </pre>
Output for 5.5.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.13 Platform : Linux -------------------------------------- test_math : 0.086 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.066 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.271 sec. </pre>
Output for 5.5.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.12 Platform : Linux -------------------------------------- test_math : 0.103 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.287 sec. </pre>
Output for 5.5.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.11 Platform : Linux -------------------------------------- test_math : 0.077 sec. test_stringmanipulation : 0.081 sec. test_loops : 0.063 sec. test_ifelse : 0.038 sec. -------------------------------------- Total time: : 0.259 sec. </pre>
Output for 5.5.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.10 Platform : Linux -------------------------------------- test_math : 0.082 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.265 sec. </pre>
Output for 5.5.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.9 Platform : Linux -------------------------------------- test_math : 0.081 sec. test_stringmanipulation : 0.077 sec. test_loops : 0.066 sec. test_ifelse : 0.043 sec. -------------------------------------- Total time: : 0.267 sec. </pre>
Output for 5.5.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.8 Platform : Linux -------------------------------------- test_math : 0.106 sec. test_stringmanipulation : 0.082 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.293 sec. </pre>
Output for 5.5.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.7 Platform : Linux -------------------------------------- test_math : 0.094 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.066 sec. test_ifelse : 0.053 sec. -------------------------------------- Total time: : 0.292 sec. </pre>
Output for 5.5.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.6 Platform : Linux -------------------------------------- test_math : 0.086 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.271 sec. </pre>
Output for 5.5.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.5 Platform : Linux -------------------------------------- test_math : 0.086 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.066 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.272 sec. </pre>
Output for 5.5.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.4 Platform : Linux -------------------------------------- test_math : 0.100 sec. test_stringmanipulation : 0.081 sec. test_loops : 0.068 sec. test_ifelse : 0.041 sec. -------------------------------------- Total time: : 0.29 sec. </pre>
Output for 5.5.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.3 Platform : Linux -------------------------------------- test_math : 0.084 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.067 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.269 sec. </pre>
Output for 5.5.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.2 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.077 sec. test_loops : 0.060 sec. test_ifelse : 0.036 sec. -------------------------------------- Total time: : 0.252 sec. </pre>
Output for 5.5.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.1 Platform : Linux -------------------------------------- test_math : 0.094 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.278 sec. </pre>
Output for 5.5.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.5.0 Platform : Linux -------------------------------------- test_math : 0.077 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.066 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.26 sec. </pre>
Output for 5.4.45
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.45 Platform : Linux -------------------------------------- test_math : 0.076 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.062 sec. test_ifelse : 0.037 sec. -------------------------------------- Total time: : 0.253 sec. </pre>
Output for 5.4.44
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.44 Platform : Linux -------------------------------------- test_math : 0.074 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.063 sec. test_ifelse : 0.037 sec. -------------------------------------- Total time: : 0.254 sec. </pre>
Output for 5.4.43
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.43 Platform : Linux -------------------------------------- test_math : 0.085 sec. test_stringmanipulation : 0.081 sec. test_loops : 0.067 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.273 sec. </pre>
Output for 5.4.42
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.42 Platform : Linux -------------------------------------- test_math : 0.086 sec. test_stringmanipulation : 0.077 sec. test_loops : 0.067 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.27 sec. </pre>
Output for 5.4.41
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.41 Platform : Linux -------------------------------------- test_math : 0.128 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.067 sec. test_ifelse : 0.042 sec. -------------------------------------- Total time: : 0.316 sec. </pre>
Output for 5.4.40
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.40 Platform : Linux -------------------------------------- test_math : 0.075 sec. test_stringmanipulation : 0.077 sec. test_loops : 0.063 sec. test_ifelse : 0.037 sec. -------------------------------------- Total time: : 0.252 sec. </pre>
Output for 5.4.39
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.39 Platform : Linux -------------------------------------- test_math : 0.078 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.067 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.264 sec. </pre>
Output for 5.4.38
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.38 Platform : Linux -------------------------------------- test_math : 0.105 sec. test_stringmanipulation : 0.082 sec. test_loops : 0.067 sec. test_ifelse : 0.041 sec. -------------------------------------- Total time: : 0.295 sec. </pre>
Output for 5.4.37
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.37 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.077 sec. test_loops : 0.066 sec. test_ifelse : 0.036 sec. -------------------------------------- Total time: : 0.258 sec. </pre>
Output for 5.4.36
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.36 Platform : Linux -------------------------------------- test_math : 0.097 sec. test_stringmanipulation : 0.097 sec. test_loops : 0.077 sec. test_ifelse : 0.050 sec. -------------------------------------- Total time: : 0.321 sec. </pre>
Output for 5.4.35
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.35 Platform : Linux -------------------------------------- test_math : 0.077 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.067 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.262 sec. </pre>
Output for 5.4.34
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.34 Platform : Linux -------------------------------------- test_math : 0.110 sec. test_stringmanipulation : 0.084 sec. test_loops : 0.067 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.301 sec. </pre>
Output for 5.4.32
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.32 Platform : Linux -------------------------------------- test_math : 0.065 sec. test_stringmanipulation : 0.064 sec. test_loops : 0.055 sec. test_ifelse : 0.033 sec. -------------------------------------- Total time: : 0.217 sec. </pre>
Output for 5.4.31
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.31 Platform : Linux -------------------------------------- test_math : 0.097 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.067 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.282 sec. </pre>
Output for 5.4.30
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.30 Platform : Linux -------------------------------------- test_math : 0.076 sec. test_stringmanipulation : 0.087 sec. test_loops : 0.074 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.276 sec. </pre>
Output for 5.4.29
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.29 Platform : Linux -------------------------------------- test_math : 0.089 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.067 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.275 sec. </pre>
Output for 5.4.28
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.28 Platform : Linux -------------------------------------- test_math : 0.117 sec. test_stringmanipulation : 0.090 sec. test_loops : 0.099 sec. test_ifelse : 0.043 sec. -------------------------------------- Total time: : 0.349 sec. </pre>
Output for 5.4.27
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.27 Platform : Linux -------------------------------------- test_math : 0.076 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.062 sec. test_ifelse : 0.037 sec. -------------------------------------- Total time: : 0.253 sec. </pre>
Output for 5.4.26
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.26 Platform : Linux -------------------------------------- test_math : 0.067 sec. test_stringmanipulation : 0.085 sec. test_loops : 0.062 sec. test_ifelse : 0.033 sec. -------------------------------------- Total time: : 0.247 sec. </pre>
Output for 5.4.25
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.25 Platform : Linux -------------------------------------- test_math : 0.091 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.068 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.278 sec. </pre>
Output for 5.4.24
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.24 Platform : Linux -------------------------------------- test_math : 0.081 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.067 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.267 sec. </pre>
Output for 5.4.23
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.23 Platform : Linux -------------------------------------- test_math : 0.078 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.064 sec. test_ifelse : 0.037 sec. -------------------------------------- Total time: : 0.259 sec. </pre>
Output for 5.4.22
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.22 Platform : Linux -------------------------------------- test_math : 0.091 sec. test_stringmanipulation : 0.077 sec. test_loops : 0.067 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.274 sec. </pre>
Output for 5.4.21
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.21 Platform : Linux -------------------------------------- test_math : 0.099 sec. test_stringmanipulation : 0.082 sec. test_loops : 0.067 sec. test_ifelse : 0.044 sec. -------------------------------------- Total time: : 0.292 sec. </pre>
Output for 5.4.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.20 Platform : Linux -------------------------------------- test_math : 0.076 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.078 sec. test_ifelse : 0.045 sec. -------------------------------------- Total time: : 0.277 sec. </pre>
Output for 5.4.19
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.19 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.077 sec. test_loops : 0.067 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.262 sec. </pre>
Output for 5.4.18
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.18 Platform : Linux -------------------------------------- test_math : 0.093 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.067 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.277 sec. </pre>
Output for 5.4.17
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.17 Platform : Linux -------------------------------------- test_math : 0.076 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.067 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.261 sec. </pre>
Output for 5.4.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.16 Platform : Linux -------------------------------------- test_math : 0.074 sec. test_stringmanipulation : 0.077 sec. test_loops : 0.067 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.258 sec. </pre>
Output for 5.4.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.15 Platform : Linux -------------------------------------- test_math : 0.084 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.067 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.269 sec. </pre>
Output for 5.4.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.14 Platform : Linux -------------------------------------- test_math : 0.109 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.067 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.295 sec. </pre>
Output for 5.4.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.13 Platform : Linux -------------------------------------- test_math : 0.082 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.076 sec. test_ifelse : 0.042 sec. -------------------------------------- Total time: : 0.28 sec. </pre>
Output for 5.4.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.12 Platform : Linux -------------------------------------- test_math : 0.085 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.067 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.271 sec. </pre>
Output for 5.4.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.11 Platform : Linux -------------------------------------- test_math : 0.093 sec. test_stringmanipulation : 0.068 sec. test_loops : 0.058 sec. test_ifelse : 0.033 sec. -------------------------------------- Total time: : 0.252 sec. </pre>
Output for 5.4.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.10 Platform : Linux -------------------------------------- test_math : 0.113 sec. test_stringmanipulation : 0.097 sec. test_loops : 0.077 sec. test_ifelse : 0.041 sec. -------------------------------------- Total time: : 0.328 sec. </pre>
Output for 5.4.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.9 Platform : Linux -------------------------------------- test_math : 0.084 sec. test_stringmanipulation : 0.081 sec. test_loops : 0.067 sec. test_ifelse : 0.038 sec. -------------------------------------- Total time: : 0.27 sec. </pre>
Output for 5.4.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.8 Platform : Linux -------------------------------------- test_math : 0.083 sec. test_stringmanipulation : 0.085 sec. test_loops : 0.076 sec. test_ifelse : 0.045 sec. -------------------------------------- Total time: : 0.289 sec. </pre>
Output for 5.4.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.7 Platform : Linux -------------------------------------- test_math : 0.091 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.073 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.282 sec. </pre>
Output for 5.4.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.6 Platform : Linux -------------------------------------- test_math : 0.090 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.072 sec. test_ifelse : 0.041 sec. -------------------------------------- Total time: : 0.292 sec. </pre>
Output for 5.4.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.5 Platform : Linux -------------------------------------- test_math : 0.077 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.069 sec. test_ifelse : 0.041 sec. -------------------------------------- Total time: : 0.266 sec. </pre>
Output for 5.4.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.4 Platform : Linux -------------------------------------- test_math : 0.104 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.072 sec. test_ifelse : 0.041 sec. -------------------------------------- Total time: : 0.297 sec. </pre>
Output for 5.4.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.3 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.086 sec. test_loops : 0.063 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.268 sec. </pre>
Output for 5.4.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.2 Platform : Linux -------------------------------------- test_math : 0.083 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.067 sec. test_ifelse : 0.040 sec. -------------------------------------- Total time: : 0.268 sec. </pre>
Output for 5.4.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.1 Platform : Linux -------------------------------------- test_math : 0.093 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.067 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.278 sec. </pre>
Output for 5.4.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.4.0 Platform : Linux -------------------------------------- test_math : 0.083 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.067 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.268 sec. </pre>
Output for 5.3.29
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.29 Platform : Linux -------------------------------------- test_math : 0.087 sec. test_stringmanipulation : 0.080 sec. test_loops : 0.087 sec. test_ifelse : 0.054 sec. -------------------------------------- Total time: : 0.308 sec. </pre>
Output for 5.3.28
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.28 Platform : Linux -------------------------------------- test_math : 0.091 sec. test_stringmanipulation : 0.083 sec. test_loops : 0.085 sec. test_ifelse : 0.059 sec. -------------------------------------- Total time: : 0.318 sec. </pre>
Output for 5.3.27
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.27 Platform : Linux -------------------------------------- test_math : 0.099 sec. test_stringmanipulation : 0.096 sec. test_loops : 0.092 sec. test_ifelse : 0.059 sec. -------------------------------------- Total time: : 0.346 sec. </pre>
Output for 5.3.26
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.26 Platform : Linux -------------------------------------- test_math : 0.085 sec. test_stringmanipulation : 0.085 sec. test_loops : 0.086 sec. test_ifelse : 0.054 sec. -------------------------------------- Total time: : 0.31 sec. </pre>
Output for 5.3.25
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.25 Platform : Linux -------------------------------------- test_math : 0.083 sec. test_stringmanipulation : 0.083 sec. test_loops : 0.085 sec. test_ifelse : 0.054 sec. -------------------------------------- Total time: : 0.305 sec. </pre>
Output for 5.3.24
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.24 Platform : Linux -------------------------------------- test_math : 0.080 sec. test_stringmanipulation : 0.083 sec. test_loops : 0.085 sec. test_ifelse : 0.054 sec. -------------------------------------- Total time: : 0.302 sec. </pre>
Output for 5.3.23
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.23 Platform : Linux -------------------------------------- test_math : 0.118 sec. test_stringmanipulation : 0.073 sec. test_loops : 0.070 sec. test_ifelse : 0.044 sec. -------------------------------------- Total time: : 0.305 sec. </pre>
Output for 5.3.22
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.22 Platform : Linux -------------------------------------- test_math : 0.098 sec. test_stringmanipulation : 0.091 sec. test_loops : 0.091 sec. test_ifelse : 0.065 sec. -------------------------------------- Total time: : 0.345 sec. </pre>
Output for 5.3.21
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.21 Platform : Linux -------------------------------------- test_math : 0.065 sec. test_stringmanipulation : 0.067 sec. test_loops : 0.069 sec. test_ifelse : 0.061 sec. -------------------------------------- Total time: : 0.262 sec. </pre>
Output for 5.3.20
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.20 Platform : Linux -------------------------------------- test_math : 0.090 sec. test_stringmanipulation : 0.070 sec. test_loops : 0.070 sec. test_ifelse : 0.063 sec. -------------------------------------- Total time: : 0.293 sec. </pre>
Output for 5.3.19
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.19 Platform : Linux -------------------------------------- test_math : 0.095 sec. test_stringmanipulation : 0.081 sec. test_loops : 0.087 sec. test_ifelse : 0.071 sec. -------------------------------------- Total time: : 0.334 sec. </pre>
Output for 5.3.18
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.18 Platform : Linux -------------------------------------- test_math : 0.094 sec. test_stringmanipulation : 0.084 sec. test_loops : 0.085 sec. test_ifelse : 0.075 sec. -------------------------------------- Total time: : 0.338 sec. </pre>
Output for 5.3.17
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.17 Platform : Linux -------------------------------------- test_math : 0.126 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.085 sec. test_ifelse : 0.071 sec. -------------------------------------- Total time: : 0.361 sec. </pre>
Output for 5.3.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.16 Platform : Linux -------------------------------------- test_math : 0.067 sec. test_stringmanipulation : 0.068 sec. test_loops : 0.069 sec. test_ifelse : 0.057 sec. -------------------------------------- Total time: : 0.261 sec. </pre>
Output for 5.3.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.15 Platform : Linux -------------------------------------- test_math : 0.082 sec. test_stringmanipulation : 0.084 sec. test_loops : 0.090 sec. test_ifelse : 0.070 sec. -------------------------------------- Total time: : 0.326 sec. </pre>
Output for 5.3.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.14 Platform : Linux -------------------------------------- test_math : 0.093 sec. test_stringmanipulation : 0.082 sec. test_loops : 0.084 sec. test_ifelse : 0.072 sec. -------------------------------------- Total time: : 0.331 sec. </pre>
Output for 5.3.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.13 Platform : Linux -------------------------------------- test_math : 0.087 sec. test_stringmanipulation : 0.084 sec. test_loops : 0.086 sec. test_ifelse : 0.074 sec. -------------------------------------- Total time: : 0.331 sec. </pre>
Output for 5.3.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.12 Platform : Linux -------------------------------------- test_math : 0.108 sec. test_stringmanipulation : 0.086 sec. test_loops : 0.084 sec. test_ifelse : 0.072 sec. -------------------------------------- Total time: : 0.35 sec. </pre>
Output for 5.3.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.11 Platform : Linux -------------------------------------- test_math : 0.086 sec. test_stringmanipulation : 0.082 sec. test_loops : 0.085 sec. test_ifelse : 0.072 sec. -------------------------------------- Total time: : 0.325 sec. </pre>
Output for 5.3.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.10 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.104 sec. test_loops : 0.086 sec. test_ifelse : 0.068 sec. -------------------------------------- Total time: : 0.337 sec. </pre>
Output for 5.3.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.9 Platform : Linux -------------------------------------- test_math : 0.082 sec. test_stringmanipulation : 0.082 sec. test_loops : 0.095 sec. test_ifelse : 0.076 sec. -------------------------------------- Total time: : 0.335 sec. </pre>
Output for 5.3.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.8 Platform : Linux -------------------------------------- test_math : 0.095 sec. test_stringmanipulation : 0.081 sec. test_loops : 0.090 sec. test_ifelse : 0.065 sec. -------------------------------------- Total time: : 0.331 sec. </pre>
Output for 5.3.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.7 Platform : Linux -------------------------------------- test_math : 0.099 sec. test_stringmanipulation : 0.098 sec. test_loops : 0.088 sec. test_ifelse : 0.070 sec. -------------------------------------- Total time: : 0.355 sec. </pre>
Output for 5.3.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.6 Platform : Linux -------------------------------------- test_math : 0.120 sec. test_stringmanipulation : 0.102 sec. test_loops : 0.096 sec. test_ifelse : 0.078 sec. -------------------------------------- Total time: : 0.396 sec. </pre>
Output for 5.3.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.5 Platform : Linux -------------------------------------- test_math : 0.110 sec. test_stringmanipulation : 0.085 sec. test_loops : 0.090 sec. test_ifelse : 0.071 sec. -------------------------------------- Total time: : 0.356 sec. </pre>
Output for 5.3.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.4 Platform : Linux -------------------------------------- test_math : 0.098 sec. test_stringmanipulation : 0.103 sec. test_loops : 0.088 sec. test_ifelse : 0.069 sec. -------------------------------------- Total time: : 0.358 sec. </pre>
Output for 5.3.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.3 Platform : Linux -------------------------------------- test_math : 0.082 sec. test_stringmanipulation : 0.085 sec. test_loops : 0.087 sec. test_ifelse : 0.069 sec. -------------------------------------- Total time: : 0.323 sec. </pre>
Output for 5.3.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.2 Platform : Linux -------------------------------------- test_math : 0.088 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.083 sec. test_ifelse : 0.062 sec. -------------------------------------- Total time: : 0.322 sec. </pre>
Output for 5.3.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.1 Platform : Linux -------------------------------------- test_math : 0.071 sec. test_stringmanipulation : 0.084 sec. test_loops : 0.079 sec. test_ifelse : 0.058 sec. -------------------------------------- Total time: : 0.292 sec. </pre>
Output for 5.3.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.3.0 Platform : Linux -------------------------------------- test_math : 0.069 sec. test_stringmanipulation : 0.068 sec. test_loops : 0.073 sec. test_ifelse : 0.059 sec. -------------------------------------- Total time: : 0.269 sec. </pre>
Output for 5.2.17
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.17 Platform : Linux -------------------------------------- test_math : 0.099 sec. test_stringmanipulation : 0.099 sec. test_loops : 0.139 sec. test_ifelse : 0.132 sec. -------------------------------------- Total time: : 0.469 sec. </pre>
Output for 5.2.16
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.16 Platform : Linux -------------------------------------- test_math : 0.083 sec. test_stringmanipulation : 0.089 sec. test_loops : 0.122 sec. test_ifelse : 0.118 sec. -------------------------------------- Total time: : 0.412 sec. </pre>
Output for 5.2.15
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.15 Platform : Linux -------------------------------------- test_math : 0.096 sec. test_stringmanipulation : 0.095 sec. test_loops : 0.127 sec. test_ifelse : 0.106 sec. -------------------------------------- Total time: : 0.424 sec. </pre>
Output for 5.2.14
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.14 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.079 sec. test_loops : 0.100 sec. test_ifelse : 0.110 sec. -------------------------------------- Total time: : 0.368 sec. </pre>
Output for 5.2.13
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.13 Platform : Linux -------------------------------------- test_math : 0.068 sec. test_stringmanipulation : 0.070 sec. test_loops : 0.104 sec. test_ifelse : 0.105 sec. -------------------------------------- Total time: : 0.347 sec. </pre>
Output for 5.2.12
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.12 Platform : Linux -------------------------------------- test_math : 0.068 sec. test_stringmanipulation : 0.069 sec. test_loops : 0.100 sec. test_ifelse : 0.102 sec. -------------------------------------- Total time: : 0.339 sec. </pre>
Output for 5.2.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.11 Platform : Linux -------------------------------------- test_math : 0.067 sec. test_stringmanipulation : 0.069 sec. test_loops : 0.100 sec. test_ifelse : 0.101 sec. -------------------------------------- Total time: : 0.337 sec. </pre>
Output for 5.2.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.10 Platform : Linux -------------------------------------- test_math : 0.068 sec. test_stringmanipulation : 0.069 sec. test_loops : 0.101 sec. test_ifelse : 0.099 sec. -------------------------------------- Total time: : 0.337 sec. </pre>
Output for 5.2.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.9 Platform : Linux -------------------------------------- test_math : 0.071 sec. test_stringmanipulation : 0.069 sec. test_loops : 0.103 sec. test_ifelse : 0.099 sec. -------------------------------------- Total time: : 0.342 sec. </pre>
Output for 5.2.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.8 Platform : Linux -------------------------------------- test_math : 0.107 sec. test_stringmanipulation : 0.083 sec. test_loops : 0.103 sec. test_ifelse : 0.103 sec. -------------------------------------- Total time: : 0.396 sec. </pre>
Output for 5.2.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.7 Platform : Linux -------------------------------------- test_math : 0.086 sec. test_stringmanipulation : 0.085 sec. test_loops : 0.121 sec. test_ifelse : 0.123 sec. -------------------------------------- Total time: : 0.415 sec. </pre>
Output for 5.2.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.6 Platform : Linux -------------------------------------- test_math : 0.079 sec. test_stringmanipulation : 0.074 sec. test_loops : 0.108 sec. test_ifelse : 0.107 sec. -------------------------------------- Total time: : 0.368 sec. </pre>
Output for 5.2.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.5 Platform : Linux -------------------------------------- test_math : 0.081 sec. test_stringmanipulation : 0.083 sec. test_loops : 0.123 sec. test_ifelse : 0.115 sec. -------------------------------------- Total time: : 0.402 sec. </pre>
Output for 5.2.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.4 Platform : Linux -------------------------------------- test_math : 0.081 sec. test_stringmanipulation : 0.078 sec. test_loops : 0.110 sec. test_ifelse : 0.113 sec. -------------------------------------- Total time: : 0.382 sec. </pre>
Output for 5.2.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.3 Platform : Linux -------------------------------------- test_math : 0.104 sec. test_stringmanipulation : 0.085 sec. test_loops : 0.121 sec. test_ifelse : 0.126 sec. -------------------------------------- Total time: : 0.436 sec. </pre>
Output for 5.2.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.2 Platform : Linux -------------------------------------- test_math : 0.096 sec. test_stringmanipulation : 0.131 sec. test_loops : 0.117 sec. test_ifelse : 0.114 sec. -------------------------------------- Total time: : 0.458 sec. </pre>
Output for 5.2.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.1 Platform : Linux -------------------------------------- test_math : 0.108 sec. test_stringmanipulation : 0.117 sec. test_loops : 0.114 sec. test_ifelse : 0.113 sec. -------------------------------------- Total time: : 0.452 sec. </pre>
Output for 5.2.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.2.0 Platform : Linux -------------------------------------- test_math : 0.089 sec. test_stringmanipulation : 0.117 sec. test_loops : 0.126 sec. test_ifelse : 0.120 sec. -------------------------------------- Total time: : 0.452 sec. </pre>
Output for 5.1.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.1.6 Platform : Linux -------------------------------------- test_math : 0.085 sec. test_stringmanipulation : 0.109 sec. test_loops : 0.122 sec. test_ifelse : 0.122 sec. -------------------------------------- Total time: : 0.438 sec. </pre>
Output for 5.1.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.1.5 Platform : Linux -------------------------------------- test_math : 0.137 sec. test_stringmanipulation : 0.111 sec. test_loops : 0.121 sec. test_ifelse : 0.126 sec. -------------------------------------- Total time: : 0.495 sec. </pre>
Output for 5.1.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.1.4 Platform : Linux -------------------------------------- test_math : 0.089 sec. test_stringmanipulation : 0.126 sec. test_loops : 0.139 sec. test_ifelse : 0.138 sec. -------------------------------------- Total time: : 0.492 sec. </pre>
Output for 5.1.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.1.3 Platform : Linux -------------------------------------- test_math : 0.109 sec. test_stringmanipulation : 0.134 sec. test_loops : 0.121 sec. test_ifelse : 0.124 sec. -------------------------------------- Total time: : 0.488 sec. </pre>
Output for 5.1.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.1.2 Platform : Linux -------------------------------------- test_math : 0.107 sec. test_stringmanipulation : 0.111 sec. test_loops : 0.121 sec. test_ifelse : 0.131 sec. -------------------------------------- Total time: : 0.47 sec. </pre>
Output for 5.1.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.1.1 Platform : Linux -------------------------------------- test_math : 0.063 sec. test_stringmanipulation : 0.092 sec. test_loops : 0.103 sec. test_ifelse : 0.108 sec. -------------------------------------- Total time: : 0.366 sec. </pre>
Output for 5.1.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.1.0 Platform : Linux -------------------------------------- test_math : 0.100 sec. test_stringmanipulation : 0.110 sec. test_loops : 0.128 sec. test_ifelse : 0.123 sec. -------------------------------------- Total time: : 0.461 sec. </pre>
Output for 5.0.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.0.5 Platform : Linux -------------------------------------- test_math : 0.138 sec. test_stringmanipulation : 0.146 sec. test_loops : 0.336 sec. test_ifelse : 0.250 sec. -------------------------------------- Total time: : 0.87 sec. </pre>
Output for 5.0.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.0.4 Platform : Linux -------------------------------------- test_math : 0.134 sec. test_stringmanipulation : 0.148 sec. test_loops : 0.354 sec. test_ifelse : 0.246 sec. -------------------------------------- Total time: : 0.882 sec. </pre>
Output for 5.0.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.0.3 Platform : Linux -------------------------------------- test_math : 0.125 sec. test_stringmanipulation : 0.145 sec. test_loops : 0.313 sec. test_ifelse : 0.260 sec. -------------------------------------- Total time: : 0.843 sec. </pre>
Output for 5.0.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.0.2 Platform : Linux -------------------------------------- test_math : 0.137 sec. test_stringmanipulation : 0.152 sec. test_loops : 0.314 sec. test_ifelse : 0.223 sec. -------------------------------------- Total time: : 0.826 sec. </pre>
Output for 5.0.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.0.1 Platform : Linux -------------------------------------- test_math : 0.139 sec. test_stringmanipulation : 0.164 sec. test_loops : 0.301 sec. test_ifelse : 0.265 sec. -------------------------------------- Total time: : 0.869 sec. </pre>
Output for 5.0.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 5.0.0 Platform : Linux -------------------------------------- test_math : 0.108 sec. test_stringmanipulation : 0.132 sec. test_loops : 0.296 sec. test_ifelse : 0.274 sec. -------------------------------------- Total time: : 0.81 sec. </pre>
Output for 4.4.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.4.9 Platform : Linux -------------------------------------- test_math : 0.128 sec. test_stringmanipulation : 0.132 sec. test_loops : 0.309 sec. test_ifelse : 0.265 sec. -------------------------------------- Total time: : 0.834 sec. </pre>
Output for 4.4.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.4.8 Platform : Linux -------------------------------------- test_math : 0.101 sec. test_stringmanipulation : 0.167 sec. test_loops : 0.310 sec. test_ifelse : 0.234 sec. -------------------------------------- Total time: : 0.812 sec. </pre>
Output for 4.4.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.4.7 Platform : Linux -------------------------------------- test_math : 0.111 sec. test_stringmanipulation : 0.133 sec. test_loops : 0.311 sec. test_ifelse : 0.221 sec. -------------------------------------- Total time: : 0.776 sec. </pre>
Output for 4.4.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.4.6 Platform : Linux -------------------------------------- test_math : 0.128 sec. test_stringmanipulation : 0.131 sec. test_loops : 0.311 sec. test_ifelse : 0.247 sec. -------------------------------------- Total time: : 0.817 sec. </pre>
Output for 4.4.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.4.5 Platform : Linux -------------------------------------- test_math : 0.129 sec. test_stringmanipulation : 0.131 sec. test_loops : 0.310 sec. test_ifelse : 0.248 sec. -------------------------------------- Total time: : 0.818 sec. </pre>
Output for 4.4.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.4.4 Platform : Linux -------------------------------------- test_math : 0.145 sec. test_stringmanipulation : 0.142 sec. test_loops : 0.317 sec. test_ifelse : 0.268 sec. -------------------------------------- Total time: : 0.872 sec. </pre>
Output for 4.4.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.4.3 Platform : Linux -------------------------------------- test_math : 0.155 sec. test_stringmanipulation : 0.136 sec. test_loops : 0.313 sec. test_ifelse : 0.256 sec. -------------------------------------- Total time: : 0.86 sec. </pre>
Output for 4.4.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.4.2 Platform : Linux -------------------------------------- test_math : 0.124 sec. test_stringmanipulation : 0.131 sec. test_loops : 0.331 sec. test_ifelse : 0.287 sec. -------------------------------------- Total time: : 0.873 sec. </pre>
Output for 4.4.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.4.1 Platform : Linux -------------------------------------- test_math : 0.150 sec. test_stringmanipulation : 0.133 sec. test_loops : 0.322 sec. test_ifelse : 0.257 sec. -------------------------------------- Total time: : 0.862 sec. </pre>
Output for 4.4.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.4.0 Platform : Linux -------------------------------------- test_math : 0.122 sec. test_stringmanipulation : 0.130 sec. test_loops : 0.280 sec. test_ifelse : 0.211 sec. -------------------------------------- Total time: : 0.743 sec. </pre>
Output for 4.3.11
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.3.11 Platform : Linux -------------------------------------- test_math : 0.097 sec. test_stringmanipulation : 0.110 sec. test_loops : 0.259 sec. test_ifelse : 0.205 sec. -------------------------------------- Total time: : 0.671 sec. </pre>
Output for 4.3.10
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.3.10 Platform : Linux -------------------------------------- test_math : 0.130 sec. test_stringmanipulation : 0.130 sec. test_loops : 0.319 sec. test_ifelse : 0.254 sec. -------------------------------------- Total time: : 0.833 sec. </pre>
Output for 4.3.9
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.3.9 Platform : Linux -------------------------------------- test_math : 0.118 sec. test_stringmanipulation : 0.142 sec. test_loops : 0.306 sec. test_ifelse : 0.206 sec. -------------------------------------- Total time: : 0.772 sec. </pre>
Output for 4.3.8
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.3.8 Platform : Linux -------------------------------------- test_math : 0.100 sec. test_stringmanipulation : 0.152 sec. test_loops : 0.270 sec. test_ifelse : 0.219 sec. -------------------------------------- Total time: : 0.741 sec. </pre>
Output for 4.3.7
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.3.7 Platform : Linux -------------------------------------- test_math : 0.102 sec. test_stringmanipulation : 0.119 sec. test_loops : 0.257 sec. test_ifelse : 0.224 sec. -------------------------------------- Total time: : 0.702 sec. </pre>
Output for 4.3.6
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.3.6 Platform : Linux -------------------------------------- test_math : 0.123 sec. test_stringmanipulation : 0.154 sec. test_loops : 0.327 sec. test_ifelse : 0.276 sec. -------------------------------------- Total time: : 0.88 sec. </pre>
Output for 4.3.5
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.3.5 Platform : Linux -------------------------------------- test_math : 0.120 sec. test_stringmanipulation : 0.140 sec. test_loops : 0.273 sec. test_ifelse : 0.220 sec. -------------------------------------- Total time: : 0.753 sec. </pre>
Output for 4.3.4
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.3.4 Platform : Linux -------------------------------------- test_math : 0.126 sec. test_stringmanipulation : 0.120 sec. test_loops : 0.245 sec. test_ifelse : 0.201 sec. -------------------------------------- Total time: : 0.692 sec. </pre>
Output for 4.3.3
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.3.3 Platform : Linux -------------------------------------- test_math : 0.151 sec. test_stringmanipulation : 0.154 sec. test_loops : 0.302 sec. test_ifelse : 0.260 sec. -------------------------------------- Total time: : 0.867 sec. </pre>
Output for 4.3.2
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.3.2 Platform : Linux -------------------------------------- test_math : 0.126 sec. test_stringmanipulation : 0.156 sec. test_loops : 0.306 sec. test_ifelse : 0.246 sec. -------------------------------------- Total time: : 0.834 sec. </pre>
Output for 4.3.1
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.3.1 Platform : Linux -------------------------------------- test_math : 0.099 sec. test_stringmanipulation : 0.125 sec. test_loops : 0.262 sec. test_ifelse : 0.208 sec. -------------------------------------- Total time: : 0.694 sec. </pre>
Output for 4.3.0
<pre> -------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2014-01-26 22:26:54 Server : Linux php_shell 4.7.4-1-ARCH #1 SMP PREEMPT Thu Sep 15 15:24:29 CEST 2016 x86_64 PHP version : 4.3.0 Platform : Linux -------------------------------------- test_math : 0.175 sec. test_stringmanipulation : 0.186 sec. test_loops : 0.308 sec. test_ifelse : 0.242 sec. -------------------------------------- Total time: : 0.911 sec. </pre>

preferences:
222.9 ms | 402 KiB | 264 Q