3v4l.org

run code in 300+ PHP versions simultaneously
<?php function benchmark($function, $args=null, $count=1) { $time = microtime(1); for($i=0; $i<$count; $i++) { $result = is_array($args)? call_user_func_array($function, $args): call_user_func_array($function); } return array( 'total_time' => microtime(1) - $time, 'average_time' => (microtime(1) - $time)/$count, 'count' => $count ); } function p($string) { print_r($string . "<br>"); } var_dump(benchmark('p', array('test',1E4))); gc_collect_cycles(); //var_dump(benchmark('p', array('test',1E3)));
Output for 5.6.23, 7.3.1
test<br>array(3) { ["total_time"]=> float(3.6001205444336E-5) ["average_time"]=> float(3.7193298339844E-5) ["count"]=> int(1) }
Output for 7.3.0
test<br>array(3) { ["total_time"]=> float(3.6001205444336E-5) ["average_time"]=> float(4.4107437133789E-5) ["count"]=> int(1) }
Output for 7.2.13
test<br>array(3) { ["total_time"]=> float(0.067391872406006) ["average_time"]=> float(0.067394018173218) ["count"]=> int(1) }
Output for 7.2.12
test<br>array(3) { ["total_time"]=> float(0.069685935974121) ["average_time"]=> float(0.069692850112915) ["count"]=> int(1) }
Output for 7.2.11
test<br>array(3) { ["total_time"]=> float(0.018861770629883) ["average_time"]=> float(0.018862962722778) ["count"]=> int(1) }
Output for 7.2.10
test<br>array(3) { ["total_time"]=> float(0.053499937057495) ["average_time"]=> float(0.053501844406128) ["count"]=> int(1) }
Output for 7.2.9
test<br>array(3) { ["total_time"]=> float(0.063097953796387) ["average_time"]=> float(0.06309986114502) ["count"]=> int(1) }
Output for 7.2.8
test<br>array(3) { ["total_time"]=> float(0.035295963287354) ["average_time"]=> float(0.035298109054565) ["count"]=> int(1) }
Output for 7.2.7
test<br>array(3) { ["total_time"]=> float(3.9100646972656E-5) ["average_time"]=> float(4.8160552978516E-5) ["count"]=> int(1) }
Output for 7.2.6
test<br>array(3) { ["total_time"]=> float(0.024286985397339) ["average_time"]=> float(0.024293899536133) ["count"]=> int(1) }
Output for 7.2.5
test<br>array(3) { ["total_time"]=> float(0.038648128509521) ["average_time"]=> float(0.038655042648315) ["count"]=> int(1) }
Output for 7.2.4
test<br>array(3) { ["total_time"]=> float(0.050266981124878) ["average_time"]=> float(0.05026912689209) ["count"]=> int(1) }
Output for 7.2.3
test<br>array(3) { ["total_time"]=> float(0.09407901763916) ["average_time"]=> float(0.094089031219482) ["count"]=> int(1) }
Output for 5.4.34, 5.5.16, 7.2.2
test<br>array(3) { ["total_time"]=> float(4.1961669921875E-5) ["average_time"]=> float(4.3869018554688E-5) ["count"]=> int(1) }
Output for 5.4.28, 5.5.12, 5.6.2, 5.6.31, 7.0.7, 7.2.1
test<br>array(3) { ["total_time"]=> float(3.504753112793E-5) ["average_time"]=> float(3.6001205444336E-5) ["count"]=> int(1) }
Output for 5.4.9, 7.2.0
test<br>array(3) { ["total_time"]=> float(4.0054321289062E-5) ["average_time"]=> float(4.1007995605469E-5) ["count"]=> int(1) }
Output for 7.1.25
test<br>array(3) { ["total_time"]=> float(0.00037598609924316) ["average_time"]=> float(0.00037813186645508) ["count"]=> int(1) }
Output for 7.1.24
test<br>array(3) { ["total_time"]=> float(2.3841857910156E-5) ["average_time"]=> float(2.5033950805664E-5) ["count"]=> int(1) }
Output for 7.0.24, 7.1.2, 7.1.11, 7.1.14, 7.1.17, 7.1.23
test<br>array(3) { ["total_time"]=> float(2.0980834960938E-5) ["average_time"]=> float(2.1934509277344E-5) ["count"]=> int(1) }
Output for 7.0.28 - 7.0.29, 7.1.22
test<br>array(3) { ["total_time"]=> float(2.1934509277344E-5) ["average_time"]=> float(2.288818359375E-5) ["count"]=> int(1) }
Output for 5.6.36, 7.1.21
test<br>array(3) { ["total_time"]=> float(3.7193298339844E-5) ["average_time"]=> float(3.814697265625E-5) ["count"]=> int(1) }
Output for 5.5.3, 5.6.21, 7.0.1, 7.0.22, 7.1.18, 7.1.20
test<br>array(3) { ["total_time"]=> float(2.598762512207E-5) ["average_time"]=> float(2.6941299438477E-5) ["count"]=> int(1) }
Output for 7.0.25, 7.1.9, 7.1.19
test<br>array(3) { ["total_time"]=> float(2.8133392333984E-5) ["average_time"]=> float(2.9087066650391E-5) ["count"]=> int(1) }
Output for 5.4.21, 7.1.4, 7.1.7, 7.1.16
test<br>array(3) { ["total_time"]=> float(2.5033950805664E-5) ["average_time"]=> float(2.598762512207E-5) ["count"]=> int(1) }
Output for 7.1.15
test<br>array(3) { ["total_time"]=> float(2.5033950805664E-5) ["average_time"]=> float(2.6226043701172E-5) ["count"]=> int(1) }
Output for 7.1.13
test<br>array(3) { ["total_time"]=> float(2.598762512207E-5) ["average_time"]=> float(2.7179718017578E-5) ["count"]=> int(1) }
Output for 5.6.28, 7.1.12
test<br>array(3) { ["total_time"]=> float(2.7894973754883E-5) ["average_time"]=> float(2.8848648071289E-5) ["count"]=> int(1) }
Output for 7.1.10
test<br>array(3) { ["total_time"]=> float(3.814697265625E-5) ["average_time"]=> float(4.0054321289062E-5) ["count"]=> int(1) }
Output for 7.1.8
test<br>array(3) { ["total_time"]=> float(3.2186508178711E-5) ["average_time"]=> float(3.3140182495117E-5) ["count"]=> int(1) }
Output for 5.4.25, 5.5.7, 7.0.6, 7.1.6
test<br>array(3) { ["total_time"]=> float(3.0040740966797E-5) ["average_time"]=> float(3.0994415283203E-5) ["count"]=> int(1) }
Output for 7.0.18, 7.1.5
test<br>array(3) { ["total_time"]=> float(2.4080276489258E-5) ["average_time"]=> float(2.5033950805664E-5) ["count"]=> int(1) }
Output for 5.5.30, 5.6.33, 7.0.16, 7.1.3
test<br>array(3) { ["total_time"]=> float(3.0994415283203E-5) ["average_time"]=> float(3.1948089599609E-5) ["count"]=> int(1) }
Output for 7.0.32, 7.1.1
test<br>array(3) { ["total_time"]=> float(2.288818359375E-5) ["average_time"]=> float(2.3841857910156E-5) ["count"]=> int(1) }
Output for 7.0.21, 7.1.0
test<br>array(3) { ["total_time"]=> float(2.7179718017578E-5) ["average_time"]=> float(2.8133392333984E-5) ["count"]=> int(1) }
Output for 5.5.23, 5.5.34, 7.0.2, 7.0.17, 7.0.33
test<br>array(3) { ["total_time"]=> float(3.6001205444336E-5) ["average_time"]=> float(3.6954879760742E-5) ["count"]=> int(1) }
Output for 7.0.31
test<br>array(3) { ["total_time"]=> float(2.0027160644531E-5) ["average_time"]=> float(2.0980834960938E-5) ["count"]=> int(1) }
Output for 5.6.9, 7.0.30
test<br>array(3) { ["total_time"]=> float(2.6941299438477E-5) ["average_time"]=> float(2.7894973754883E-5) ["count"]=> int(1) }
Output for 7.0.15, 7.0.20, 7.0.27
test<br>array(3) { ["total_time"]=> float(1.9073486328125E-5) ["average_time"]=> float(2.0027160644531E-5) ["count"]=> int(1) }
Output for 7.0.26
test<br>array(3) { ["total_time"]=> float(1.8119812011719E-5) ["average_time"]=> float(1.9073486328125E-5) ["count"]=> int(1) }
Output for 5.6.4, 7.0.10, 7.0.23
test<br>array(3) { ["total_time"]=> float(2.9802322387695E-5) ["average_time"]=> float(3.0994415283203E-5) ["count"]=> int(1) }
Output for 7.0.5, 7.0.11, 7.0.19
test<br>array(3) { ["total_time"]=> float(2.3126602172852E-5) ["average_time"]=> float(2.4080276489258E-5) ["count"]=> int(1) }
Output for 7.0.14
test<br>array(3) { ["total_time"]=> float(2.8133392333984E-5) ["average_time"]=> float(2.8133392333984E-5) ["count"]=> int(1) }
Output for 7.0.13
test<br>array(3) { ["total_time"]=> float(1.8835067749023E-5) ["average_time"]=> float(2.0027160644531E-5) ["count"]=> int(1) }
Output for 7.0.12
test<br>array(3) { ["total_time"]=> float(4.4107437133789E-5) ["average_time"]=> float(4.6014785766602E-5) ["count"]=> int(1) }
Output for 7.0.9
test<br>array(3) { ["total_time"]=> float(1.8119812011719E-5) ["average_time"]=> float(1.8119812011719E-5) ["count"]=> int(1) }
Output for 7.0.8
test<br>array(3) { ["total_time"]=> float(3.0994415283203E-5) ["average_time"]=> float(3.2901763916016E-5) ["count"]=> int(1) }
Output for 7.0.4
test<br>array(3) { ["total_time"]=> float(2.9802322387695E-5) ["average_time"]=> float(3.1948089599609E-5) ["count"]=> int(1) }
Output for 5.6.14 - 5.6.15, 7.0.3
test<br>array(3) { ["total_time"]=> float(3.4093856811523E-5) ["average_time"]=> float(3.504753112793E-5) ["count"]=> int(1) }
Output for 5.6.13, 7.0.0
test<br>array(3) { ["total_time"]=> float(3.2901763916016E-5) ["average_time"]=> float(3.4093856811523E-5) ["count"]=> int(1) }
Output for 5.4.2, 5.6.22, 5.6.35, 5.6.38
test<br>array(3) { ["total_time"]=> float(4.2915344238281E-5) ["average_time"]=> float(4.3869018554688E-5) ["count"]=> int(1) }
Output for 5.5.35, 5.6.16, 5.6.37
test<br>array(3) { ["total_time"]=> float(3.6954879760742E-5) ["average_time"]=> float(3.7908554077148E-5) ["count"]=> int(1) }
Output for 5.6.34
test<br>array(3) { ["total_time"]=> float(3.2901763916016E-5) ["average_time"]=> float(3.3855438232422E-5) ["count"]=> int(1) }
Output for 5.6.32
test<br>array(3) { ["total_time"]=> float(3.1948089599609E-5) ["average_time"]=> float(3.3855438232422E-5) ["count"]=> int(1) }
Output for 5.4.41, 5.5.14, 5.6.30
test<br>array(3) { ["total_time"]=> float(3.4809112548828E-5) ["average_time"]=> float(3.6001205444336E-5) ["count"]=> int(1) }
Output for 5.6.29
test<br>array(3) { ["total_time"]=> float(3.3140182495117E-5) ["average_time"]=> float(3.4093856811523E-5) ["count"]=> int(1) }
Output for 5.6.27
test<br>array(3) { ["total_time"]=> float(4.3869018554688E-5) ["average_time"]=> float(4.6014785766602E-5) ["count"]=> int(1) }
Output for 5.4.31, 5.6.26
test<br>array(3) { ["total_time"]=> float(3.9100646972656E-5) ["average_time"]=> float(4.0054321289062E-5) ["count"]=> int(1) }
Output for 5.6.25
test<br>array(3) { ["total_time"]=> float(3.4093856811523E-5) ["average_time"]=> float(3.4093856811523E-5) ["count"]=> int(1) }
Output for 5.6.24
test<br>array(3) { ["total_time"]=> float(3.0040740966797E-5) ["average_time"]=> float(3.0040740966797E-5) ["count"]=> int(1) }
Output for 5.6.20
test<br>array(3) { ["total_time"]=> float(3.3855438232422E-5) ["average_time"]=> float(3.504753112793E-5) ["count"]=> int(1) }
Output for 5.5.1, 5.6.19
test<br>array(3) { ["total_time"]=> float(4.7922134399414E-5) ["average_time"]=> float(5.0067901611328E-5) ["count"]=> int(1) }
Output for 5.6.18
test<br>array(3) { ["total_time"]=> float(3.8862228393555E-5) ["average_time"]=> float(4.2915344238281E-5) ["count"]=> int(1) }
Output for 5.6.17
test<br>array(3) { ["total_time"]=> float(3.8862228393555E-5) ["average_time"]=> float(4.0054321289062E-5) ["count"]=> int(1) }
Output for 5.6.12
test<br>array(3) { ["total_time"]=> float(5.1975250244141E-5) ["average_time"]=> float(5.2928924560547E-5) ["count"]=> int(1) }
Output for 5.6.11
test<br>array(3) { ["total_time"]=> float(5.793571472168E-5) ["average_time"]=> float(5.8889389038086E-5) ["count"]=> int(1) }
Output for 5.6.10
test<br>array(3) { ["total_time"]=> float(4.1007995605469E-5) ["average_time"]=> float(4.2200088500977E-5) ["count"]=> int(1) }
Output for 5.4.13, 5.6.8
test<br>array(3) { ["total_time"]=> float(3.2901763916016E-5) ["average_time"]=> float(3.2901763916016E-5) ["count"]=> int(1) }
Output for 5.6.7
test<br>array(3) { ["total_time"]=> float(5.3882598876953E-5) ["average_time"]=> float(5.5789947509766E-5) ["count"]=> int(1) }
Output for 5.6.6
test<br>array(3) { ["total_time"]=> float(5.4121017456055E-5) ["average_time"]=> float(5.6028366088867E-5) ["count"]=> int(1) }
Output for 5.6.5
test<br>array(3) { ["total_time"]=> float(3.504753112793E-5) ["average_time"]=> float(3.7193298339844E-5) ["count"]=> int(1) }
Output for 5.6.3
test<br>array(3) { ["total_time"]=> float(4.9114227294922E-5) ["average_time"]=> float(5.0067901611328E-5) ["count"]=> int(1) }
Output for 5.5.5, 5.6.1
test<br>array(3) { ["total_time"]=> float(4.7922134399414E-5) ["average_time"]=> float(4.887580871582E-5) ["count"]=> int(1) }
Output for 5.6.0
test<br>array(3) { ["total_time"]=> float(4.6968460083008E-5) ["average_time"]=> float(4.8160552978516E-5) ["count"]=> int(1) }
Output for 5.4.7, 5.5.38
test<br>array(3) { ["total_time"]=> float(6.103515625E-5) ["average_time"]=> float(6.2942504882812E-5) ["count"]=> int(1) }
Output for 5.4.42, 5.5.37
test<br>array(3) { ["total_time"]=> float(5.1021575927734E-5) ["average_time"]=> float(5.2928924560547E-5) ["count"]=> int(1) }
Output for 5.5.36
test<br>array(3) { ["total_time"]=> float(4.887580871582E-5) ["average_time"]=> float(4.9829483032227E-5) ["count"]=> int(1) }
Output for 5.5.33
test<br>array(3) { ["total_time"]=> float(5.6982040405273E-5) ["average_time"]=> float(5.8889389038086E-5) ["count"]=> int(1) }
Output for 5.5.32
test<br>array(3) { ["total_time"]=> float(3.814697265625E-5) ["average_time"]=> float(3.9100646972656E-5) ["count"]=> int(1) }
Output for 5.5.31
test<br>array(3) { ["total_time"]=> float(4.4107437133789E-5) ["average_time"]=> float(4.5061111450195E-5) ["count"]=> int(1) }
Output for 5.5.29
test<br>array(3) { ["total_time"]=> float(5.0067901611328E-5) ["average_time"]=> float(5.1975250244141E-5) ["count"]=> int(1) }
Output for 5.5.28
test<br>array(3) { ["total_time"]=> float(8.2015991210938E-5) ["average_time"]=> float(8.392333984375E-5) ["count"]=> int(1) }
Output for 5.5.27
test<br>array(3) { ["total_time"]=> float(5.4121017456055E-5) ["average_time"]=> float(5.5074691772461E-5) ["count"]=> int(1) }
Output for 5.5.26
test<br>array(3) { ["total_time"]=> float(4.0054321289062E-5) ["average_time"]=> float(4.1961669921875E-5) ["count"]=> int(1) }
Output for 5.5.25
test<br>array(3) { ["total_time"]=> float(4.3869018554688E-5) ["average_time"]=> float(4.57763671875E-5) ["count"]=> int(1) }
Output for 5.5.24
test<br>array(3) { ["total_time"]=> float(5.8889389038086E-5) ["average_time"]=> float(6.1988830566406E-5) ["count"]=> int(1) }
Output for 5.4.3, 5.5.22
test<br>array(3) { ["total_time"]=> float(5.9127807617188E-5) ["average_time"]=> float(6.103515625E-5) ["count"]=> int(1) }
Output for 5.5.21
test<br>array(3) { ["total_time"]=> float(6.8902969360352E-5) ["average_time"]=> float(7.0095062255859E-5) ["count"]=> int(1) }
Output for 5.5.20
test<br>array(3) { ["total_time"]=> float(0.021299839019775) ["average_time"]=> float(0.021302938461304) ["count"]=> int(1) }
Output for 5.5.19
test<br>array(3) { ["total_time"]=> float(5.9843063354492E-5) ["average_time"]=> float(6.1988830566406E-5) ["count"]=> int(1) }
Output for 5.5.18
test<br>array(3) { ["total_time"]=> float(4.6968460083008E-5) ["average_time"]=> float(4.887580871582E-5) ["count"]=> int(1) }
Output for 5.5.17
test<br>array(3) { ["total_time"]=> float(7.0095062255859E-5) ["average_time"]=> float(7.2002410888672E-5) ["count"]=> int(1) }
Output for 5.5.15
test<br>array(3) { ["total_time"]=> float(4.3153762817383E-5) ["average_time"]=> float(4.4107437133789E-5) ["count"]=> int(1) }
Output for 5.4.12, 5.5.13
test<br>array(3) { ["total_time"]=> float(4.1961669921875E-5) ["average_time"]=> float(4.3153762817383E-5) ["count"]=> int(1) }
Output for 5.4.16, 5.5.11
test<br>array(3) { ["total_time"]=> float(4.9114227294922E-5) ["average_time"]=> float(5.1021575927734E-5) ["count"]=> int(1) }
Output for 5.4.23, 5.5.10
test<br>array(3) { ["total_time"]=> float(6.1988830566406E-5) ["average_time"]=> float(6.3896179199219E-5) ["count"]=> int(1) }
Output for 5.5.9
test<br>array(3) { ["total_time"]=> float(3.8862228393555E-5) ["average_time"]=> float(3.9815902709961E-5) ["count"]=> int(1) }
Output for 5.5.8
test<br>array(3) { ["total_time"]=> float(4.6014785766602E-5) ["average_time"]=> float(4.6968460083008E-5) ["count"]=> int(1) }
Output for 5.5.6
test<br>array(3) { ["total_time"]=> float(4.4822692871094E-5) ["average_time"]=> float(5.0783157348633E-5) ["count"]=> int(1) }
Output for 5.5.4
test<br>array(3) { ["total_time"]=> float(4.6014785766602E-5) ["average_time"]=> float(4.7206878662109E-5) ["count"]=> int(1) }
Output for 5.4.0, 5.5.2
test<br>array(3) { ["total_time"]=> float(5.8889389038086E-5) ["average_time"]=> float(6.103515625E-5) ["count"]=> int(1) }
Output for 5.5.0
test<br>array(3) { ["total_time"]=> float(3.9100646972656E-5) ["average_time"]=> float(4.1007995605469E-5) ["count"]=> int(1) }
Output for 5.4.45
test<br>array(3) { ["total_time"]=> float(5.2928924560547E-5) ["average_time"]=> float(5.3882598876953E-5) ["count"]=> int(1) }
Output for 5.4.44
test<br>array(3) { ["total_time"]=> float(5.8174133300781E-5) ["average_time"]=> float(6.103515625E-5) ["count"]=> int(1) }
Output for 5.4.43
test<br>array(3) { ["total_time"]=> float(6.1988830566406E-5) ["average_time"]=> float(6.413459777832E-5) ["count"]=> int(1) }
Output for 5.4.40
test<br>array(3) { ["total_time"]=> float(5.6028366088867E-5) ["average_time"]=> float(5.6982040405273E-5) ["count"]=> int(1) }
Output for 5.4.39
test<br>array(3) { ["total_time"]=> float(8.4161758422852E-5) ["average_time"]=> float(8.702278137207E-5) ["count"]=> int(1) }
Output for 5.4.38
test<br>array(3) { ["total_time"]=> float(3.8862228393555E-5) ["average_time"]=> float(4.1007995605469E-5) ["count"]=> int(1) }
Output for 5.4.37
test<br>array(3) { ["total_time"]=> float(6.0081481933594E-5) ["average_time"]=> float(6.1988830566406E-5) ["count"]=> int(1) }
Output for 5.4.36
test<br>array(3) { ["total_time"]=> float(5.1975250244141E-5) ["average_time"]=> float(5.3167343139648E-5) ["count"]=> int(1) }
Output for 5.4.35
test<br>array(3) { ["total_time"]=> float(6.9141387939453E-5) ["average_time"]=> float(7.1048736572266E-5) ["count"]=> int(1) }
Output for 5.4.33
test<br>array(3) { ["total_time"]=> float(5.6982040405273E-5) ["average_time"]=> float(5.793571472168E-5) ["count"]=> int(1) }
Output for 5.4.32
test<br>array(3) { ["total_time"]=> float(6.3180923461914E-5) ["average_time"]=> float(6.5088272094727E-5) ["count"]=> int(1) }
Output for 5.4.30
test<br>array(3) { ["total_time"]=> float(5.2928924560547E-5) ["average_time"]=> float(5.4836273193359E-5) ["count"]=> int(1) }
Output for 5.4.29
test<br>array(3) { ["total_time"]=> float(5.6982040405273E-5) ["average_time"]=> float(5.8174133300781E-5) ["count"]=> int(1) }
Output for 5.4.27
test<br>array(3) { ["total_time"]=> float(6.2942504882812E-5) ["average_time"]=> float(6.5088272094727E-5) ["count"]=> int(1) }
Output for 5.4.26
test<br>array(3) { ["total_time"]=> float(2.9087066650391E-5) ["average_time"]=> float(3.0040740966797E-5) ["count"]=> int(1) }
Output for 5.4.5, 5.4.24
test<br>array(3) { ["total_time"]=> float(5.793571472168E-5) ["average_time"]=> float(5.9843063354492E-5) ["count"]=> int(1) }
Output for 5.4.22
test<br>array(3) { ["total_time"]=> float(4.0054321289062E-5) ["average_time"]=> float(4.2200088500977E-5) ["count"]=> int(1) }
Output for 5.4.20
test<br>array(3) { ["total_time"]=> float(4.1961669921875E-5) ["average_time"]=> float(4.2915344238281E-5) ["count"]=> int(1) }
Output for 5.4.19
test<br>array(3) { ["total_time"]=> float(5.6028366088867E-5) ["average_time"]=> float(5.9127807617188E-5) ["count"]=> int(1) }
Output for 5.4.18
test<br>array(3) { ["total_time"]=> float(3.0040740966797E-5) ["average_time"]=> float(3.2186508178711E-5) ["count"]=> int(1) }
Output for 5.4.17
test<br>array(3) { ["total_time"]=> float(7.4863433837891E-5) ["average_time"]=> float(7.7009201049805E-5) ["count"]=> int(1) }
Output for 5.4.15
test<br>array(3) { ["total_time"]=> float(3.7908554077148E-5) ["average_time"]=> float(3.8862228393555E-5) ["count"]=> int(1) }
Output for 5.4.14
test<br>array(3) { ["total_time"]=> float(6.1988830566406E-5) ["average_time"]=> float(6.2942504882812E-5) ["count"]=> int(1) }
Output for 5.4.11
test<br>array(3) { ["total_time"]=> float(5.5074691772461E-5) ["average_time"]=> float(5.6028366088867E-5) ["count"]=> int(1) }
Output for 5.4.10
test<br>array(3) { ["total_time"]=> float(5.2213668823242E-5) ["average_time"]=> float(5.4121017456055E-5) ["count"]=> int(1) }
Output for 5.4.8
test<br>array(3) { ["total_time"]=> float(4.6968460083008E-5) ["average_time"]=> float(4.9114227294922E-5) ["count"]=> int(1) }
Output for 5.4.6
test<br>array(3) { ["total_time"]=> float(5.6028366088867E-5) ["average_time"]=> float(5.8174133300781E-5) ["count"]=> int(1) }
Output for 5.4.4
test<br>array(3) { ["total_time"]=> float(7.5817108154297E-5) ["average_time"]=> float(7.7962875366211E-5) ["count"]=> int(1) }
Output for 5.4.1
test<br>array(3) { ["total_time"]=> float(4.8160552978516E-5) ["average_time"]=> float(4.9114227294922E-5) ["count"]=> int(1) }
Output for 5.3.29
test<br>array(3) { ["total_time"]=> float(-6.0796737670898E-5) ["average_time"]=> float(-5.8889389038086E-5) ["count"]=> int(1) }
Output for 5.3.28
test<br>array(3) { ["total_time"]=> float(-3.9815902709961E-5) ["average_time"]=> float(-3.6954879760742E-5) ["count"]=> int(1) }
Output for 5.3.27
test<br>array(3) { ["total_time"]=> float(-5.0783157348633E-5) ["average_time"]=> float(-4.887580871582E-5) ["count"]=> int(1) }
Output for 5.3.26
test<br>array(3) { ["total_time"]=> float(-7.7009201049805E-5) ["average_time"]=> float(-7.5817108154297E-5) ["count"]=> int(1) }
Output for 5.3.25
test<br>array(3) { ["total_time"]=> float(-5.5789947509766E-5) ["average_time"]=> float(-5.3882598876953E-5) ["count"]=> int(1) }
Output for 5.3.24
test<br>array(3) { ["total_time"]=> float(-5.8889389038086E-5) ["average_time"]=> float(-5.793571472168E-5) ["count"]=> int(1) }
Output for 5.3.23
test<br>array(3) { ["total_time"]=> float(-5.8889389038086E-5) ["average_time"]=> float(-5.5789947509766E-5) ["count"]=> int(1) }
Output for 5.3.22
test<br>array(3) { ["total_time"]=> float(-7.5817108154297E-5) ["average_time"]=> float(-6.6995620727539E-5) ["count"]=> int(1) }
Output for 5.3.17, 5.3.21
test<br>array(3) { ["total_time"]=> float(-6.9856643676758E-5) ["average_time"]=> float(-5.8889389038086E-5) ["count"]=> int(1) }
Output for 5.3.20
test<br>array(3) { ["total_time"]=> float(-7.2002410888672E-5) ["average_time"]=> float(-5.8889389038086E-5) ["count"]=> int(1) }
Output for 5.3.19
test<br>array(3) { ["total_time"]=> float(-7.2956085205078E-5) ["average_time"]=> float(-6.3896179199219E-5) ["count"]=> int(1) }
Output for 5.3.18
test<br>array(3) { ["total_time"]=> float(-7.0810317993164E-5) ["average_time"]=> float(-5.793571472168E-5) ["count"]=> int(1) }
Output for 5.3.16
test<br>array(3) { ["total_time"]=> float(-6.2942504882812E-5) ["average_time"]=> float(-4.887580871582E-5) ["count"]=> int(1) }
Output for 5.3.15
test<br>array(3) { ["total_time"]=> float(-7.3909759521484E-5) ["average_time"]=> float(-6.4849853515625E-5) ["count"]=> int(1) }
Output for 5.3.14
test<br>array(3) { ["total_time"]=> float(-6.4849853515625E-5) ["average_time"]=> float(-4.9829483032227E-5) ["count"]=> int(1) }
Output for 5.3.13
test<br>array(3) { ["total_time"]=> float(-6.4849853515625E-5) ["average_time"]=> float(-5.793571472168E-5) ["count"]=> int(1) }
Output for 5.3.12
test<br>array(3) { ["total_time"]=> float(-4.4822692871094E-5) ["average_time"]=> float(-3.4809112548828E-5) ["count"]=> int(1) }
Output for 5.3.11
test<br>array(3) { ["total_time"]=> float(-4.887580871582E-5) ["average_time"]=> float(-4.1007995605469E-5) ["count"]=> int(1) }
Output for 5.3.10
test<br>array(3) { ["total_time"]=> float(-4.1007995605469E-5) ["average_time"]=> float(-3.1948089599609E-5) ["count"]=> int(1) }
Output for 5.3.9
test<br>array(3) { ["total_time"]=> float(-3.1948089599609E-5) ["average_time"]=> float(-2.598762512207E-5) ["count"]=> int(1) }
Output for 5.3.8
test<br>array(3) { ["total_time"]=> float(-5.1975250244141E-5) ["average_time"]=> float(-4.3869018554688E-5) ["count"]=> int(1) }
Output for 5.3.7
test<br>array(3) { ["total_time"]=> float(-4.3869018554688E-5) ["average_time"]=> float(-3.3855438232422E-5) ["count"]=> int(1) }
Output for 5.3.6
test<br>array(3) { ["total_time"]=> float(-4.4822692871094E-5) ["average_time"]=> float(-4.2915344238281E-5) ["count"]=> int(1) }
Output for 5.3.5
test<br>array(3) { ["total_time"]=> float(-6.6995620727539E-5) ["average_time"]=> float(-6.0796737670898E-5) ["count"]=> int(1) }
Output for 5.3.4
test<br>array(3) { ["total_time"]=> float(-6.7949295043945E-5) ["average_time"]=> float(-6.2942504882812E-5) ["count"]=> int(1) }
Output for 5.3.3
test<br>array(3) { ["total_time"]=> float(-4.2915344238281E-5) ["average_time"]=> float(-3.1948089599609E-5) ["count"]=> int(1) }
Output for 5.3.2
test<br>array(3) { ["total_time"]=> float(-4.4822692871094E-5) ["average_time"]=> float(-4.1961669921875E-5) ["count"]=> int(1) }
Output for 5.3.1
test<br>array(3) { ["total_time"]=> float(-4.3869018554688E-5) ["average_time"]=> float(-3.4809112548828E-5) ["count"]=> int(1) }
Output for 5.3.0
test<br>array(3) { ["total_time"]=> float(-5.4836273193359E-5) ["average_time"]=> float(-4.4822692871094E-5) ["count"]=> int(1) }
Output for 5.2.17
test<br>array(3) { ["total_time"]=> float(-5.1975250244141E-5) ["average_time"]=> float(-4.9829483032227E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.16
test<br>array(3) { ["total_time"]=> float(-6.4849853515625E-5) ["average_time"]=> float(-6.2942504882812E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.15
test<br>array(3) { ["total_time"]=> float(-5.2928924560547E-5) ["average_time"]=> float(-5.0783157348633E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.14
test<br>array(3) { ["total_time"]=> float(-7.4863433837891E-5) ["average_time"]=> float(-7.3909759521484E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.13
test<br>array(3) { ["total_time"]=> float(-6.9856643676758E-5) ["average_time"]=> float(-6.7949295043945E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.12
test<br>array(3) { ["total_time"]=> float(-7.0810317993164E-5) ["average_time"]=> float(-6.9856643676758E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.10 - 5.2.11
test<br>array(3) { ["total_time"]=> float(-4.9829483032227E-5) ["average_time"]=> float(-4.6968460083008E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.9
test<br>array(3) { ["total_time"]=> float(-5.6982040405273E-5) ["average_time"]=> float(-5.4836273193359E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.8
test<br>array(3) { ["total_time"]=> float(-4.1007995605469E-5) ["average_time"]=> float(-3.7908554077148E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.7
test<br>array(3) { ["total_time"]=> float(-4.6014785766602E-5) ["average_time"]=> float(-4.3869018554688E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.6
test<br>array(3) { ["total_time"]=> float(-5.793571472168E-5) ["average_time"]=> float(-5.5789947509766E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.5
test<br>array(3) { ["total_time"]=> float(-4.9829483032227E-5) ["average_time"]=> float(-4.1961669921875E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.4
test<br>array(3) { ["total_time"]=> float(-6.0796737670898E-5) ["average_time"]=> float(-5.8889389038086E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.3
test<br>array(3) { ["total_time"]=> float(-5.8889389038086E-5) ["average_time"]=> float(-5.5789947509766E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.2
test<br>array(3) { ["total_time"]=> float(3.7908554077148E-5) ["average_time"]=> float(4.1007995605469E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.1
test<br>array(3) { ["total_time"]=> float(3.4809112548828E-5) ["average_time"]=> float(3.6954879760742E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.2.0
test<br>array(3) { ["total_time"]=> float(3.3855438232422E-5) ["average_time"]=> float(3.4809112548828E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.1.6
test<br>array(3) { ["total_time"]=> float(4.5061111450195E-5) ["average_time"]=> float(4.7206878662109E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.1.5
test<br>array(3) { ["total_time"]=> float(5.0067901611328E-5) ["average_time"]=> float(5.2928924560547E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.1.4
test<br>array(3) { ["total_time"]=> float(4.1007995605469E-5) ["average_time"]=> float(4.2915344238281E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.1.3
test<br>array(3) { ["total_time"]=> float(3.6954879760742E-5) ["average_time"]=> float(3.9100646972656E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.1.2
test<br>array(3) { ["total_time"]=> float(4.1961669921875E-5) ["average_time"]=> float(4.5061111450195E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.1.1
test<br>array(3) { ["total_time"]=> float(4.1961669921875E-5) ["average_time"]=> float(4.3869018554688E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.1.0
Fatal error: fatal flex scanner internal error--end of buffer missed in /in/mkkJt on line 24
Process exited with code 255.
Output for 5.0.5
test<br>array(3) { ["total_time"]=> float(2.6941299438477E-5) ["average_time"]=> float(2.8848648071289E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.0.4
test<br>array(3) { ["total_time"]=> float(3.9815902709961E-5) ["average_time"]=> float(4.2915344238281E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.0.3
test<br>array(3) { ["total_time"]=> float(4.6014785766602E-5) ["average_time"]=> float(4.9114227294922E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.0.2
test<br>array(3) { ["total_time"]=> float(4.4822692871094E-5) ["average_time"]=> float(4.7922134399414E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.0.1
test<br>array(3) { ["total_time"]=> float(4.1007995605469E-5) ["average_time"]=> float(4.4107437133789E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 5.0.0
test<br>array(3) { ["total_time"]=> float(4.7206878662109E-5) ["average_time"]=> float(5.0067901611328E-5) ["count"]=> int(1) } Fatal error: Call to undefined function gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.4.9
test<br>array(3) { ["total_time"]=> float(5.0E-5) ["average_time"]=> float(5.6E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.4.8
test<br>array(3) { ["total_time"]=> float(4.1E-5) ["average_time"]=> float(4.7E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.4.7
test<br>array(3) { ["total_time"]=> float(5.9E-5) ["average_time"]=> float(6.5E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.4.6
test<br>array(3) { ["total_time"]=> float(5.9E-5) ["average_time"]=> float(6.8E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.4.5
test<br>array(3) { ["total_time"]=> float(4.3E-5) ["average_time"]=> float(4.7E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.4.4
test<br>array(3) { ["total_time"]=> float(3.7E-5) ["average_time"]=> float(4.1E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.4.3
test<br>array(3) { ["total_time"]=> float(5.0E-5) ["average_time"]=> float(5.5E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.4.2
test<br>array(3) { ["total_time"]=> float(5.0E-5) ["average_time"]=> float(5.6E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.3.11, 4.4.1
test<br>array(3) { ["total_time"]=> float(4.8E-5) ["average_time"]=> float(5.4E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.4.0
test<br>array(3) { ["total_time"]=> float(4.0E-5) ["average_time"]=> float(4.6E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.3.10
test<br>array(3) { ["total_time"]=> float(5.6E-5) ["average_time"]=> float(6.4E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.3.9
test<br>array(3) { ["total_time"]=> float(4.9E-5) ["average_time"]=> float(6.5E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.3.8
test<br>array(3) { ["total_time"]=> float(4.8E-5) ["average_time"]=> float(5.7E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.3.7
test<br>array(3) { ["total_time"]=> float(4.1E-5) ["average_time"]=> float(4.9E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.3.6
test<br>array(3) { ["total_time"]=> float(5.0E-5) ["average_time"]=> float(6.0E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.3.5
test<br>array(3) { ["total_time"]=> float(4.5E-5) ["average_time"]=> float(5.2E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.3.4
test<br>array(3) { ["total_time"]=> float(3.6E-5) ["average_time"]=> float(4.1E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.3.3
test<br>array(3) { ["total_time"]=> float(4.2E-5) ["average_time"]=> float(5.0E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.3.2
test<br>array(3) { ["total_time"]=> float(2.7E-5) ["average_time"]=> float(3.2E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Process exited with code 255.
Output for 4.3.1
test<br>array(3) { ["total_time"]=> float(3.8E-5) ["average_time"]=> float(4.5E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23
Output for 4.3.0
test<br>array(3) { ["total_time"]=> float(5.1E-5) ["average_time"]=> float(6.E-5) ["count"]=> int(1) } Fatal error: Call to undefined function: gc_collect_cycles() in /in/mkkJt on line 23

preferences:
185.9 ms | 401 KiB | 288 Q