3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* ########################################################################## # PHP Benchmark Performance Script # # © 2010 Code24 BV # # # # Author : Alessandro Torrisi # # Company : Code24 BV, The Netherlands # # Date : July 31, 2010 # # version : 1.0 # # License : Creative Commons CC-BY license # # Website : http://www.php-benchmark-script.com # # # ########################################################################## */ function test_Math($count = 14000) { $time_start = microtime(true); $mathFunctions = array("abs", "acos", "asin", "atan", "bindec", "floor", "exp", "sin", "tan", "pi", "is_finite", "is_nan", "sqrt"); foreach ($mathFunctions as $key => $function) { if (!function_exists($function)) unset($mathFunctions[$key]); } for ($i=0; $i < $count; $i++) { foreach ($mathFunctions as $function) { $r = call_user_func_array($function, array($i)); } } return number_format(microtime(true) - $time_start, 3); } function test_StringManipulation($count = 13000) { $time_start = microtime(true); $stringFunctions = array("addslashes", "chunk_split", "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"; foreach ($stringFunctions as $function) { $time_start_sub = microtime(true); for ($i=0; $i < $count; $i++) { $r = call_user_func_array($function, array($string)); } echo str_pad($function, 15) . ": " . number_format(microtime(true) - $time_start_sub, 3) . "\n"; } return number_format(microtime(true) - $time_start, 3); } function test_Loops($count = 190000) { $time_start = microtime(true); for($i = 0; $i < $count; ++$i); $i = 0; while($i < $count) ++$i; return number_format(microtime(true) - $time_start, 3); } function test_IfElse($count = 90000) { $time_start = microtime(true); for ($i=0; $i < $count; $i++) { if ($i == -1) { } elseif ($i == -2) { } else if ($i == -3) { } } return number_format(microtime(true) - $time_start, 3); } $total = 0; $functions = get_defined_functions(); $line = str_pad("-",38,"-"); echo "<pre>$line\n|".str_pad("PHP BENCHMARK SCRIPT",36," ",STR_PAD_BOTH)."|\n$line\nStart : ".date("Y-m-d H:i:s")."\nServer : \nPHP version : ".PHP_VERSION."\nPlatform : ".PHP_OS. "\n$line\n"; foreach ($functions['user'] as $user) { if (preg_match('/^test_/', $user)) { $total += $result = $user(); echo str_pad($user, 25) . " : " . $result ." sec.\n"; } } echo str_pad("-", 38, "-") . "\n" . str_pad("Total time:", 25) . " : " . $total ." sec.</pre>"; ?>
Output for 7.2.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.2.11 Platform : Linux -------------------------------------- test_math : 0.037 sec. addslashes : 0.004 chunk_split : 0.003 strip_tags : 0.003 md5 : 0.004 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.031 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.073 sec.</pre>
Output for 7.2.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.2.10 Platform : Linux -------------------------------------- test_math : 0.029 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.005 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.002 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.026 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.059 sec.</pre>
Output for 7.2.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.2.9 Platform : Linux -------------------------------------- test_math : 0.029 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.005 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.028 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.061 sec.</pre>
Output for 7.2.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.2.8 Platform : Linux -------------------------------------- test_math : 0.029 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.004 md5 : 0.004 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.028 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.061 sec.</pre>
Output for 7.2.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.2.7 Platform : Linux -------------------------------------- test_math : 0.027 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.004 md5 : 0.004 sha1 : 0.005 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.028 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.059 sec.</pre>
Output for 7.2.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.2.6 Platform : Linux -------------------------------------- test_math : 0.037 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.006 strtoupper : 0.003 strtolower : 0.002 strrev : 0.003 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.030 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.071 sec.</pre>
Output for 7.2.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.2.5 Platform : Linux -------------------------------------- test_math : 0.032 sec. addslashes : 0.003 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.005 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.028 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.064 sec.</pre>
Output for 7.2.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:37 Server : PHP version : 7.2.4 Platform : Linux -------------------------------------- test_math : 0.033 sec. addslashes : 0.004 chunk_split : 0.003 strip_tags : 0.004 md5 : 0.004 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.033 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.071 sec.</pre>
Output for 7.2.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.2.3 Platform : Linux -------------------------------------- test_math : 0.029 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.006 strtoupper : 0.003 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.031 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.065 sec.</pre>
Output for 7.2.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.2.2 Platform : Linux -------------------------------------- test_math : 0.028 sec. addslashes : 0.003 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.002 strrev : 0.003 strlen : 0.002 soundex : 0.003 ord : 0.002 test_stringmanipulation : 0.032 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.065 sec.</pre>
Output for 7.2.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.2.1 Platform : Linux -------------------------------------- test_math : 0.029 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.005 strtoupper : 0.003 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.028 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.062 sec.</pre>
Output for 7.2.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.2.0 Platform : Linux -------------------------------------- test_math : 0.031 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.005 sha1 : 0.010 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.033 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.068 sec.</pre>
Output for 7.1.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.23 Platform : Linux -------------------------------------- test_math : 0.040 sec. addslashes : 0.003 chunk_split : 0.006 strip_tags : 0.006 md5 : 0.010 sha1 : 0.016 strtoupper : 0.005 strtolower : 0.004 strrev : 0.005 strlen : 0.002 soundex : 0.004 ord : 0.002 test_stringmanipulation : 0.063 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.11 sec.</pre>
Output for 7.1.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.22 Platform : Linux -------------------------------------- test_math : 0.030 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.004 md5 : 0.004 sha1 : 0.006 strtoupper : 0.003 strtolower : 0.002 strrev : 0.003 strlen : 0.001 soundex : 0.004 ord : 0.001 test_stringmanipulation : 0.033 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.067 sec.</pre>
Output for 7.1.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.21 Platform : Linux -------------------------------------- test_math : 0.049 sec. addslashes : 0.005 chunk_split : 0.004 strip_tags : 0.007 md5 : 0.008 sha1 : 0.010 strtoupper : 0.004 strtolower : 0.004 strrev : 0.004 strlen : 0.003 soundex : 0.005 ord : 0.003 test_stringmanipulation : 0.058 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.111 sec.</pre>
Output for 7.1.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.20 Platform : Linux -------------------------------------- test_math : 0.034 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.005 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.002 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.030 sec. test_loops : 0.005 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.073 sec.</pre>
Output for 7.1.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.19 Platform : Linux -------------------------------------- test_math : 0.032 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.004 md5 : 0.005 sha1 : 0.006 strtoupper : 0.003 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.003 ord : 0.002 test_stringmanipulation : 0.033 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.07 sec.</pre>
Output for 7.1.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.18 Platform : Linux -------------------------------------- test_math : 0.033 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.006 strtoupper : 0.004 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.003 ord : 0.002 test_stringmanipulation : 0.033 sec. test_loops : 0.004 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.072 sec.</pre>
Output for 7.1.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.17 Platform : Linux -------------------------------------- test_math : 0.035 sec. addslashes : 0.003 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.032 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.071 sec.</pre>
Output for 7.1.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.16 Platform : Linux -------------------------------------- test_math : 0.031 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.005 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.003 ord : 0.002 test_stringmanipulation : 0.030 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.065 sec.</pre>
Output for 7.1.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.15 Platform : Linux -------------------------------------- test_math : 0.033 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.006 strtoupper : 0.003 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.030 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.067 sec.</pre>
Output for 7.1.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.14 Platform : Linux -------------------------------------- test_math : 0.034 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.005 sha1 : 0.008 strtoupper : 0.004 strtolower : 0.003 strrev : 0.004 strlen : 0.002 soundex : 0.004 ord : 0.002 test_stringmanipulation : 0.039 sec. test_loops : 0.004 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.079 sec.</pre>
Output for 7.1.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.13 Platform : Linux -------------------------------------- test_math : 0.034 sec. addslashes : 0.003 chunk_split : 0.003 strip_tags : 0.006 md5 : 0.006 sha1 : 0.009 strtoupper : 0.003 strtolower : 0.002 strrev : 0.003 strlen : 0.002 soundex : 0.003 ord : 0.002 test_stringmanipulation : 0.040 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.079 sec.</pre>
Output for 7.1.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.12 Platform : Linux -------------------------------------- test_math : 0.031 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.006 md5 : 0.007 sha1 : 0.009 strtoupper : 0.004 strtolower : 0.004 strrev : 0.004 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.044 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.079 sec.</pre>
Output for 7.1.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.11 Platform : Linux -------------------------------------- test_math : 0.032 sec. addslashes : 0.003 chunk_split : 0.002 strip_tags : 0.004 md5 : 0.007 sha1 : 0.011 strtoupper : 0.002 strtolower : 0.002 strrev : 0.006 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.042 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.079 sec.</pre>
Output for 7.1.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.10 Platform : Linux -------------------------------------- test_math : 0.032 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.007 md5 : 0.007 sha1 : 0.011 strtoupper : 0.004 strtolower : 0.003 strrev : 0.005 strlen : 0.003 soundex : 0.005 ord : 0.002 test_stringmanipulation : 0.052 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.091 sec.</pre>
Output for 7.1.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.9 Platform : Linux -------------------------------------- test_math : 0.045 sec. addslashes : 0.003 chunk_split : 0.004 strip_tags : 0.007 md5 : 0.007 sha1 : 0.010 strtoupper : 0.004 strtolower : 0.004 strrev : 0.004 strlen : 0.003 soundex : 0.005 ord : 0.003 test_stringmanipulation : 0.057 sec. test_loops : 0.005 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.111 sec.</pre>
Output for 7.1.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.8 Platform : Linux -------------------------------------- test_math : 0.036 sec. addslashes : 0.004 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.005 sha1 : 0.007 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.004 ord : 0.001 test_stringmanipulation : 0.034 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.077 sec.</pre>
Output for 7.1.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.7 Platform : Linux -------------------------------------- test_math : 0.040 sec. addslashes : 0.004 chunk_split : 0.004 strip_tags : 0.007 md5 : 0.006 sha1 : 0.005 strtoupper : 0.002 strtolower : 0.002 strrev : 0.003 strlen : 0.001 soundex : 0.003 ord : 0.003 test_stringmanipulation : 0.040 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.087 sec.</pre>
Output for 7.1.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.6 Platform : Linux -------------------------------------- test_math : 0.031 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.005 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.002 soundex : 0.003 ord : 0.002 test_stringmanipulation : 0.030 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.065 sec.</pre>
Output for 7.1.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.5 Platform : Linux -------------------------------------- test_math : 0.041 sec. addslashes : 0.004 chunk_split : 0.003 strip_tags : 0.006 md5 : 0.006 sha1 : 0.008 strtoupper : 0.003 strtolower : 0.003 strrev : 0.003 strlen : 0.002 soundex : 0.004 ord : 0.002 test_stringmanipulation : 0.044 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.09 sec.</pre>
Output for 7.1.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.4 Platform : Linux -------------------------------------- test_math : 0.050 sec. addslashes : 0.004 chunk_split : 0.002 strip_tags : 0.004 md5 : 0.005 sha1 : 0.007 strtoupper : 0.002 strtolower : 0.002 strrev : 0.008 strlen : 0.001 soundex : 0.003 ord : 0.001 test_stringmanipulation : 0.040 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.094 sec.</pre>
Output for 7.1.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.3 Platform : Linux -------------------------------------- test_math : 0.038 sec. addslashes : 0.003 chunk_split : 0.003 strip_tags : 0.004 md5 : 0.005 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.002 strrev : 0.003 strlen : 0.001 soundex : 0.003 ord : 0.001 test_stringmanipulation : 0.034 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.077 sec.</pre>
Output for 7.1.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.2 Platform : Linux -------------------------------------- test_math : 0.051 sec. addslashes : 0.005 chunk_split : 0.004 strip_tags : 0.007 md5 : 0.007 sha1 : 0.010 strtoupper : 0.004 strtolower : 0.007 strrev : 0.009 strlen : 0.003 soundex : 0.005 ord : 0.003 test_stringmanipulation : 0.064 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.122 sec.</pre>
Output for 7.1.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.1 Platform : Linux -------------------------------------- test_math : 0.053 sec. addslashes : 0.004 chunk_split : 0.004 strip_tags : 0.007 md5 : 0.008 sha1 : 0.011 strtoupper : 0.004 strtolower : 0.004 strrev : 0.005 strlen : 0.003 soundex : 0.005 ord : 0.002 test_stringmanipulation : 0.056 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.116 sec.</pre>
Output for 7.1.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.1.0 Platform : Linux -------------------------------------- test_math : 0.033 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.005 sha1 : 0.005 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.030 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.067 sec.</pre>
Output for 7.0.31
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.31 Platform : Linux -------------------------------------- test_math : 0.030 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.004 md5 : 0.004 sha1 : 0.005 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.030 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.064 sec.</pre>
Output for 7.0.30
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.30 Platform : Linux -------------------------------------- test_math : 0.043 sec. addslashes : 0.004 chunk_split : 0.004 strip_tags : 0.005 md5 : 0.006 sha1 : 0.008 strtoupper : 0.003 strtolower : 0.004 strrev : 0.003 strlen : 0.002 soundex : 0.005 ord : 0.002 test_stringmanipulation : 0.048 sec. test_loops : 0.003 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.097 sec.</pre>
Output for 7.0.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.29 Platform : Linux -------------------------------------- test_math : 0.033 sec. addslashes : 0.004 chunk_split : 0.004 strip_tags : 0.006 md5 : 0.006 sha1 : 0.009 strtoupper : 0.004 strtolower : 0.004 strrev : 0.004 strlen : 0.002 soundex : 0.004 ord : 0.004 test_stringmanipulation : 0.051 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.091 sec.</pre>
Output for 7.0.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.28 Platform : Linux -------------------------------------- test_math : 0.037 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.006 strtoupper : 0.003 strtolower : 0.003 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.032 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.073 sec.</pre>
Output for 7.0.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.27 Platform : Linux -------------------------------------- test_math : 0.038 sec. addslashes : 0.003 chunk_split : 0.003 strip_tags : 0.006 md5 : 0.007 sha1 : 0.007 strtoupper : 0.004 strtolower : 0.004 strrev : 0.002 strlen : 0.001 soundex : 0.003 ord : 0.002 test_stringmanipulation : 0.041 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.084 sec.</pre>
Output for 7.0.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.26 Platform : Linux -------------------------------------- test_math : 0.048 sec. addslashes : 0.004 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.008 strtoupper : 0.002 strtolower : 0.002 strrev : 0.003 strlen : 0.002 soundex : 0.002 ord : 0.002 test_stringmanipulation : 0.036 sec. test_loops : 0.004 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.09 sec.</pre>
Output for 7.0.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.25 Platform : Linux -------------------------------------- test_math : 0.034 sec. addslashes : 0.002 chunk_split : 0.003 strip_tags : 0.003 md5 : 0.005 sha1 : 0.005 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.030 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.068 sec.</pre>
Output for 7.0.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.24 Platform : Linux -------------------------------------- test_math : 0.032 sec. addslashes : 0.004 chunk_split : 0.004 strip_tags : 0.006 md5 : 0.007 sha1 : 0.009 strtoupper : 0.004 strtolower : 0.005 strrev : 0.004 strlen : 0.003 soundex : 0.004 ord : 0.002 test_stringmanipulation : 0.053 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.09 sec.</pre>
Output for 7.0.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.23 Platform : Linux -------------------------------------- test_math : 0.029 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.005 strtoupper : 0.002 strtolower : 0.005 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.006 test_stringmanipulation : 0.044 sec. test_loops : 0.004 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.079 sec.</pre>
Output for 7.0.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.22 Platform : Linux -------------------------------------- test_math : 0.030 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.004 md5 : 0.005 sha1 : 0.008 strtoupper : 0.003 strtolower : 0.004 strrev : 0.004 strlen : 0.003 soundex : 0.004 ord : 0.002 test_stringmanipulation : 0.042 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.079 sec.</pre>
Output for 7.0.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.21 Platform : Linux -------------------------------------- test_math : 0.049 sec. addslashes : 0.004 chunk_split : 0.004 strip_tags : 0.006 md5 : 0.007 sha1 : 0.010 strtoupper : 0.004 strtolower : 0.004 strrev : 0.004 strlen : 0.003 soundex : 0.004 ord : 0.003 test_stringmanipulation : 0.053 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.109 sec.</pre>
Output for 7.0.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.20 Platform : Linux -------------------------------------- test_math : 0.034 sec. addslashes : 0.002 chunk_split : 0.004 strip_tags : 0.004 md5 : 0.004 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.031 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.07 sec.</pre>
Output for 7.0.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.19 Platform : Linux -------------------------------------- test_math : 0.030 sec. addslashes : 0.003 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.005 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.002 soundex : 0.003 ord : 0.002 test_stringmanipulation : 0.030 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.065 sec.</pre>
Output for 7.0.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.18 Platform : Linux -------------------------------------- test_math : 0.050 sec. addslashes : 0.004 chunk_split : 0.004 strip_tags : 0.006 md5 : 0.007 sha1 : 0.010 strtoupper : 0.004 strtolower : 0.004 strrev : 0.004 strlen : 0.003 soundex : 0.004 ord : 0.003 test_stringmanipulation : 0.054 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.111 sec.</pre>
Output for 7.0.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.17 Platform : Linux -------------------------------------- test_math : 0.035 sec. addslashes : 0.004 chunk_split : 0.004 strip_tags : 0.007 md5 : 0.007 sha1 : 0.010 strtoupper : 0.004 strtolower : 0.004 strrev : 0.004 strlen : 0.003 soundex : 0.004 ord : 0.002 test_stringmanipulation : 0.054 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.096 sec.</pre>
Output for 7.0.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.16 Platform : Linux -------------------------------------- test_math : 0.027 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.005 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.006 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.034 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.065 sec.</pre>
Output for 7.0.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.15 Platform : Linux -------------------------------------- test_math : 0.051 sec. addslashes : 0.004 chunk_split : 0.004 strip_tags : 0.007 md5 : 0.007 sha1 : 0.010 strtoupper : 0.004 strtolower : 0.004 strrev : 0.004 strlen : 0.003 soundex : 0.004 ord : 0.003 test_stringmanipulation : 0.054 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.112 sec.</pre>
Output for 7.0.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.14 Platform : Linux -------------------------------------- test_math : 0.052 sec. addslashes : 0.005 chunk_split : 0.004 strip_tags : 0.006 md5 : 0.006 sha1 : 0.009 strtoupper : 0.004 strtolower : 0.004 strrev : 0.004 strlen : 0.003 soundex : 0.004 ord : 0.003 test_stringmanipulation : 0.053 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.112 sec.</pre>
Output for 7.0.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.13 Platform : Linux -------------------------------------- test_math : 0.049 sec. addslashes : 0.004 chunk_split : 0.003 strip_tags : 0.003 md5 : 0.005 sha1 : 0.008 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.036 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.09 sec.</pre>
Output for 7.0.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.12 Platform : Linux -------------------------------------- test_math : 0.037 sec. addslashes : 0.004 chunk_split : 0.002 strip_tags : 0.004 md5 : 0.006 sha1 : 0.009 strtoupper : 0.003 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.003 ord : 0.001 test_stringmanipulation : 0.038 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.079 sec.</pre>
Output for 7.0.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.11 Platform : Linux -------------------------------------- test_math : 0.033 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.004 md5 : 0.005 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.004 ord : 0.001 test_stringmanipulation : 0.032 sec. test_loops : 0.006 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.073 sec.</pre>
Output for 7.0.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.10 Platform : Linux -------------------------------------- test_math : 0.051 sec. addslashes : 0.004 chunk_split : 0.004 strip_tags : 0.013 md5 : 0.007 sha1 : 0.010 strtoupper : 0.005 strtolower : 0.004 strrev : 0.004 strlen : 0.003 soundex : 0.004 ord : 0.003 test_stringmanipulation : 0.062 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.12 sec.</pre>
Output for 7.0.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.9 Platform : Linux -------------------------------------- test_math : 0.028 sec. addslashes : 0.003 chunk_split : 0.003 strip_tags : 0.004 md5 : 0.005 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.002 strrev : 0.003 strlen : 0.001 soundex : 0.003 ord : 0.001 test_stringmanipulation : 0.034 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.066 sec.</pre>
Output for 7.0.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.8 Platform : Linux -------------------------------------- test_math : 0.045 sec. addslashes : 0.004 chunk_split : 0.004 strip_tags : 0.006 md5 : 0.006 sha1 : 0.009 strtoupper : 0.004 strtolower : 0.004 strrev : 0.004 strlen : 0.003 soundex : 0.003 ord : 0.001 test_stringmanipulation : 0.047 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.096 sec.</pre>
Output for 7.0.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.7 Platform : Linux -------------------------------------- test_math : 0.033 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.004 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.002 strrev : 0.003 strlen : 0.002 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.032 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.069 sec.</pre>
Output for 7.0.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.6 Platform : Linux -------------------------------------- test_math : 0.035 sec. addslashes : 0.003 chunk_split : 0.002 strip_tags : 0.004 md5 : 0.006 sha1 : 0.007 strtoupper : 0.005 strtolower : 0.004 strrev : 0.004 strlen : 0.001 soundex : 0.003 ord : 0.001 test_stringmanipulation : 0.042 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.082 sec.</pre>
Output for 7.0.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.5 Platform : Linux -------------------------------------- test_math : 0.033 sec. addslashes : 0.002 chunk_split : 0.003 strip_tags : 0.003 md5 : 0.005 sha1 : 0.005 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.002 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.031 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.068 sec.</pre>
Output for 7.0.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.4 Platform : Linux -------------------------------------- test_math : 0.031 sec. addslashes : 0.003 chunk_split : 0.003 strip_tags : 0.004 md5 : 0.005 sha1 : 0.007 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.034 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.07 sec.</pre>
Output for 7.0.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.3 Platform : Linux -------------------------------------- test_math : 0.046 sec. addslashes : 0.003 chunk_split : 0.002 strip_tags : 0.004 md5 : 0.004 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.002 strrev : 0.003 strlen : 0.001 soundex : 0.002 ord : 0.002 test_stringmanipulation : 0.033 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.083 sec.</pre>
Output for 7.0.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.2 Platform : Linux -------------------------------------- test_math : 0.054 sec. addslashes : 0.004 chunk_split : 0.004 strip_tags : 0.006 md5 : 0.006 sha1 : 0.010 strtoupper : 0.004 strtolower : 0.004 strrev : 0.004 strlen : 0.003 soundex : 0.005 ord : 0.003 test_stringmanipulation : 0.054 sec. test_loops : 0.004 sec. test_ifelse : 0.003 sec. -------------------------------------- Total time: : 0.115 sec.</pre>
Output for 7.0.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.1 Platform : Linux -------------------------------------- test_math : 0.044 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.005 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.002 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.002 test_stringmanipulation : 0.031 sec. test_loops : 0.003 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.08 sec.</pre>
Output for 7.0.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 7.0.0 Platform : Linux -------------------------------------- test_math : 0.030 sec. addslashes : 0.002 chunk_split : 0.002 strip_tags : 0.003 md5 : 0.005 sha1 : 0.006 strtoupper : 0.002 strtolower : 0.003 strrev : 0.002 strlen : 0.001 soundex : 0.002 ord : 0.001 test_stringmanipulation : 0.031 sec. test_loops : 0.002 sec. test_ifelse : 0.002 sec. -------------------------------------- Total time: : 0.065 sec.</pre>
Output for 5.6.38
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.38 Platform : Linux -------------------------------------- test_math : 0.147 sec. addslashes : 0.010 chunk_split : 0.008 strip_tags : 0.010 md5 : 0.011 sha1 : 0.012 strtoupper : 0.008 strtolower : 0.010 strrev : 0.009 strlen : 0.007 soundex : 0.010 ord : 0.009 test_stringmanipulation : 0.105 sec. test_loops : 0.012 sec. test_ifelse : 0.006 sec. -------------------------------------- Total time: : 0.27 sec.</pre>
Output for 5.6.37
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.37 Platform : Linux -------------------------------------- test_math : 0.108 sec. addslashes : 0.014 chunk_split : 0.012 strip_tags : 0.014 md5 : 0.014 sha1 : 0.018 strtoupper : 0.012 strtolower : 0.012 strrev : 0.011 strlen : 0.010 soundex : 0.011 ord : 0.010 test_stringmanipulation : 0.139 sec. test_loops : 0.010 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.264 sec.</pre>
Output for 5.6.36
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.36 Platform : Linux -------------------------------------- test_math : 0.143 sec. addslashes : 0.014 chunk_split : 0.012 strip_tags : 0.014 md5 : 0.015 sha1 : 0.018 strtoupper : 0.012 strtolower : 0.013 strrev : 0.012 strlen : 0.011 soundex : 0.012 ord : 0.011 test_stringmanipulation : 0.146 sec. test_loops : 0.012 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.308 sec.</pre>
Output for 5.6.35
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.35 Platform : Linux -------------------------------------- test_math : 0.107 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.010 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.009 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.088 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.207 sec.</pre>
Output for 5.6.34
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.34 Platform : Linux -------------------------------------- test_math : 0.111 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.009 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.007 strrev : 0.007 strlen : 0.007 soundex : 0.008 ord : 0.006 test_stringmanipulation : 0.089 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.212 sec.</pre>
Output for 5.6.33
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.33 Platform : Linux -------------------------------------- test_math : 0.114 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.010 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.082 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.208 sec.</pre>
Output for 5.6.32
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.32 Platform : Linux -------------------------------------- test_math : 0.115 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.006 strrev : 0.006 strlen : 0.006 soundex : 0.006 ord : 0.006 test_stringmanipulation : 0.080 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.208 sec.</pre>
Output for 5.6.31
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.31 Platform : Linux -------------------------------------- test_math : 0.114 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.009 md5 : 0.015 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.009 strrev : 0.008 strlen : 0.008 soundex : 0.009 ord : 0.006 test_stringmanipulation : 0.097 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.223 sec.</pre>
Output for 5.6.30
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.30 Platform : Linux -------------------------------------- test_math : 0.143 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.010 md5 : 0.010 sha1 : 0.015 strtoupper : 0.009 strtolower : 0.012 strrev : 0.012 strlen : 0.009 soundex : 0.009 ord : 0.008 test_stringmanipulation : 0.111 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.267 sec.</pre>
Output for 5.6.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.29 Platform : Linux -------------------------------------- test_math : 0.122 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.010 sha1 : 0.012 strtoupper : 0.007 strtolower : 0.009 strrev : 0.007 strlen : 0.007 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.088 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.222 sec.</pre>
Output for 5.6.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.28 Platform : Linux -------------------------------------- test_math : 0.152 sec. addslashes : 0.013 chunk_split : 0.011 strip_tags : 0.013 md5 : 0.014 sha1 : 0.016 strtoupper : 0.011 strtolower : 0.011 strrev : 0.010 strlen : 0.006 soundex : 0.009 ord : 0.011 test_stringmanipulation : 0.124 sec. test_loops : 0.011 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.291 sec.</pre>
Output for 5.6.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.27 Platform : Linux -------------------------------------- test_math : 0.112 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.009 sha1 : 0.012 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.008 test_stringmanipulation : 0.087 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.212 sec.</pre>
Output for 5.6.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.26 Platform : Linux -------------------------------------- test_math : 0.143 sec. addslashes : 0.010 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.013 strtolower : 0.013 strrev : 0.013 strlen : 0.012 soundex : 0.013 ord : 0.012 test_stringmanipulation : 0.120 sec. test_loops : 0.011 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.281 sec.</pre>
Output for 5.6.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.25 Platform : Linux -------------------------------------- test_math : 0.107 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.016 sha1 : 0.020 strtoupper : 0.014 strtolower : 0.013 strrev : 0.013 strlen : 0.012 soundex : 0.013 ord : 0.012 test_stringmanipulation : 0.134 sec. test_loops : 0.011 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.259 sec.</pre>
Output for 5.6.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.24 Platform : Linux -------------------------------------- test_math : 0.105 sec. addslashes : 0.010 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.012 sha1 : 0.016 strtoupper : 0.009 strtolower : 0.010 strrev : 0.007 strlen : 0.008 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.101 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.218 sec.</pre>
Output for 5.6.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.23 Platform : Linux -------------------------------------- test_math : 0.111 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.008 strrev : 0.007 strlen : 0.011 soundex : 0.008 ord : 0.006 test_stringmanipulation : 0.091 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.215 sec.</pre>
Output for 5.6.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.22 Platform : Linux -------------------------------------- test_math : 0.102 sec. addslashes : 0.016 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.009 sha1 : 0.013 strtoupper : 0.008 strtolower : 0.008 strrev : 0.008 strlen : 0.008 soundex : 0.008 ord : 0.007 test_stringmanipulation : 0.102 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.217 sec.</pre>
Output for 5.6.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.21 Platform : Linux -------------------------------------- test_math : 0.116 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.008 strlen : 0.006 soundex : 0.007 ord : 0.008 test_stringmanipulation : 0.084 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.213 sec.</pre>
Output for 5.6.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.20 Platform : Linux -------------------------------------- test_math : 0.113 sec. addslashes : 0.008 chunk_split : 0.010 strip_tags : 0.014 md5 : 0.014 sha1 : 0.010 strtoupper : 0.008 strtolower : 0.008 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.098 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.223 sec.</pre>
Output for 5.6.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.19 Platform : Linux -------------------------------------- test_math : 0.155 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.009 sha1 : 0.010 strtoupper : 0.008 strtolower : 0.006 strrev : 0.006 strlen : 0.006 soundex : 0.006 ord : 0.007 test_stringmanipulation : 0.084 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.25 sec.</pre>
Output for 5.6.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.18 Platform : Linux -------------------------------------- test_math : 0.103 sec. addslashes : 0.010 chunk_split : 0.012 strip_tags : 0.013 md5 : 0.011 sha1 : 0.017 strtoupper : 0.013 strtolower : 0.011 strrev : 0.013 strlen : 0.010 soundex : 0.012 ord : 0.011 test_stringmanipulation : 0.132 sec. test_loops : 0.010 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.252 sec.</pre>
Output for 5.6.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.17 Platform : Linux -------------------------------------- test_math : 0.110 sec. addslashes : 0.019 chunk_split : 0.012 strip_tags : 0.015 md5 : 0.010 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.011 strrev : 0.009 strlen : 0.006 soundex : 0.008 ord : 0.009 test_stringmanipulation : 0.117 sec. test_loops : 0.009 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.241 sec.</pre>
Output for 5.6.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.16 Platform : Linux -------------------------------------- test_math : 0.158 sec. addslashes : 0.012 chunk_split : 0.010 strip_tags : 0.012 md5 : 0.013 sha1 : 0.016 strtoupper : 0.011 strtolower : 0.012 strrev : 0.011 strlen : 0.010 soundex : 0.011 ord : 0.010 test_stringmanipulation : 0.129 sec. test_loops : 0.011 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.305 sec.</pre>
Output for 5.6.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.15 Platform : Linux -------------------------------------- test_math : 0.154 sec. addslashes : 0.010 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.006 strlen : 0.006 soundex : 0.006 ord : 0.006 test_stringmanipulation : 0.083 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.249 sec.</pre>
Output for 5.6.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.14 Platform : Linux -------------------------------------- test_math : 0.110 sec. addslashes : 0.010 chunk_split : 0.007 strip_tags : 0.007 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.008 strrev : 0.007 strlen : 0.006 soundex : 0.008 ord : 0.006 test_stringmanipulation : 0.084 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.207 sec.</pre>
Output for 5.6.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.13 Platform : Linux -------------------------------------- test_math : 0.111 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.009 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.006 strlen : 0.006 soundex : 0.006 ord : 0.006 test_stringmanipulation : 0.080 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.202 sec.</pre>
Output for 5.6.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.12 Platform : Linux -------------------------------------- test_math : 0.109 sec. addslashes : 0.012 chunk_split : 0.008 strip_tags : 0.009 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.007 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.088 sec. test_loops : 0.009 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.21 sec.</pre>
Output for 5.6.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.11 Platform : Linux -------------------------------------- test_math : 0.116 sec. addslashes : 0.010 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.010 ord : 0.009 test_stringmanipulation : 0.089 sec. test_loops : 0.010 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.222 sec.</pre>
Output for 5.6.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.10 Platform : Linux -------------------------------------- test_math : 0.112 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.082 sec. test_loops : 0.008 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.206 sec.</pre>
Output for 5.6.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.9 Platform : Linux -------------------------------------- test_math : 0.100 sec. addslashes : 0.010 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.085 sec. test_loops : 0.009 sec. test_ifelse : 0.006 sec. -------------------------------------- Total time: : 0.2 sec.</pre>
Output for 5.6.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.8 Platform : Linux -------------------------------------- test_math : 0.123 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.009 strtolower : 0.009 strrev : 0.008 strlen : 0.007 soundex : 0.006 ord : 0.006 test_stringmanipulation : 0.088 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.223 sec.</pre>
Output for 5.6.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.7 Platform : Linux -------------------------------------- test_math : 0.110 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.013 strtoupper : 0.009 strtolower : 0.007 strrev : 0.007 strlen : 0.007 soundex : 0.007 ord : 0.007 test_stringmanipulation : 0.091 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.213 sec.</pre>
Output for 5.6.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.6 Platform : Linux -------------------------------------- test_math : 0.150 sec. addslashes : 0.013 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.009 sha1 : 0.016 strtoupper : 0.008 strtolower : 0.011 strrev : 0.009 strlen : 0.006 soundex : 0.008 ord : 0.007 test_stringmanipulation : 0.105 sec. test_loops : 0.009 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.269 sec.</pre>
Output for 5.6.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.5 Platform : Linux -------------------------------------- test_math : 0.103 sec. addslashes : 0.008 chunk_split : 0.008 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.008 strtolower : 0.008 strrev : 0.007 strlen : 0.006 soundex : 0.006 ord : 0.006 test_stringmanipulation : 0.084 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.199 sec.</pre>
Output for 5.6.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.4 Platform : Linux -------------------------------------- test_math : 0.110 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.006 strrev : 0.006 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.080 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.201 sec.</pre>
Output for 5.6.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.3 Platform : Linux -------------------------------------- test_math : 0.120 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.009 md5 : 0.008 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.082 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.214 sec.</pre>
Output for 5.6.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.2 Platform : Linux -------------------------------------- test_math : 0.100 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.009 sha1 : 0.011 strtoupper : 0.009 strtolower : 0.009 strrev : 0.010 strlen : 0.010 soundex : 0.010 ord : 0.010 test_stringmanipulation : 0.102 sec. test_loops : 0.008 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.214 sec.</pre>
Output for 5.6.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.1 Platform : Linux -------------------------------------- test_math : 0.097 sec. addslashes : 0.007 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.008 sha1 : 0.009 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.079 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.188 sec.</pre>
Output for 5.6.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.6.0 Platform : Linux -------------------------------------- test_math : 0.104 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.018 strtoupper : 0.014 strtolower : 0.013 strrev : 0.012 strlen : 0.010 soundex : 0.011 ord : 0.009 test_stringmanipulation : 0.119 sec. test_loops : 0.007 sec. test_ifelse : 0.006 sec. -------------------------------------- Total time: : 0.236 sec.</pre>
Output for 5.5.38
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.38 Platform : Linux -------------------------------------- test_math : 0.120 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.010 strrev : 0.009 strlen : 0.007 soundex : 0.008 ord : 0.008 test_stringmanipulation : 0.095 sec. test_loops : 0.009 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.229 sec.</pre>
Output for 5.5.37
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.37 Platform : Linux -------------------------------------- test_math : 0.116 sec. addslashes : 0.012 chunk_split : 0.009 strip_tags : 0.008 md5 : 0.010 sha1 : 0.012 strtoupper : 0.008 strtolower : 0.011 strrev : 0.012 strlen : 0.010 soundex : 0.014 ord : 0.012 test_stringmanipulation : 0.117 sec. test_loops : 0.011 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.251 sec.</pre>
Output for 5.5.36
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.36 Platform : Linux -------------------------------------- test_math : 0.128 sec. addslashes : 0.012 chunk_split : 0.009 strip_tags : 0.020 md5 : 0.009 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.007 strrev : 0.009 strlen : 0.006 soundex : 0.009 ord : 0.008 test_stringmanipulation : 0.108 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.247 sec.</pre>
Output for 5.5.35
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.35 Platform : Linux -------------------------------------- test_math : 0.103 sec. addslashes : 0.008 chunk_split : 0.010 strip_tags : 0.011 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.010 strrev : 0.008 strlen : 0.009 soundex : 0.007 ord : 0.007 test_stringmanipulation : 0.096 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.211 sec.</pre>
Output for 5.5.34
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.34 Platform : Linux -------------------------------------- test_math : 0.102 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.013 md5 : 0.009 sha1 : 0.011 strtoupper : 0.009 strtolower : 0.008 strrev : 0.008 strlen : 0.007 soundex : 0.008 ord : 0.008 test_stringmanipulation : 0.098 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.213 sec.</pre>
Output for 5.5.33
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.33 Platform : Linux -------------------------------------- test_math : 0.134 sec. addslashes : 0.010 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.010 sha1 : 0.011 strtoupper : 0.010 strtolower : 0.008 strrev : 0.010 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.097 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.242 sec.</pre>
Output for 5.5.32
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.32 Platform : Linux -------------------------------------- test_math : 0.142 sec. addslashes : 0.011 chunk_split : 0.010 strip_tags : 0.012 md5 : 0.012 sha1 : 0.014 strtoupper : 0.010 strtolower : 0.010 strrev : 0.010 strlen : 0.010 soundex : 0.008 ord : 0.007 test_stringmanipulation : 0.114 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.268 sec.</pre>
Output for 5.5.31
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.31 Platform : Linux -------------------------------------- test_math : 0.113 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.011 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.086 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.21 sec.</pre>
Output for 5.5.30
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.30 Platform : Linux -------------------------------------- test_math : 0.114 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.006 ord : 0.007 test_stringmanipulation : 0.081 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.208 sec.</pre>
Output for 5.5.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.29 Platform : Linux -------------------------------------- test_math : 0.096 sec. addslashes : 0.009 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.008 sha1 : 0.010 strtoupper : 0.008 strtolower : 0.007 strrev : 0.006 strlen : 0.006 soundex : 0.007 ord : 0.007 test_stringmanipulation : 0.082 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.191 sec.</pre>
Output for 5.5.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.28 Platform : Linux -------------------------------------- test_math : 0.143 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.010 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.011 strrev : 0.007 strlen : 0.008 soundex : 0.007 ord : 0.009 test_stringmanipulation : 0.090 sec. test_loops : 0.007 sec. test_ifelse : 0.006 sec. -------------------------------------- Total time: : 0.246 sec.</pre>
Output for 5.5.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.27 Platform : Linux -------------------------------------- test_math : 0.129 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.006 strlen : 0.007 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.081 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.221 sec.</pre>
Output for 5.5.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.26 Platform : Linux -------------------------------------- test_math : 0.140 sec. addslashes : 0.012 chunk_split : 0.009 strip_tags : 0.011 md5 : 0.013 sha1 : 0.013 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.099 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.252 sec.</pre>
Output for 5.5.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.25 Platform : Linux -------------------------------------- test_math : 0.158 sec. addslashes : 0.015 chunk_split : 0.010 strip_tags : 0.013 md5 : 0.015 sha1 : 0.020 strtoupper : 0.010 strtolower : 0.011 strrev : 0.013 strlen : 0.012 soundex : 0.014 ord : 0.012 test_stringmanipulation : 0.146 sec. test_loops : 0.010 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.321 sec.</pre>
Output for 5.5.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.24 Platform : Linux -------------------------------------- test_math : 0.138 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.007 md5 : 0.009 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.008 strrev : 0.010 strlen : 0.008 soundex : 0.006 ord : 0.006 test_stringmanipulation : 0.089 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.239 sec.</pre>
Output for 5.5.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.23 Platform : Linux -------------------------------------- test_math : 0.113 sec. addslashes : 0.011 chunk_split : 0.017 strip_tags : 0.011 md5 : 0.009 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.009 strlen : 0.008 soundex : 0.007 ord : 0.007 test_stringmanipulation : 0.104 sec. test_loops : 0.008 sec. test_ifelse : 0.006 sec. -------------------------------------- Total time: : 0.231 sec.</pre>
Output for 5.5.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.22 Platform : Linux -------------------------------------- test_math : 0.102 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.009 test_stringmanipulation : 0.087 sec. test_loops : 0.011 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.205 sec.</pre>
Output for 5.5.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.21 Platform : Linux -------------------------------------- test_math : 0.101 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.007 strrev : 0.009 strlen : 0.007 soundex : 0.007 ord : 0.007 test_stringmanipulation : 0.089 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.203 sec.</pre>
Output for 5.5.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.20 Platform : Linux -------------------------------------- test_math : 0.166 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.006 strlen : 0.006 soundex : 0.006 ord : 0.006 test_stringmanipulation : 0.078 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.256 sec.</pre>
Output for 5.5.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.19 Platform : Linux -------------------------------------- test_math : 0.108 sec. addslashes : 0.010 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.012 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.088 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.207 sec.</pre>
Output for 5.5.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.18 Platform : Linux -------------------------------------- test_math : 0.122 sec. addslashes : 0.010 chunk_split : 0.010 strip_tags : 0.013 md5 : 0.010 sha1 : 0.010 strtoupper : 0.008 strtolower : 0.007 strrev : 0.009 strlen : 0.009 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.100 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.235 sec.</pre>
Output for 5.5.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.17 Platform : Linux -------------------------------------- test_math : 0.127 sec. addslashes : 0.013 chunk_split : 0.009 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.009 strrev : 0.007 strlen : 0.007 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.092 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.231 sec.</pre>
Output for 5.5.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.16 Platform : Linux -------------------------------------- test_math : 0.104 sec. addslashes : 0.009 chunk_split : 0.008 strip_tags : 0.013 md5 : 0.017 sha1 : 0.014 strtoupper : 0.007 strtolower : 0.008 strrev : 0.008 strlen : 0.006 soundex : 0.007 ord : 0.007 test_stringmanipulation : 0.105 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.222 sec.</pre>
Output for 5.5.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.15 Platform : Linux -------------------------------------- test_math : 0.101 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.010 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.008 ord : 0.006 test_stringmanipulation : 0.085 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.198 sec.</pre>
Output for 5.5.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.14 Platform : Linux -------------------------------------- test_math : 0.116 sec. addslashes : 0.009 chunk_split : 0.008 strip_tags : 0.009 md5 : 0.010 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.086 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.214 sec.</pre>
Output for 5.5.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.13 Platform : Linux -------------------------------------- test_math : 0.160 sec. addslashes : 0.013 chunk_split : 0.008 strip_tags : 0.014 md5 : 0.012 sha1 : 0.012 strtoupper : 0.009 strtolower : 0.008 strrev : 0.008 strlen : 0.007 soundex : 0.007 ord : 0.008 test_stringmanipulation : 0.107 sec. test_loops : 0.010 sec. test_ifelse : 0.008 sec. -------------------------------------- Total time: : 0.285 sec.</pre>
Output for 5.5.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.12 Platform : Linux -------------------------------------- test_math : 0.104 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.008 strrev : 0.008 strlen : 0.007 soundex : 0.008 ord : 0.008 test_stringmanipulation : 0.088 sec. test_loops : 0.008 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.204 sec.</pre>
Output for 5.5.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.11 Platform : Linux -------------------------------------- test_math : 0.099 sec. addslashes : 0.009 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.006 ord : 0.006 test_stringmanipulation : 0.082 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.192 sec.</pre>
Output for 5.5.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.10 Platform : Linux -------------------------------------- test_math : 0.126 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.010 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.007 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.087 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.225 sec.</pre>
Output for 5.5.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.9 Platform : Linux -------------------------------------- test_math : 0.120 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.010 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.008 strrev : 0.009 strlen : 0.006 soundex : 0.008 ord : 0.006 test_stringmanipulation : 0.089 sec. test_loops : 0.009 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.223 sec.</pre>
Output for 5.5.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.8 Platform : Linux -------------------------------------- test_math : 0.116 sec. addslashes : 0.011 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.011 soundex : 0.009 ord : 0.006 test_stringmanipulation : 0.092 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.219 sec.</pre>
Output for 5.5.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.7 Platform : Linux -------------------------------------- test_math : 0.156 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.008 test_stringmanipulation : 0.083 sec. test_loops : 0.011 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.257 sec.</pre>
Output for 5.5.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.6 Platform : Linux -------------------------------------- test_math : 0.102 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.006 strrev : 0.006 strlen : 0.006 soundex : 0.006 ord : 0.006 test_stringmanipulation : 0.079 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.193 sec.</pre>
Output for 5.5.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.5 Platform : Linux -------------------------------------- test_math : 0.099 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.008 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.009 strrev : 0.007 strlen : 0.006 soundex : 0.008 ord : 0.011 test_stringmanipulation : 0.091 sec. test_loops : 0.012 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.207 sec.</pre>
Output for 5.5.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.4 Platform : Linux -------------------------------------- test_math : 0.108 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.086 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.206 sec.</pre>
Output for 5.5.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.3 Platform : Linux -------------------------------------- test_math : 0.098 sec. addslashes : 0.010 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.011 sha1 : 0.011 strtoupper : 0.011 strtolower : 0.010 strrev : 0.006 strlen : 0.006 soundex : 0.006 ord : 0.006 test_stringmanipulation : 0.094 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.203 sec.</pre>
Output for 5.5.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.2 Platform : Linux -------------------------------------- test_math : 0.120 sec. addslashes : 0.015 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.009 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.006 strlen : 0.010 soundex : 0.013 ord : 0.011 test_stringmanipulation : 0.103 sec. test_loops : 0.011 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.241 sec.</pre>
Output for 5.5.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.1 Platform : Linux -------------------------------------- test_math : 0.107 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.010 sha1 : 0.012 strtoupper : 0.008 strtolower : 0.007 strrev : 0.007 strlen : 0.007 soundex : 0.008 ord : 0.008 test_stringmanipulation : 0.092 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.212 sec.</pre>
Output for 5.5.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.5.0 Platform : Linux -------------------------------------- test_math : 0.114 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.008 strtolower : 0.006 strrev : 0.008 strlen : 0.006 soundex : 0.006 ord : 0.007 test_stringmanipulation : 0.084 sec. test_loops : 0.007 sec. test_ifelse : 0.010 sec. -------------------------------------- Total time: : 0.215 sec.</pre>
Output for 5.4.45
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.45 Platform : Linux -------------------------------------- test_math : 0.119 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.010 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.008 strrev : 0.007 strlen : 0.006 soundex : 0.008 ord : 0.007 test_stringmanipulation : 0.086 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.217 sec.</pre>
Output for 5.4.44
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.44 Platform : Linux -------------------------------------- test_math : 0.101 sec. addslashes : 0.012 chunk_split : 0.012 strip_tags : 0.011 md5 : 0.010 sha1 : 0.011 strtoupper : 0.009 strtolower : 0.009 strrev : 0.007 strlen : 0.007 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.103 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.217 sec.</pre>
Output for 5.4.43
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.43 Platform : Linux -------------------------------------- test_math : 0.126 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.009 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.008 ord : 0.006 test_stringmanipulation : 0.086 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.224 sec.</pre>
Output for 5.4.42
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.42 Platform : Linux -------------------------------------- test_math : 0.122 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.011 sha1 : 0.015 strtoupper : 0.007 strtolower : 0.009 strrev : 0.013 strlen : 0.011 soundex : 0.012 ord : 0.011 test_stringmanipulation : 0.114 sec. test_loops : 0.010 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.251 sec.</pre>
Output for 5.4.41
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.41 Platform : Linux -------------------------------------- test_math : 0.107 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.010 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.087 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.206 sec.</pre>
Output for 5.4.40
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.40 Platform : Linux -------------------------------------- test_math : 0.101 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.010 sha1 : 0.011 strtoupper : 0.010 strtolower : 0.008 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.089 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.201 sec.</pre>
Output for 5.4.39
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.39 Platform : Linux -------------------------------------- test_math : 0.116 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.010 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.008 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.087 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.216 sec.</pre>
Output for 5.4.38
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.38 Platform : Linux -------------------------------------- test_math : 0.138 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.084 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.234 sec.</pre>
Output for 5.4.37
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.37 Platform : Linux -------------------------------------- test_math : 0.097 sec. addslashes : 0.009 chunk_split : 0.008 strip_tags : 0.009 md5 : 0.010 sha1 : 0.014 strtoupper : 0.008 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.091 sec. test_loops : 0.012 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.205 sec.</pre>
Output for 5.4.36
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.36 Platform : Linux -------------------------------------- test_math : 0.120 sec. addslashes : 0.010 chunk_split : 0.006 strip_tags : 0.009 md5 : 0.009 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.008 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.086 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.217 sec.</pre>
Output for 5.4.35
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.35 Platform : Linux -------------------------------------- test_math : 0.160 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.082 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.253 sec.</pre>
Output for 5.4.34
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.34 Platform : Linux -------------------------------------- test_math : 0.172 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.013 sha1 : 0.010 strtoupper : 0.012 strtolower : 0.013 strrev : 0.011 strlen : 0.009 soundex : 0.012 ord : 0.010 test_stringmanipulation : 0.114 sec. test_loops : 0.010 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.303 sec.</pre>
Output for 5.4.33
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.33 Platform : Linux -------------------------------------- test_math : 0.126 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.010 sha1 : 0.010 strtoupper : 0.008 strtolower : 0.007 strrev : 0.014 strlen : 0.006 soundex : 0.009 ord : 0.012 test_stringmanipulation : 0.100 sec. test_loops : 0.011 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.244 sec.</pre>
Output for 5.4.32
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.32 Platform : Linux -------------------------------------- test_math : 0.111 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.010 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.009 strrev : 0.008 strlen : 0.007 soundex : 0.009 ord : 0.007 test_stringmanipulation : 0.092 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.216 sec.</pre>
Output for 5.4.31
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.31 Platform : Linux -------------------------------------- test_math : 0.111 sec. addslashes : 0.011 chunk_split : 0.009 strip_tags : 0.009 md5 : 0.010 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.008 strrev : 0.008 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.094 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.218 sec.</pre>
Output for 5.4.30
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.30 Platform : Linux -------------------------------------- test_math : 0.166 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.010 strtolower : 0.010 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.090 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.268 sec.</pre>
Output for 5.4.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.29 Platform : Linux -------------------------------------- test_math : 0.109 sec. addslashes : 0.009 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.008 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.007 test_stringmanipulation : 0.085 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.207 sec.</pre>
Output for 5.4.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.28 Platform : Linux -------------------------------------- test_math : 0.100 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.010 sha1 : 0.011 strtoupper : 0.010 strtolower : 0.008 strrev : 0.009 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.088 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.199 sec.</pre>
Output for 5.4.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.27 Platform : Linux -------------------------------------- test_math : 0.104 sec. addslashes : 0.012 chunk_split : 0.008 strip_tags : 0.009 md5 : 0.009 sha1 : 0.011 strtoupper : 0.010 strtolower : 0.007 strrev : 0.007 strlen : 0.007 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.092 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.208 sec.</pre>
Output for 5.4.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.26 Platform : Linux -------------------------------------- test_math : 0.106 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.006 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.083 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.2 sec.</pre>
Output for 5.4.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.25 Platform : Linux -------------------------------------- test_math : 0.127 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.011 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.087 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.226 sec.</pre>
Output for 5.4.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.24 Platform : Linux -------------------------------------- test_math : 0.102 sec. addslashes : 0.010 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.008 strtolower : 0.008 strrev : 0.007 strlen : 0.006 soundex : 0.006 ord : 0.006 test_stringmanipulation : 0.085 sec. test_loops : 0.007 sec. test_ifelse : 0.006 sec. -------------------------------------- Total time: : 0.2 sec.</pre>
Output for 5.4.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.23 Platform : Linux -------------------------------------- test_math : 0.156 sec. addslashes : 0.013 chunk_split : 0.010 strip_tags : 0.013 md5 : 0.013 sha1 : 0.015 strtoupper : 0.011 strtolower : 0.010 strrev : 0.011 strlen : 0.009 soundex : 0.010 ord : 0.010 test_stringmanipulation : 0.128 sec. test_loops : 0.010 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.301 sec.</pre>
Output for 5.4.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.22 Platform : Linux -------------------------------------- test_math : 0.146 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.017 sha1 : 0.017 strtoupper : 0.012 strtolower : 0.009 strrev : 0.007 strlen : 0.006 soundex : 0.010 ord : 0.009 test_stringmanipulation : 0.111 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.27 sec.</pre>
Output for 5.4.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.21 Platform : Linux -------------------------------------- test_math : 0.154 sec. addslashes : 0.009 chunk_split : 0.008 strip_tags : 0.010 md5 : 0.009 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.006 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.087 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.254 sec.</pre>
Output for 5.4.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.20 Platform : Linux -------------------------------------- test_math : 0.124 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.009 sha1 : 0.010 strtoupper : 0.008 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.086 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.221 sec.</pre>
Output for 5.4.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.19 Platform : Linux -------------------------------------- test_math : 0.132 sec. addslashes : 0.017 chunk_split : 0.012 strip_tags : 0.014 md5 : 0.015 sha1 : 0.017 strtoupper : 0.012 strtolower : 0.013 strrev : 0.012 strlen : 0.011 soundex : 0.014 ord : 0.012 test_stringmanipulation : 0.152 sec. test_loops : 0.011 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.302 sec.</pre>
Output for 5.4.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.18 Platform : Linux -------------------------------------- test_math : 0.098 sec. addslashes : 0.009 chunk_split : 0.008 strip_tags : 0.009 md5 : 0.010 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.009 strrev : 0.007 strlen : 0.007 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.092 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.202 sec.</pre>
Output for 5.4.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.17 Platform : Linux -------------------------------------- test_math : 0.158 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.010 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.009 strrev : 0.007 strlen : 0.007 soundex : 0.007 ord : 0.007 test_stringmanipulation : 0.091 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.262 sec.</pre>
Output for 5.4.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.16 Platform : Linux -------------------------------------- test_math : 0.123 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.013 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.006 ord : 0.006 test_stringmanipulation : 0.086 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.221 sec.</pre>
Output for 5.4.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.15 Platform : Linux -------------------------------------- test_math : 0.123 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.010 strtolower : 0.007 strrev : 0.007 strlen : 0.008 soundex : 0.007 ord : 0.008 test_stringmanipulation : 0.089 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.224 sec.</pre>
Output for 5.4.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.14 Platform : Linux -------------------------------------- test_math : 0.116 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.010 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.010 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.088 sec. test_loops : 0.007 sec. test_ifelse : 0.006 sec. -------------------------------------- Total time: : 0.217 sec.</pre>
Output for 5.4.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.13 Platform : Linux -------------------------------------- test_math : 0.106 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.006 strlen : 0.009 soundex : 0.008 ord : 0.012 test_stringmanipulation : 0.094 sec. test_loops : 0.007 sec. test_ifelse : 0.011 sec. -------------------------------------- Total time: : 0.218 sec.</pre>
Output for 5.4.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.12 Platform : Linux -------------------------------------- test_math : 0.131 sec. addslashes : 0.011 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.010 sha1 : 0.010 strtoupper : 0.008 strtolower : 0.008 strrev : 0.008 strlen : 0.006 soundex : 0.007 ord : 0.007 test_stringmanipulation : 0.092 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.235 sec.</pre>
Output for 5.4.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.11 Platform : Linux -------------------------------------- test_math : 0.141 sec. addslashes : 0.016 chunk_split : 0.013 strip_tags : 0.010 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.008 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.099 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.253 sec.</pre>
Output for 5.4.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.10 Platform : Linux -------------------------------------- test_math : 0.124 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.010 sha1 : 0.015 strtoupper : 0.011 strtolower : 0.009 strrev : 0.008 strlen : 0.006 soundex : 0.008 ord : 0.007 test_stringmanipulation : 0.097 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.234 sec.</pre>
Output for 5.4.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.9 Platform : Linux -------------------------------------- test_math : 0.134 sec. addslashes : 0.016 chunk_split : 0.012 strip_tags : 0.017 md5 : 0.013 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.008 strrev : 0.007 strlen : 0.010 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.117 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.262 sec.</pre>
Output for 5.4.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.8 Platform : Linux -------------------------------------- test_math : 0.111 sec. addslashes : 0.012 chunk_split : 0.010 strip_tags : 0.010 md5 : 0.010 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.008 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.007 test_stringmanipulation : 0.094 sec. test_loops : 0.008 sec. test_ifelse : 0.008 sec. -------------------------------------- Total time: : 0.221 sec.</pre>
Output for 5.4.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.7 Platform : Linux -------------------------------------- test_math : 0.115 sec. addslashes : 0.009 chunk_split : 0.008 strip_tags : 0.013 md5 : 0.009 sha1 : 0.012 strtoupper : 0.014 strtolower : 0.013 strrev : 0.007 strlen : 0.007 soundex : 0.008 ord : 0.012 test_stringmanipulation : 0.113 sec. test_loops : 0.011 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.246 sec.</pre>
Output for 5.4.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.6 Platform : Linux -------------------------------------- test_math : 0.166 sec. addslashes : 0.013 chunk_split : 0.008 strip_tags : 0.008 md5 : 0.010 sha1 : 0.012 strtoupper : 0.008 strtolower : 0.007 strrev : 0.010 strlen : 0.010 soundex : 0.012 ord : 0.010 test_stringmanipulation : 0.108 sec. test_loops : 0.011 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.29 sec.</pre>
Output for 5.4.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.5 Platform : Linux -------------------------------------- test_math : 0.103 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.008 strlen : 0.007 soundex : 0.008 ord : 0.008 test_stringmanipulation : 0.088 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.203 sec.</pre>
Output for 5.4.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.4 Platform : Linux -------------------------------------- test_math : 0.139 sec. addslashes : 0.012 chunk_split : 0.010 strip_tags : 0.012 md5 : 0.012 sha1 : 0.014 strtoupper : 0.010 strtolower : 0.010 strrev : 0.011 strlen : 0.010 soundex : 0.010 ord : 0.009 test_stringmanipulation : 0.121 sec. test_loops : 0.010 sec. test_ifelse : 0.008 sec. -------------------------------------- Total time: : 0.278 sec.</pre>
Output for 5.4.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.3 Platform : Linux -------------------------------------- test_math : 0.109 sec. addslashes : 0.011 chunk_split : 0.007 strip_tags : 0.017 md5 : 0.013 sha1 : 0.019 strtoupper : 0.007 strtolower : 0.007 strrev : 0.008 strlen : 0.007 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.110 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.231 sec.</pre>
Output for 5.4.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.2 Platform : Linux -------------------------------------- test_math : 0.126 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.010 sha1 : 0.010 strtoupper : 0.008 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.007 test_stringmanipulation : 0.088 sec. test_loops : 0.007 sec. test_ifelse : 0.004 sec. -------------------------------------- Total time: : 0.225 sec.</pre>
Output for 5.4.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.1 Platform : Linux -------------------------------------- test_math : 0.114 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.009 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.010 strrev : 0.011 strlen : 0.013 soundex : 0.013 ord : 0.007 test_stringmanipulation : 0.107 sec. test_loops : 0.008 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.234 sec.</pre>
Output for 5.4.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.4.0 Platform : Linux -------------------------------------- test_math : 0.110 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.085 sec. test_loops : 0.007 sec. test_ifelse : 0.005 sec. -------------------------------------- Total time: : 0.207 sec.</pre>
Output for 5.3.29
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.29 Platform : Linux -------------------------------------- test_math : 0.134 sec. addslashes : 0.009 chunk_split : 0.015 strip_tags : 0.017 md5 : 0.016 sha1 : 0.019 strtoupper : 0.014 strtolower : 0.009 strrev : 0.007 strlen : 0.006 soundex : 0.008 ord : 0.007 test_stringmanipulation : 0.127 sec. test_loops : 0.011 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.279 sec.</pre>
Output for 5.3.28
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.28 Platform : Linux -------------------------------------- test_math : 0.137 sec. addslashes : 0.010 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.010 sha1 : 0.012 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.010 soundex : 0.013 ord : 0.021 test_stringmanipulation : 0.114 sec. test_loops : 0.024 sec. test_ifelse : 0.009 sec. -------------------------------------- Total time: : 0.284 sec.</pre>
Output for 5.3.27
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.27 Platform : Linux -------------------------------------- test_math : 0.104 sec. addslashes : 0.009 chunk_split : 0.008 strip_tags : 0.010 md5 : 0.012 sha1 : 0.014 strtoupper : 0.009 strtolower : 0.008 strrev : 0.007 strlen : 0.007 soundex : 0.008 ord : 0.007 test_stringmanipulation : 0.099 sec. test_loops : 0.010 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.22 sec.</pre>
Output for 5.3.26
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.26 Platform : Linux -------------------------------------- test_math : 0.102 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.016 md5 : 0.011 sha1 : 0.013 strtoupper : 0.007 strtolower : 0.007 strrev : 0.008 strlen : 0.008 soundex : 0.011 ord : 0.008 test_stringmanipulation : 0.107 sec. test_loops : 0.009 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.225 sec.</pre>
Output for 5.3.25
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.25 Platform : Linux -------------------------------------- test_math : 0.117 sec. addslashes : 0.010 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.014 sha1 : 0.012 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.007 soundex : 0.008 ord : 0.007 test_stringmanipulation : 0.095 sec. test_loops : 0.010 sec. test_ifelse : 0.008 sec. -------------------------------------- Total time: : 0.23 sec.</pre>
Output for 5.3.24
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.24 Platform : Linux -------------------------------------- test_math : 0.121 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.012 md5 : 0.012 sha1 : 0.014 strtoupper : 0.008 strtolower : 0.007 strrev : 0.009 strlen : 0.007 soundex : 0.008 ord : 0.007 test_stringmanipulation : 0.102 sec. test_loops : 0.010 sec. test_ifelse : 0.006 sec. -------------------------------------- Total time: : 0.239 sec.</pre>
Output for 5.3.23
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.23 Platform : Linux -------------------------------------- test_math : 0.110 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.010 md5 : 0.011 sha1 : 0.014 strtoupper : 0.008 strtolower : 0.008 strrev : 0.008 strlen : 0.007 soundex : 0.008 ord : 0.011 test_stringmanipulation : 0.102 sec. test_loops : 0.015 sec. test_ifelse : 0.010 sec. -------------------------------------- Total time: : 0.237 sec.</pre>
Output for 5.3.22
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.22 Platform : Linux -------------------------------------- test_math : 0.154 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.007 strrev : 0.007 strlen : 0.009 soundex : 0.009 ord : 0.007 test_stringmanipulation : 0.093 sec. test_loops : 0.011 sec. test_ifelse : 0.011 sec. -------------------------------------- Total time: : 0.269 sec.</pre>
Output for 5.3.21
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.21 Platform : Linux -------------------------------------- test_math : 0.137 sec. addslashes : 0.011 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.011 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.007 soundex : 0.008 ord : 0.008 test_stringmanipulation : 0.093 sec. test_loops : 0.013 sec. test_ifelse : 0.013 sec. -------------------------------------- Total time: : 0.256 sec.</pre>
Output for 5.3.20
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.20 Platform : Linux -------------------------------------- test_math : 0.175 sec. addslashes : 0.014 chunk_split : 0.007 strip_tags : 0.010 md5 : 0.011 sha1 : 0.012 strtoupper : 0.008 strtolower : 0.007 strrev : 0.008 strlen : 0.007 soundex : 0.008 ord : 0.007 test_stringmanipulation : 0.100 sec. test_loops : 0.010 sec. test_ifelse : 0.008 sec. -------------------------------------- Total time: : 0.293 sec.</pre>
Output for 5.3.19
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.19 Platform : Linux -------------------------------------- test_math : 0.109 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.011 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.008 strrev : 0.009 strlen : 0.007 soundex : 0.007 ord : 0.007 test_stringmanipulation : 0.093 sec. test_loops : 0.010 sec. test_ifelse : 0.009 sec. -------------------------------------- Total time: : 0.221 sec.</pre>
Output for 5.3.18
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.18 Platform : Linux -------------------------------------- test_math : 0.114 sec. addslashes : 0.008 chunk_split : 0.009 strip_tags : 0.011 md5 : 0.010 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.007 test_stringmanipulation : 0.093 sec. test_loops : 0.013 sec. test_ifelse : 0.012 sec. -------------------------------------- Total time: : 0.232 sec.</pre>
Output for 5.3.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.17 Platform : Linux -------------------------------------- test_math : 0.160 sec. addslashes : 0.016 chunk_split : 0.013 strip_tags : 0.016 md5 : 0.017 sha1 : 0.020 strtoupper : 0.015 strtolower : 0.015 strrev : 0.015 strlen : 0.013 soundex : 0.014 ord : 0.012 test_stringmanipulation : 0.168 sec. test_loops : 0.017 sec. test_ifelse : 0.011 sec. -------------------------------------- Total time: : 0.356 sec.</pre>
Output for 5.3.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.16 Platform : Linux -------------------------------------- test_math : 0.103 sec. addslashes : 0.009 chunk_split : 0.010 strip_tags : 0.010 md5 : 0.009 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.010 strrev : 0.007 strlen : 0.008 soundex : 0.008 ord : 0.008 test_stringmanipulation : 0.098 sec. test_loops : 0.010 sec. test_ifelse : 0.008 sec. -------------------------------------- Total time: : 0.219 sec.</pre>
Output for 5.3.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.15 Platform : Linux -------------------------------------- test_math : 0.111 sec. addslashes : 0.008 chunk_split : 0.008 strip_tags : 0.009 md5 : 0.010 sha1 : 0.016 strtoupper : 0.014 strtolower : 0.011 strrev : 0.008 strlen : 0.007 soundex : 0.010 ord : 0.007 test_stringmanipulation : 0.107 sec. test_loops : 0.010 sec. test_ifelse : 0.009 sec. -------------------------------------- Total time: : 0.237 sec.</pre>
Output for 5.3.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.14 Platform : Linux -------------------------------------- test_math : 0.126 sec. addslashes : 0.011 chunk_split : 0.012 strip_tags : 0.014 md5 : 0.014 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.008 strrev : 0.007 strlen : 0.007 soundex : 0.008 ord : 0.007 test_stringmanipulation : 0.105 sec. test_loops : 0.010 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.248 sec.</pre>
Output for 5.3.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.13 Platform : Linux -------------------------------------- test_math : 0.126 sec. addslashes : 0.009 chunk_split : 0.008 strip_tags : 0.010 md5 : 0.010 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.007 strrev : 0.007 strlen : 0.007 soundex : 0.008 ord : 0.006 test_stringmanipulation : 0.090 sec. test_loops : 0.010 sec. test_ifelse : 0.009 sec. -------------------------------------- Total time: : 0.235 sec.</pre>
Output for 5.3.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.12 Platform : Linux -------------------------------------- test_math : 0.104 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.010 md5 : 0.012 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.008 strrev : 0.007 strlen : 0.007 soundex : 0.008 ord : 0.007 test_stringmanipulation : 0.092 sec. test_loops : 0.011 sec. test_ifelse : 0.008 sec. -------------------------------------- Total time: : 0.215 sec.</pre>
Output for 5.3.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.11 Platform : Linux -------------------------------------- test_math : 0.104 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.010 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.007 soundex : 0.012 ord : 0.011 test_stringmanipulation : 0.095 sec. test_loops : 0.013 sec. test_ifelse : 0.008 sec. -------------------------------------- Total time: : 0.22 sec.</pre>
Output for 5.3.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.10 Platform : Linux -------------------------------------- test_math : 0.138 sec. addslashes : 0.011 chunk_split : 0.009 strip_tags : 0.009 md5 : 0.010 sha1 : 0.010 strtoupper : 0.008 strtolower : 0.007 strrev : 0.008 strlen : 0.013 soundex : 0.019 ord : 0.011 test_stringmanipulation : 0.114 sec. test_loops : 0.015 sec. test_ifelse : 0.008 sec. -------------------------------------- Total time: : 0.275 sec.</pre>
Output for 5.3.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.9 Platform : Linux -------------------------------------- test_math : 0.152 sec. addslashes : 0.012 chunk_split : 0.010 strip_tags : 0.011 md5 : 0.013 sha1 : 0.015 strtoupper : 0.010 strtolower : 0.010 strrev : 0.010 strlen : 0.010 soundex : 0.011 ord : 0.010 test_stringmanipulation : 0.123 sec. test_loops : 0.013 sec. test_ifelse : 0.010 sec. -------------------------------------- Total time: : 0.298 sec.</pre>
Output for 5.3.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.8 Platform : Linux -------------------------------------- test_math : 0.122 sec. addslashes : 0.008 chunk_split : 0.009 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.008 ord : 0.006 test_stringmanipulation : 0.086 sec. test_loops : 0.012 sec. test_ifelse : 0.009 sec. -------------------------------------- Total time: : 0.229 sec.</pre>
Output for 5.3.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.7 Platform : Linux -------------------------------------- test_math : 0.101 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.015 ord : 0.009 test_stringmanipulation : 0.095 sec. test_loops : 0.012 sec. test_ifelse : 0.014 sec. -------------------------------------- Total time: : 0.222 sec.</pre>
Output for 5.3.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.6 Platform : Linux -------------------------------------- test_math : 0.117 sec. addslashes : 0.009 chunk_split : 0.009 strip_tags : 0.009 md5 : 0.010 sha1 : 0.014 strtoupper : 0.008 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.008 ord : 0.006 test_stringmanipulation : 0.094 sec. test_loops : 0.011 sec. test_ifelse : 0.008 sec. -------------------------------------- Total time: : 0.23 sec.</pre>
Output for 5.3.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.5 Platform : Linux -------------------------------------- test_math : 0.107 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.012 strtoupper : 0.009 strtolower : 0.009 strrev : 0.007 strlen : 0.006 soundex : 0.008 ord : 0.006 test_stringmanipulation : 0.092 sec. test_loops : 0.010 sec. test_ifelse : 0.008 sec. -------------------------------------- Total time: : 0.217 sec.</pre>
Output for 5.3.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.4 Platform : Linux -------------------------------------- test_math : 0.145 sec. addslashes : 0.013 chunk_split : 0.010 strip_tags : 0.011 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.008 strrev : 0.007 strlen : 0.006 soundex : 0.008 ord : 0.006 test_stringmanipulation : 0.097 sec. test_loops : 0.013 sec. test_ifelse : 0.009 sec. -------------------------------------- Total time: : 0.264 sec.</pre>
Output for 5.3.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.3 Platform : Linux -------------------------------------- test_math : 0.137 sec. addslashes : 0.012 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.010 sha1 : 0.015 strtoupper : 0.012 strtolower : 0.012 strrev : 0.011 strlen : 0.011 soundex : 0.012 ord : 0.010 test_stringmanipulation : 0.120 sec. test_loops : 0.023 sec. test_ifelse : 0.008 sec. -------------------------------------- Total time: : 0.288 sec.</pre>
Output for 5.3.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.2 Platform : Linux -------------------------------------- test_math : 0.108 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.007 strrev : 0.007 strlen : 0.007 soundex : 0.008 ord : 0.006 test_stringmanipulation : 0.087 sec. test_loops : 0.011 sec. test_ifelse : 0.008 sec. -------------------------------------- Total time: : 0.214 sec.</pre>
Output for 5.3.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.1 Platform : Linux -------------------------------------- test_math : 0.145 sec. addslashes : 0.011 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.009 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.008 soundex : 0.010 ord : 0.007 test_stringmanipulation : 0.092 sec. test_loops : 0.010 sec. test_ifelse : 0.007 sec. -------------------------------------- Total time: : 0.254 sec.</pre>
Output for 5.3.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.3.0 Platform : Linux -------------------------------------- test_math : 0.106 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.012 sha1 : 0.012 strtoupper : 0.007 strtolower : 0.007 strrev : 0.008 strlen : 0.008 soundex : 0.011 ord : 0.008 test_stringmanipulation : 0.099 sec. test_loops : 0.011 sec. test_ifelse : 0.008 sec. -------------------------------------- Total time: : 0.224 sec.</pre>
Output for 5.2.17
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.17 Platform : Linux -------------------------------------- test_math : 0.111 sec. addslashes : 0.011 chunk_split : 0.009 strip_tags : 0.011 md5 : 0.012 sha1 : 0.011 strtoupper : 0.009 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.008 ord : 0.006 test_stringmanipulation : 0.097 sec. test_loops : 0.015 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.238 sec.</pre>
Output for 5.2.16
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.16 Platform : Linux -------------------------------------- test_math : 0.132 sec. addslashes : 0.010 chunk_split : 0.008 strip_tags : 0.008 md5 : 0.014 sha1 : 0.018 strtoupper : 0.007 strtolower : 0.018 strrev : 0.009 strlen : 0.008 soundex : 0.008 ord : 0.008 test_stringmanipulation : 0.117 sec. test_loops : 0.016 sec. test_ifelse : 0.017 sec. -------------------------------------- Total time: : 0.282 sec.</pre>
Output for 5.2.15
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.15 Platform : Linux -------------------------------------- test_math : 0.109 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.010 sha1 : 0.012 strtoupper : 0.008 strtolower : 0.007 strrev : 0.007 strlen : 0.008 soundex : 0.008 ord : 0.006 test_stringmanipulation : 0.090 sec. test_loops : 0.016 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.23 sec.</pre>
Output for 5.2.14
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.14 Platform : Linux -------------------------------------- test_math : 0.103 sec. addslashes : 0.010 chunk_split : 0.007 strip_tags : 0.009 md5 : 0.010 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.007 strrev : 0.007 strlen : 0.007 soundex : 0.010 ord : 0.006 test_stringmanipulation : 0.094 sec. test_loops : 0.015 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.227 sec.</pre>
Output for 5.2.13
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.13 Platform : Linux -------------------------------------- test_math : 0.100 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.010 sha1 : 0.014 strtoupper : 0.009 strtolower : 0.008 strrev : 0.008 strlen : 0.007 soundex : 0.008 ord : 0.011 test_stringmanipulation : 0.098 sec. test_loops : 0.022 sec. test_ifelse : 0.024 sec. -------------------------------------- Total time: : 0.244 sec.</pre>
Output for 5.2.12
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.12 Platform : Linux -------------------------------------- test_math : 0.173 sec. addslashes : 0.009 chunk_split : 0.012 strip_tags : 0.014 md5 : 0.017 sha1 : 0.020 strtoupper : 0.013 strtolower : 0.013 strrev : 0.012 strlen : 0.010 soundex : 0.013 ord : 0.014 test_stringmanipulation : 0.149 sec. test_loops : 0.027 sec. test_ifelse : 0.027 sec. -------------------------------------- Total time: : 0.376 sec.</pre>
Output for 5.2.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.11 Platform : Linux -------------------------------------- test_math : 0.143 sec. addslashes : 0.009 chunk_split : 0.008 strip_tags : 0.008 md5 : 0.010 sha1 : 0.011 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.007 soundex : 0.008 ord : 0.007 test_stringmanipulation : 0.090 sec. test_loops : 0.015 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.263 sec.</pre>
Output for 5.2.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.10 Platform : Linux -------------------------------------- test_math : 0.114 sec. addslashes : 0.010 chunk_split : 0.007 strip_tags : 0.012 md5 : 0.012 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.010 strrev : 0.009 strlen : 0.008 soundex : 0.009 ord : 0.017 test_stringmanipulation : 0.112 sec. test_loops : 0.030 sec. test_ifelse : 0.018 sec. -------------------------------------- Total time: : 0.274 sec.</pre>
Output for 5.2.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.9 Platform : Linux -------------------------------------- test_math : 0.193 sec. addslashes : 0.009 chunk_split : 0.008 strip_tags : 0.009 md5 : 0.011 sha1 : 0.010 strtoupper : 0.007 strtolower : 0.015 strrev : 0.009 strlen : 0.008 soundex : 0.026 ord : 0.007 test_stringmanipulation : 0.122 sec. test_loops : 0.015 sec. test_ifelse : 0.022 sec. -------------------------------------- Total time: : 0.352 sec.</pre>
Output for 5.2.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.8 Platform : Linux -------------------------------------- test_math : 0.160 sec. addslashes : 0.018 chunk_split : 0.017 strip_tags : 0.011 md5 : 0.010 sha1 : 0.026 strtoupper : 0.018 strtolower : 0.022 strrev : 0.007 strlen : 0.007 soundex : 0.009 ord : 0.011 test_stringmanipulation : 0.171 sec. test_loops : 0.017 sec. test_ifelse : 0.020 sec. -------------------------------------- Total time: : 0.368 sec.</pre>
Output for 5.2.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.7 Platform : Linux -------------------------------------- test_math : 0.161 sec. addslashes : 0.016 chunk_split : 0.022 strip_tags : 0.013 md5 : 0.019 sha1 : 0.014 strtoupper : 0.012 strtolower : 0.012 strrev : 0.010 strlen : 0.026 soundex : 0.029 ord : 0.016 test_stringmanipulation : 0.190 sec. test_loops : 0.023 sec. test_ifelse : 0.031 sec. -------------------------------------- Total time: : 0.405 sec.</pre>
Output for 5.2.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.6 Platform : Linux -------------------------------------- test_math : 0.214 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.011 md5 : 0.014 sha1 : 0.020 strtoupper : 0.010 strtolower : 0.007 strrev : 0.007 strlen : 0.008 soundex : 0.014 ord : 0.029 test_stringmanipulation : 0.137 sec. test_loops : 0.023 sec. test_ifelse : 0.025 sec. -------------------------------------- Total time: : 0.399 sec.</pre>
Output for 5.2.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.5 Platform : Linux -------------------------------------- test_math : 0.202 sec. addslashes : 0.012 chunk_split : 0.007 strip_tags : 0.012 md5 : 0.017 sha1 : 0.019 strtoupper : 0.012 strtolower : 0.011 strrev : 0.012 strlen : 0.020 soundex : 0.022 ord : 0.029 test_stringmanipulation : 0.174 sec. test_loops : 0.034 sec. test_ifelse : 0.028 sec. -------------------------------------- Total time: : 0.438 sec.</pre>
Output for 5.2.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.4 Platform : Linux -------------------------------------- test_math : 0.170 sec. addslashes : 0.009 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.010 sha1 : 0.022 strtoupper : 0.009 strtolower : 0.019 strrev : 0.013 strlen : 0.010 soundex : 0.014 ord : 0.007 test_stringmanipulation : 0.129 sec. test_loops : 0.025 sec. test_ifelse : 0.031 sec. -------------------------------------- Total time: : 0.355 sec.</pre>
Output for 5.2.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.3 Platform : Linux -------------------------------------- test_math : 0.105 sec. addslashes : 0.009 chunk_split : 0.008 strip_tags : 0.009 md5 : 0.010 sha1 : 0.011 strtoupper : 0.008 strtolower : 0.008 strrev : 0.008 strlen : 0.007 soundex : 0.009 ord : 0.007 test_stringmanipulation : 0.093 sec. test_loops : 0.015 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.229 sec.</pre>
Output for 5.2.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.2 Platform : Linux -------------------------------------- test_math : 0.122 sec. addslashes : 0.013 chunk_split : 0.008 strip_tags : 0.010 md5 : 0.030 sha1 : 0.035 strtoupper : 0.008 strtolower : 0.008 strrev : 0.007 strlen : 0.006 soundex : 0.012 ord : 0.011 test_stringmanipulation : 0.150 sec. test_loops : 0.024 sec. test_ifelse : 0.018 sec. -------------------------------------- Total time: : 0.314 sec.</pre>
Output for 5.2.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.1 Platform : Linux -------------------------------------- test_math : 0.105 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.008 md5 : 0.034 sha1 : 0.056 strtoupper : 0.008 strtolower : 0.007 strrev : 0.007 strlen : 0.008 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.156 sec. test_loops : 0.014 sec. test_ifelse : 0.017 sec. -------------------------------------- Total time: : 0.292 sec.</pre>
Output for 5.2.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.2.0 Platform : Linux -------------------------------------- test_math : 0.105 sec. addslashes : 0.009 chunk_split : 0.006 strip_tags : 0.017 md5 : 0.048 sha1 : 0.068 strtoupper : 0.011 strtolower : 0.011 strrev : 0.012 strlen : 0.011 soundex : 0.012 ord : 0.011 test_stringmanipulation : 0.218 sec. test_loops : 0.024 sec. test_ifelse : 0.023 sec. -------------------------------------- Total time: : 0.37 sec.</pre>
Output for 5.1.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.1.6 Platform : Linux -------------------------------------- test_math : 0.108 sec. addslashes : 0.013 chunk_split : 0.011 strip_tags : 0.014 md5 : 0.039 sha1 : 0.048 strtoupper : 0.009 strtolower : 0.006 strrev : 0.009 strlen : 0.008 soundex : 0.009 ord : 0.007 test_stringmanipulation : 0.174 sec. test_loops : 0.023 sec. test_ifelse : 0.022 sec. -------------------------------------- Total time: : 0.327 sec.</pre>
Output for 5.1.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.1.5 Platform : Linux -------------------------------------- test_math : 0.141 sec. addslashes : 0.010 chunk_split : 0.006 strip_tags : 0.008 md5 : 0.028 sha1 : 0.034 strtoupper : 0.007 strtolower : 0.006 strrev : 0.006 strlen : 0.005 soundex : 0.006 ord : 0.006 test_stringmanipulation : 0.123 sec. test_loops : 0.018 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.297 sec.</pre>
Output for 5.1.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.1.4 Platform : Linux -------------------------------------- test_math : 0.116 sec. addslashes : 0.010 chunk_split : 0.006 strip_tags : 0.010 md5 : 0.030 sha1 : 0.035 strtoupper : 0.007 strtolower : 0.007 strrev : 0.007 strlen : 0.006 soundex : 0.007 ord : 0.005 test_stringmanipulation : 0.131 sec. test_loops : 0.016 sec. test_ifelse : 0.016 sec. -------------------------------------- Total time: : 0.279 sec.</pre>
Output for 5.1.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.1.3 Platform : Linux -------------------------------------- test_math : 0.098 sec. addslashes : 0.008 chunk_split : 0.007 strip_tags : 0.007 md5 : 0.029 sha1 : 0.032 strtoupper : 0.006 strtolower : 0.006 strrev : 0.006 strlen : 0.005 soundex : 0.006 ord : 0.005 test_stringmanipulation : 0.119 sec. test_loops : 0.015 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.247 sec.</pre>
Output for 5.1.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.1.2 Platform : Linux -------------------------------------- test_math : 0.138 sec. addslashes : 0.013 chunk_split : 0.006 strip_tags : 0.007 md5 : 0.030 sha1 : 0.034 strtoupper : 0.007 strtolower : 0.007 strrev : 0.006 strlen : 0.006 soundex : 0.007 ord : 0.006 test_stringmanipulation : 0.128 sec. test_loops : 0.017 sec. test_ifelse : 0.017 sec. -------------------------------------- Total time: : 0.3 sec.</pre>
Output for 5.1.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.1.1 Platform : Linux -------------------------------------- test_math : 0.161 sec. addslashes : 0.008 chunk_split : 0.006 strip_tags : 0.007 md5 : 0.028 sha1 : 0.041 strtoupper : 0.011 strtolower : 0.011 strrev : 0.010 strlen : 0.009 soundex : 0.011 ord : 0.008 test_stringmanipulation : 0.151 sec. test_loops : 0.021 sec. test_ifelse : 0.019 sec. -------------------------------------- Total time: : 0.352 sec.</pre>
Output for 5.1.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.1.0 Platform : Linux -------------------------------------- test_math : 0.116 sec. addslashes : 0.013 chunk_split : 0.006 strip_tags : 0.007 md5 : 0.028 sha1 : 0.033 strtoupper : 0.006 strtolower : 0.006 strrev : 0.006 strlen : 0.006 soundex : 0.006 ord : 0.005 test_stringmanipulation : 0.124 sec. test_loops : 0.015 sec. test_ifelse : 0.015 sec. -------------------------------------- Total time: : 0.27 sec.</pre>
Output for 5.0.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.0.5 Platform : Linux -------------------------------------- test_math : 0.154 sec. addslashes : 0.011 chunk_split : 0.009 strip_tags : 0.010 md5 : 0.029 sha1 : 0.035 strtoupper : 0.009 strtolower : 0.009 strrev : 0.008 strlen : 0.008 soundex : 0.010 ord : 0.009 test_stringmanipulation : 0.148 sec. test_loops : 0.060 sec. test_ifelse : 0.065 sec. -------------------------------------- Total time: : 0.427 sec.</pre>
Output for 5.0.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.0.4 Platform : Linux -------------------------------------- test_math : 0.152 sec. addslashes : 0.012 chunk_split : 0.009 strip_tags : 0.010 md5 : 0.034 sha1 : 0.039 strtoupper : 0.009 strtolower : 0.009 strrev : 0.009 strlen : 0.008 soundex : 0.012 ord : 0.008 test_stringmanipulation : 0.160 sec. test_loops : 0.047 sec. test_ifelse : 0.036 sec. -------------------------------------- Total time: : 0.395 sec.</pre>
Output for 5.0.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.0.3 Platform : Linux -------------------------------------- test_math : 0.167 sec. addslashes : 0.011 chunk_split : 0.009 strip_tags : 0.010 md5 : 0.033 sha1 : 0.035 strtoupper : 0.009 strtolower : 0.009 strrev : 0.009 strlen : 0.008 soundex : 0.009 ord : 0.008 test_stringmanipulation : 0.149 sec. test_loops : 0.042 sec. test_ifelse : 0.035 sec. -------------------------------------- Total time: : 0.393 sec.</pre>
Output for 5.0.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.0.2 Platform : Linux -------------------------------------- test_math : 0.163 sec. addslashes : 0.012 chunk_split : 0.012 strip_tags : 0.011 md5 : 0.030 sha1 : 0.034 strtoupper : 0.009 strtolower : 0.009 strrev : 0.008 strlen : 0.008 soundex : 0.009 ord : 0.008 test_stringmanipulation : 0.148 sec. test_loops : 0.042 sec. test_ifelse : 0.031 sec. -------------------------------------- Total time: : 0.384 sec.</pre>
Output for 5.0.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.0.1 Platform : Linux -------------------------------------- test_math : 0.173 sec. addslashes : 0.011 chunk_split : 0.008 strip_tags : 0.010 md5 : 0.034 sha1 : 0.034 strtoupper : 0.009 strtolower : 0.009 strrev : 0.009 strlen : 0.008 soundex : 0.008 ord : 0.008 test_stringmanipulation : 0.147 sec. test_loops : 0.045 sec. test_ifelse : 0.031 sec. -------------------------------------- Total time: : 0.396 sec.</pre>
Output for 5.0.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 5.0.0 Platform : Linux -------------------------------------- test_math : 0.150 sec. addslashes : 0.011 chunk_split : 0.010 strip_tags : 0.009 md5 : 0.030 sha1 : 0.044 strtoupper : 0.009 strtolower : 0.009 strrev : 0.008 strlen : 0.008 soundex : 0.010 ord : 0.008 test_stringmanipulation : 0.159 sec. test_loops : 0.046 sec. test_ifelse : 0.035 sec. -------------------------------------- Total time: : 0.39 sec.</pre>
Output for 4.4.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.4.9 Platform : Linux -------------------------------------- test_math : 0.276 sec. addslashes : 0.034 chunk_split : 0.030 strip_tags : 0.012 md5 : 0.045 sha1 : 0.061 strtoupper : 0.021 strtolower : 0.011 strrev : 0.009 strlen : 0.009 soundex : 0.009 ord : 0.009 test_stringmanipulation : 0.251 sec. test_loops : 0.095 sec. test_ifelse : 0.035 sec. -------------------------------------- Total time: : 0.657 sec.</pre>
Output for 4.4.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.4.8 Platform : Linux -------------------------------------- test_math : 0.179 sec. addslashes : 0.009 chunk_split : 0.009 strip_tags : 0.013 md5 : 0.050 sha1 : 0.056 strtoupper : 0.010 strtolower : 0.009 strrev : 0.010 strlen : 0.008 soundex : 0.009 ord : 0.014 test_stringmanipulation : 0.201 sec. test_loops : 0.086 sec. test_ifelse : 0.033 sec. -------------------------------------- Total time: : 0.499 sec.</pre>
Output for 4.4.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.4.7 Platform : Linux -------------------------------------- test_math : 0.138 sec. addslashes : 0.010 chunk_split : 0.008 strip_tags : 0.010 md5 : 0.040 sha1 : 0.039 strtoupper : 0.010 strtolower : 0.009 strrev : 0.010 strlen : 0.009 soundex : 0.009 ord : 0.008 test_stringmanipulation : 0.164 sec. test_loops : 0.040 sec. test_ifelse : 0.030 sec. -------------------------------------- Total time: : 0.372 sec.</pre>
Output for 4.4.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.4.6 Platform : Linux -------------------------------------- test_math : 0.128 sec. addslashes : 0.010 chunk_split : 0.009 strip_tags : 0.012 md5 : 0.033 sha1 : 0.036 strtoupper : 0.009 strtolower : 0.009 strrev : 0.011 strlen : 0.008 soundex : 0.011 ord : 0.010 test_stringmanipulation : 0.158 sec. test_loops : 0.042 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.36 sec.</pre>
Output for 4.4.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.4.5 Platform : Linux -------------------------------------- test_math : 0.193 sec. addslashes : 0.016 chunk_split : 0.015 strip_tags : 0.017 md5 : 0.055 sha1 : 0.047 strtoupper : 0.009 strtolower : 0.010 strrev : 0.008 strlen : 0.009 soundex : 0.010 ord : 0.011 test_stringmanipulation : 0.210 sec. test_loops : 0.057 sec. test_ifelse : 0.033 sec. -------------------------------------- Total time: : 0.493 sec.</pre>
Output for 4.4.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.4.4 Platform : Linux -------------------------------------- test_math : 0.143 sec. addslashes : 0.009 chunk_split : 0.008 strip_tags : 0.009 md5 : 0.029 sha1 : 0.034 strtoupper : 0.009 strtolower : 0.009 strrev : 0.009 strlen : 0.008 soundex : 0.009 ord : 0.008 test_stringmanipulation : 0.142 sec. test_loops : 0.058 sec. test_ifelse : 0.055 sec. -------------------------------------- Total time: : 0.398 sec.</pre>
Output for 4.4.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.4.3 Platform : Linux -------------------------------------- test_math : 0.145 sec. addslashes : 0.012 chunk_split : 0.016 strip_tags : 0.018 md5 : 0.033 sha1 : 0.043 strtoupper : 0.009 strtolower : 0.009 strrev : 0.009 strlen : 0.009 soundex : 0.010 ord : 0.009 test_stringmanipulation : 0.178 sec. test_loops : 0.054 sec. test_ifelse : 0.049 sec. -------------------------------------- Total time: : 0.426 sec.</pre>
Output for 4.4.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.4.2 Platform : Linux -------------------------------------- test_math : 0.124 sec. addslashes : 0.017 chunk_split : 0.009 strip_tags : 0.010 md5 : 0.032 sha1 : 0.050 strtoupper : 0.013 strtolower : 0.016 strrev : 0.009 strlen : 0.008 soundex : 0.009 ord : 0.008 test_stringmanipulation : 0.181 sec. test_loops : 0.043 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.38 sec.</pre>
Output for 4.4.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.4.1 Platform : Linux -------------------------------------- test_math : 0.135 sec. addslashes : 0.010 chunk_split : 0.009 strip_tags : 0.012 md5 : 0.032 sha1 : 0.037 strtoupper : 0.009 strtolower : 0.009 strrev : 0.009 strlen : 0.008 soundex : 0.009 ord : 0.008 test_stringmanipulation : 0.152 sec. test_loops : 0.044 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.363 sec.</pre>
Output for 4.4.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.4.0 Platform : Linux -------------------------------------- test_math : 0.142 sec. addslashes : 0.009 chunk_split : 0.008 strip_tags : 0.009 md5 : 0.029 sha1 : 0.050 strtoupper : 0.016 strtolower : 0.016 strrev : 0.014 strlen : 0.013 soundex : 0.015 ord : 0.009 test_stringmanipulation : 0.190 sec. test_loops : 0.059 sec. test_ifelse : 0.032 sec. -------------------------------------- Total time: : 0.423 sec.</pre>
Output for 4.3.11
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.3.11 Platform : Linux -------------------------------------- test_math : 0.142 sec. addslashes : 0.009 chunk_split : 0.009 strip_tags : 0.018 md5 : 0.034 sha1 : 0.040 strtoupper : 0.013 strtolower : 0.015 strrev : 0.010 strlen : 0.009 soundex : 0.015 ord : 0.015 test_stringmanipulation : 0.189 sec. test_loops : 0.080 sec. test_ifelse : 0.034 sec. -------------------------------------- Total time: : 0.445 sec.</pre>
Output for 4.3.10
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.3.10 Platform : Linux -------------------------------------- test_math : 0.211 sec. addslashes : 0.016 chunk_split : 0.010 strip_tags : 0.011 md5 : 0.030 sha1 : 0.038 strtoupper : 0.009 strtolower : 0.011 strrev : 0.009 strlen : 0.008 soundex : 0.009 ord : 0.007 test_stringmanipulation : 0.160 sec. test_loops : 0.042 sec. test_ifelse : 0.033 sec. -------------------------------------- Total time: : 0.446 sec.</pre>
Output for 4.3.9
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.3.9 Platform : Linux -------------------------------------- test_math : 0.212 sec. addslashes : 0.010 chunk_split : 0.009 strip_tags : 0.011 md5 : 0.030 sha1 : 0.037 strtoupper : 0.010 strtolower : 0.009 strrev : 0.010 strlen : 0.010 soundex : 0.009 ord : 0.009 test_stringmanipulation : 0.155 sec. test_loops : 0.041 sec. test_ifelse : 0.033 sec. -------------------------------------- Total time: : 0.441 sec.</pre>
Output for 4.3.8
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.3.8 Platform : Linux -------------------------------------- test_math : 0.158 sec. addslashes : 0.013 chunk_split : 0.010 strip_tags : 0.010 md5 : 0.039 sha1 : 0.034 strtoupper : 0.009 strtolower : 0.009 strrev : 0.009 strlen : 0.008 soundex : 0.010 ord : 0.008 test_stringmanipulation : 0.163 sec. test_loops : 0.045 sec. test_ifelse : 0.034 sec. -------------------------------------- Total time: : 0.4 sec.</pre>
Output for 4.3.7
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.3.7 Platform : Linux -------------------------------------- test_math : 0.154 sec. addslashes : 0.014 chunk_split : 0.010 strip_tags : 0.010 md5 : 0.034 sha1 : 0.062 strtoupper : 0.012 strtolower : 0.011 strrev : 0.010 strlen : 0.008 soundex : 0.010 ord : 0.008 test_stringmanipulation : 0.191 sec. test_loops : 0.047 sec. test_ifelse : 0.030 sec. -------------------------------------- Total time: : 0.422 sec.</pre>
Output for 4.3.6
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.3.6 Platform : Linux -------------------------------------- test_math : 0.173 sec. addslashes : 0.011 chunk_split : 0.010 strip_tags : 0.010 md5 : 0.031 sha1 : 0.032 strtoupper : 0.009 strtolower : 0.010 strrev : 0.009 strlen : 0.008 soundex : 0.009 ord : 0.008 test_stringmanipulation : 0.148 sec. test_loops : 0.045 sec. test_ifelse : 0.031 sec. -------------------------------------- Total time: : 0.397 sec.</pre>
Output for 4.3.5
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.3.5 Platform : Linux -------------------------------------- test_math : 0.165 sec. addslashes : 0.011 chunk_split : 0.008 strip_tags : 0.009 md5 : 0.034 sha1 : 0.034 strtoupper : 0.009 strtolower : 0.009 strrev : 0.009 strlen : 0.008 soundex : 0.009 ord : 0.008 test_stringmanipulation : 0.148 sec. test_loops : 0.043 sec. test_ifelse : 0.034 sec. -------------------------------------- Total time: : 0.39 sec.</pre>
Output for 4.3.4
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.3.4 Platform : Linux -------------------------------------- test_math : 0.172 sec. addslashes : 0.012 chunk_split : 0.009 strip_tags : 0.011 md5 : 0.036 sha1 : 0.040 strtoupper : 0.009 strtolower : 0.010 strrev : 0.010 strlen : 0.008 soundex : 0.011 ord : 0.018 test_stringmanipulation : 0.174 sec. test_loops : 0.049 sec. test_ifelse : 0.034 sec. -------------------------------------- Total time: : 0.429 sec.</pre>
Output for 4.3.3
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.3.3 Platform : Linux -------------------------------------- test_math : 0.152 sec. addslashes : 0.014 chunk_split : 0.011 strip_tags : 0.012 md5 : 0.039 sha1 : 0.033 strtoupper : 0.009 strtolower : 0.009 strrev : 0.009 strlen : 0.010 soundex : 0.012 ord : 0.009 test_stringmanipulation : 0.168 sec. test_loops : 0.051 sec. test_ifelse : 0.031 sec. -------------------------------------- Total time: : 0.402 sec.</pre>
Output for 4.3.2
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.3.2 Platform : Linux -------------------------------------- test_math : 0.181 sec. addslashes : 0.011 chunk_split : 0.008 strip_tags : 0.009 md5 : 0.029 sha1 : 0.036 strtoupper : 0.020 strtolower : 0.010 strrev : 0.010 strlen : 0.008 soundex : 0.009 ord : 0.009 test_stringmanipulation : 0.160 sec. test_loops : 0.048 sec. test_ifelse : 0.039 sec. -------------------------------------- Total time: : 0.428 sec.</pre>
Output for 4.3.1
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.3.1 Platform : Linux -------------------------------------- test_math : 0.179 sec. addslashes : 0.010 chunk_split : 0.008 strip_tags : 0.010 md5 : 0.051 sha1 : 0.068 strtoupper : 0.010 strtolower : 0.009 strrev : 0.009 strlen : 0.008 soundex : 0.009 ord : 0.008 test_stringmanipulation : 0.200 sec. test_loops : 0.048 sec. test_ifelse : 0.036 sec. -------------------------------------- Total time: : 0.463 sec.</pre>
Output for 4.3.0
<pre>-------------------------------------- | PHP BENCHMARK SCRIPT | -------------------------------------- Start : 2018-11-07 14:05:36 Server : PHP version : 4.3.0 Platform : Linux -------------------------------------- test_math : 0.152 sec. addslashes : 0.014 chunk_split : 0.009 strip_tags : 0.013 md5 : 0.036 sha1 : 0.037 strtoupper : 0.009 strtolower : 0.009 strrev : 0.008 strlen : 0.007 soundex : 0.009 ord : 0.008 test_stringmanipulation : 0.160 sec. test_loops : 0.048 sec. test_ifelse : 0.029 sec. -------------------------------------- Total time: : 0.389 sec.</pre>

preferences:
203.57 ms | 402 KiB | 280 Q