3v4l.org

run code in 300+ PHP versions simultaneously
<?php $test_data_1k = array_fill( 0, 1000, 'X' ); function fastcount( &$array ) { end($array); $k = key($array); reset($array); return $k; } function bench( $reps, &$data, $callback ) { $start_t = microtime(true); ob_start(); for( $i = 0; $i < $reps; $i++ ) { call_user_func( $callback, $data ); } ob_end_clean(); $total_t = microtime(true) - $start_t; return $total_t; } function while_each( &$data ) { while( $i = each($data) ) { echo $i[1]; } } function foreach_loop( &$data ) { foreach( $data as &$item ) { echo $item; } } function indexed_foreach_loop( &$data ) { foreach( $data as $i => &$x ) { echo $data[$i]; } } function optimal_loop( &$data ) { for( $i = 0, $max = count($data); $i < $max; $i++ ) { echo $data[$i]; } } function inlined_fastcount( &$data ) { end($data); $max = key($data); for( $i = 0; $i <= $max; $i++ ) { echo $data[$i]; } } function iterator_with_fastcount( &$data ) { for( $i = 0; $i < fastcount($data); $i++ ) { echo $data[$i]; } } function iterator_with_count( &$data ) { for( $i = 0; $i < count($data); $i++ ) { echo $data[$i]; } } echo 'Foreach: ' . bench( 10, $test_data_1k, 'foreach_loop' ) . "\n"; echo 'Indexed Foreach: ' . bench( 10, $test_data_1k, 'indexed_foreach_loop' ) . "\n"; echo 'Inlined FastCount: ' . bench( 10, $test_data_1k, 'inlined_fastcount' ) . "\n"; echo 'Optimal Loop: ' . bench( 10, $test_data_1k, 'optimal_loop' ) . "\n"; echo 'While-Each: ' . bench( 10, $test_data_1k, 'while_each' ) . "\n"; echo 'With FastCount: ' . bench( 10, $test_data_1k, 'iterator_with_fastcount' ) . "\n"; echo 'With Count: ' . bench( 10, $test_data_1k, 'iterator_with_count' ) . "\n";
Output for 7.4.1
Foreach: 0.000885009765625 Indexed Foreach: 0.00081419944763184 Inlined FastCount: 0.00056099891662598 Optimal Loop: 0.00050997734069824 While-Each: 0.0026280879974365 With FastCount: 0.0029938220977783 With Count: 0.00084996223449707
Output for 7.4.0
Foreach: 0.00081610679626465 Indexed Foreach: 0.0007631778717041 Inlined FastCount: 0.00047492980957031 Optimal Loop: 0.00041294097900391 While-Each: 0.0016748905181885 With FastCount: 0.0025029182434082 With Count: 0.00077700614929199
Output for 7.3.13
Foreach: 0.0010969638824463 Indexed Foreach: 0.001021146774292 Inlined FastCount: 0.0007319450378418 Optimal Loop: 0.00065112113952637 While-Each: 0.0026829242706299 With FastCount: 0.0026202201843262 With Count: 0.00060200691223145
Output for 7.3.12
Foreach: 0.0012481212615967 Indexed Foreach: 0.0015110969543457 Inlined FastCount: 0.00080299377441406 Optimal Loop: 0.00070786476135254 While-Each: 0.0030999183654785 With FastCount: 0.0029640197753906 With Count: 0.00084710121154785
Output for 7.3.11
Foreach: 0.0011148452758789 Indexed Foreach: 0.001086950302124 Inlined FastCount: 0.00070595741271973 Optimal Loop: 0.0006248950958252 While-Each: 0.0030179023742676 With FastCount: 0.0028939247131348 With Count: 0.000762939453125
Output for 7.3.10
Foreach: 0.0011708736419678 Indexed Foreach: 0.00074505805969238 Inlined FastCount: 0.00048613548278809 Optimal Loop: 0.00042605400085449 While-Each: 0.0016801357269287 With FastCount: 0.0018150806427002 With Count: 0.00047683715820312
Output for 7.3.9
Foreach: 0.00079894065856934 Indexed Foreach: 0.00072312355041504 Inlined FastCount: 0.00049495697021484 Optimal Loop: 0.00043487548828125 While-Each: 0.0017778873443604 With FastCount: 0.0017440319061279 With Count: 0.00048708915710449
Output for 7.3.8
Foreach: 0.001594066619873 Indexed Foreach: 0.0012049674987793 Inlined FastCount: 0.00051188468933105 Optimal Loop: 0.00045490264892578 While-Each: 0.0017731189727783 With FastCount: 0.0017859935760498 With Count: 0.00049901008605957
Output for 7.3.7
Foreach: 0.0012059211730957 Indexed Foreach: 0.0011520385742188 Inlined FastCount: 0.0008540153503418 Optimal Loop: 0.00072407722473145 While-Each: 0.0026910305023193 With FastCount: 0.0021321773529053 With Count: 0.00054383277893066
Output for 7.3.6
Foreach: 0.00079083442687988 Indexed Foreach: 0.00072693824768066 Inlined FastCount: 0.00050616264343262 Optimal Loop: 0.00043988227844238 While-Each: 0.0016729831695557 With FastCount: 0.0017900466918945 With Count: 0.0005190372467041
Output for 7.3.5
Foreach: 0.0009770393371582 Indexed Foreach: 0.00092792510986328 Inlined FastCount: 0.00059294700622559 Optimal Loop: 0.00051498413085938 While-Each: 0.0020480155944824 With FastCount: 0.0023980140686035 With Count: 0.00059700012207031
Output for 7.3.4
Foreach: 0.0019271373748779 Indexed Foreach: 0.00076198577880859 Inlined FastCount: 0.00051617622375488 Optimal Loop: 0.00044608116149902 While-Each: 0.0017380714416504 With FastCount: 0.0018391609191895 With Count: 0.0004880428314209
Output for 7.3.3
Foreach: 0.0010812282562256 Indexed Foreach: 0.0010838508605957 Inlined FastCount: 0.00079917907714844 Optimal Loop: 0.00069594383239746 While-Each: 0.0030138492584229 With FastCount: 0.0028400421142578 With Count: 0.00084805488586426
Output for 7.3.2
Foreach: 0.0010998249053955 Indexed Foreach: 0.00072693824768066 Inlined FastCount: 0.00049304962158203 Optimal Loop: 0.00042605400085449 While-Each: 0.0017061233520508 With FastCount: 0.0017659664154053 With Count: 0.00048112869262695
Output for 7.3.1
Foreach: 0.0013248920440674 Indexed Foreach: 0.000762939453125 Inlined FastCount: 0.00049495697021484 Optimal Loop: 0.00044012069702148 While-Each: 0.0016307830810547 With FastCount: 0.0018069744110107 With Count: 0.00049304962158203
Output for 7.3.0
Foreach: 0.00078511238098145 Indexed Foreach: 0.00073790550231934 Inlined FastCount: 0.00048303604125977 Optimal Loop: 0.00043797492980957 While-Each: 0.0016379356384277 With FastCount: 0.0017919540405273 With Count: 0.00048589706420898
Output for 7.2.26
Foreach: 0.0011451244354248 Indexed Foreach: 0.0014138221740723 Inlined FastCount: 0.00080490112304688 Optimal Loop: 0.00068902969360352 While-Each: 0.0032889842987061 With FastCount: 0.0030350685119629 With Count: 0.0008091926574707
Output for 7.2.25
Foreach: 0.0012059211730957 Indexed Foreach: 0.0014400482177734 Inlined FastCount: 0.00082898139953613 Optimal Loop: 0.00071382522583008 While-Each: 0.0025749206542969 With FastCount: 0.0018908977508545 With Count: 0.00082182884216309
Output for 7.2.24
Foreach: 0.00077700614929199 Indexed Foreach: 0.00095796585083008 Inlined FastCount: 0.00049519538879395 Optimal Loop: 0.00042390823364258 While-Each: 0.0018918514251709 With FastCount: 0.002100944519043 With Count: 0.00046992301940918
Output for 7.2.23
Foreach: 0.00088810920715332 Indexed Foreach: 0.0010831356048584 Inlined FastCount: 0.00060105323791504 Optimal Loop: 0.00050711631774902 While-Each: 0.0022428035736084 With FastCount: 0.0023140907287598 With Count: 0.00062298774719238
Output for 7.2.22
Foreach: 0.0014479160308838 Indexed Foreach: 0.0016369819641113 Inlined FastCount: 0.00085806846618652 Optimal Loop: 0.00072503089904785 While-Each: 0.0027649402618408 With FastCount: 0.0024468898773193 With Count: 0.00058197975158691
Output for 7.2.21
Foreach: 0.0014259815216064 Indexed Foreach: 0.0016829967498779 Inlined FastCount: 0.0010168552398682 Optimal Loop: 0.00079798698425293 While-Each: 0.0026249885559082 With FastCount: 0.0020599365234375 With Count: 0.00049996376037598
Output for 7.2.20
Foreach: 0.00094985961914062 Indexed Foreach: 0.0011048316955566 Inlined FastCount: 0.00063896179199219 Optimal Loop: 0.00050902366638184 While-Each: 0.0021669864654541 With FastCount: 0.0023438930511475 With Count: 0.00055599212646484
Output for 7.2.19
Foreach: 0.00098013877868652 Indexed Foreach: 0.001201868057251 Inlined FastCount: 0.00063610076904297 Optimal Loop: 0.00056600570678711 While-Each: 0.0023288726806641 With FastCount: 0.0025780200958252 With Count: 0.00065016746520996
Output for 7.2.18
Foreach: 0.00091099739074707 Indexed Foreach: 0.0011081695556641 Inlined FastCount: 0.00056004524230957 Optimal Loop: 0.0005340576171875 While-Each: 0.002169132232666 With FastCount: 0.0023148059844971 With Count: 0.00056886672973633
Output for 7.2.17
Foreach: 0.00092411041259766 Indexed Foreach: 0.0011031627655029 Inlined FastCount: 0.00058197975158691 Optimal Loop: 0.0004880428314209 While-Each: 0.0022809505462646 With FastCount: 0.0024001598358154 With Count: 0.00064611434936523
Output for 7.2.16
Foreach: 0.00080704689025879 Indexed Foreach: 0.00095891952514648 Inlined FastCount: 0.00052309036254883 Optimal Loop: 0.00043988227844238 While-Each: 0.0018680095672607 With FastCount: 0.0020530223846436 With Count: 0.00053000450134277
Output for 7.2.15
Foreach: 0.00077915191650391 Indexed Foreach: 0.00096893310546875 Inlined FastCount: 0.00049996376037598 Optimal Loop: 0.00043296813964844 While-Each: 0.0018768310546875 With FastCount: 0.0020239353179932 With Count: 0.00047492980957031
Output for 7.2.14
Foreach: 0.0011610984802246 Indexed Foreach: 0.0010988712310791 Inlined FastCount: 0.00048398971557617 Optimal Loop: 0.0004279613494873 While-Each: 0.0018770694732666 With FastCount: 0.001986026763916 With Count: 0.0004730224609375
Output for 7.2.13
Foreach: 0.00093698501586914 Indexed Foreach: 0.0013790130615234 Inlined FastCount: 0.00069403648376465 Optimal Loop: 0.00062394142150879 While-Each: 0.0028738975524902 With FastCount: 0.0022130012512207 With Count: 0.00048398971557617
Output for 7.2.12
Foreach: 0.0015480518341064 Indexed Foreach: 0.00094294548034668 Inlined FastCount: 0.0005190372467041 Optimal Loop: 0.00043606758117676 While-Each: 0.0018789768218994 With FastCount: 0.0019841194152832 With Count: 0.00051307678222656
Output for 7.2.11
Foreach: 0.0013351440429688 Indexed Foreach: 0.0016839504241943 Inlined FastCount: 0.00081419944763184 Optimal Loop: 0.00072288513183594 While-Each: 0.0025179386138916 With FastCount: 0.0019600391387939 With Count: 0.00051403045654297
Output for 7.2.10
Foreach: 0.0010309219360352 Indexed Foreach: 0.0011820793151855 Inlined FastCount: 0.00066590309143066 Optimal Loop: 0.0006098747253418 While-Each: 0.0024819374084473 With FastCount: 0.0026400089263916 With Count: 0.00068783760070801
Output for 7.2.9
Foreach: 0.00077700614929199 Indexed Foreach: 0.00093817710876465 Inlined FastCount: 0.00049114227294922 Optimal Loop: 0.00043201446533203 While-Each: 0.0019450187683105 With FastCount: 0.0019741058349609 With Count: 0.00047683715820312
Output for 7.2.8
Foreach: 0.00080084800720215 Indexed Foreach: 0.00095105171203613 Inlined FastCount: 0.00051307678222656 Optimal Loop: 0.00044608116149902 While-Each: 0.0019919872283936 With FastCount: 0.0020599365234375 With Count: 0.00049710273742676
Output for 7.2.7
Foreach: 0.0011789798736572 Indexed Foreach: 0.0014088153839111 Inlined FastCount: 0.00073003768920898 Optimal Loop: 0.00065302848815918 While-Each: 0.0027840137481689 With FastCount: 0.0023469924926758 With Count: 0.00047492980957031
Output for 7.2.6
Foreach: 0.0019199848175049 Indexed Foreach: 0.0009610652923584 Inlined FastCount: 0.00049495697021484 Optimal Loop: 0.0004420280456543 While-Each: 0.0018608570098877 With FastCount: 0.0020740032196045 With Count: 0.00050711631774902
Output for 7.2.5
Foreach: 0.00078701972961426 Indexed Foreach: 0.00096487998962402 Inlined FastCount: 0.00050902366638184 Optimal Loop: 0.00043988227844238 While-Each: 0.0018899440765381 With FastCount: 0.0020041465759277 With Count: 0.00049185752868652
Output for 7.2.4
Foreach: 0.0010809898376465 Indexed Foreach: 0.0013220310211182 Inlined FastCount: 0.00069212913513184 Optimal Loop: 0.00061678886413574 While-Each: 0.0025720596313477 With FastCount: 0.0028741359710693 With Count: 0.00072002410888672
Output for 7.2.3
Foreach: 0.00094795227050781 Indexed Foreach: 0.0011858940124512 Inlined FastCount: 0.00063705444335938 Optimal Loop: 0.000579833984375 While-Each: 0.0023159980773926 With FastCount: 0.0024571418762207 With Count: 0.00063610076904297
Output for 7.2.2
Foreach: 0.0015020370483398 Indexed Foreach: 0.0015859603881836 Inlined FastCount: 0.00076985359191895 Optimal Loop: 0.00072002410888672 While-Each: 0.0027668476104736 With FastCount: 0.0024039745330811 With Count: 0.00075912475585938
Output for 7.2.1
Foreach: 0.00077581405639648 Indexed Foreach: 0.00095391273498535 Inlined FastCount: 0.00050497055053711 Optimal Loop: 0.00041508674621582 While-Each: 0.0018510818481445 With FastCount: 0.002007007598877 With Count: 0.00048685073852539
Output for 7.2.0
Foreach: 0.0015201568603516 Indexed Foreach: 0.0012290477752686 Inlined FastCount: 0.00054287910461426 Optimal Loop: 0.00048708915710449 While-Each: 0.0020639896392822 With FastCount: 0.00211501121521 With Count: 0.00054502487182617
Output for 7.1.33
Foreach: 0.00088691711425781 Indexed Foreach: 0.0013010501861572 Inlined FastCount: 0.00081300735473633 Optimal Loop: 0.00077581405639648 While-Each: 0.0025908946990967 With FastCount: 0.0030429363250732 With Count: 0.0012691020965576
Output for 7.1.32
Foreach: 0.0010080337524414 Indexed Foreach: 0.0015389919281006 Inlined FastCount: 0.0009150505065918 Optimal Loop: 0.00087904930114746 While-Each: 0.0029008388519287 With FastCount: 0.0034379959106445 With Count: 0.00136399269104
Output for 7.1.31
Foreach: 0.00089907646179199 Indexed Foreach: 0.0013489723205566 Inlined FastCount: 0.00086402893066406 Optimal Loop: 0.00078105926513672 While-Each: 0.0024929046630859 With FastCount: 0.0030200481414795 With Count: 0.0012521743774414
Output for 7.1.30
Foreach: 0.00097513198852539 Indexed Foreach: 0.0014100074768066 Inlined FastCount: 0.00090599060058594 Optimal Loop: 0.00085210800170898 While-Each: 0.0026960372924805 With FastCount: 0.0032708644866943 With Count: 0.0012412071228027
Output for 7.1.29
Foreach: 0.00091719627380371 Indexed Foreach: 0.001276969909668 Inlined FastCount: 0.00083398818969727 Optimal Loop: 0.00079894065856934 While-Each: 0.0028369426727295 With FastCount: 0.0042448043823242 With Count: 0.0017311573028564
Output for 7.1.28
Foreach: 0.002018928527832 Indexed Foreach: 0.0013468265533447 Inlined FastCount: 0.00080180168151855 Optimal Loop: 0.00079178810119629 While-Each: 0.0024871826171875 With FastCount: 0.003040075302124 With Count: 0.0012698173522949
Output for 7.1.27
Foreach: 0.0013530254364014 Indexed Foreach: 0.0017929077148438 Inlined FastCount: 0.0012152194976807 Optimal Loop: 0.0011367797851562 While-Each: 0.0039031505584717 With FastCount: 0.003917932510376 With Count: 0.001244068145752
Output for 7.1.26
Foreach: 0.001007080078125 Indexed Foreach: 0.0014228820800781 Inlined FastCount: 0.00091099739074707 Optimal Loop: 0.00085592269897461 While-Each: 0.0040011405944824 With FastCount: 0.0031979084014893 With Count: 0.001291036605835
Output for 7.1.25
Foreach: 0.0012178421020508 Indexed Foreach: 0.0018610954284668 Inlined FastCount: 0.0011482238769531 Optimal Loop: 0.0010669231414795 While-Each: 0.0034170150756836 With FastCount: 0.0038831233978271 With Count: 0.0012800693511963
Output for 7.1.24
Foreach: 0.0017549991607666 Indexed Foreach: 0.0016410350799561 Inlined FastCount: 0.00092411041259766 Optimal Loop: 0.00084400177001953 While-Each: 0.0028190612792969 With FastCount: 0.0033159255981445 With Count: 0.0014331340789795
Output for 7.1.23
Foreach: 0.0009009838104248 Indexed Foreach: 0.0013000965118408 Inlined FastCount: 0.00096392631530762 Optimal Loop: 0.0007631778717041 While-Each: 0.0025479793548584 With FastCount: 0.0030100345611572 With Count: 0.0013389587402344
Output for 7.1.22
Foreach: 0.0010571479797363 Indexed Foreach: 0.0015029907226562 Inlined FastCount: 0.00096011161804199 Optimal Loop: 0.00089597702026367 While-Each: 0.002957820892334 With FastCount: 0.0034730434417725 With Count: 0.0014829635620117
Output for 7.1.21
Foreach: 0.0013148784637451 Indexed Foreach: 0.001945972442627 Inlined FastCount: 0.001284122467041 Optimal Loop: 0.0011501312255859 While-Each: 0.003715991973877 With FastCount: 0.0033130645751953 With Count: 0.0012509822845459
Output for 7.1.20
Foreach: 0.0017380714416504 Indexed Foreach: 0.0013749599456787 Inlined FastCount: 0.00080084800720215 Optimal Loop: 0.00077414512634277 While-Each: 0.0025599002838135 With FastCount: 0.0029609203338623 With Count: 0.0012431144714355
Output for 7.1.19
Foreach: 0.00090599060058594 Indexed Foreach: 0.0012590885162354 Inlined FastCount: 0.00089907646179199 Optimal Loop: 0.00075578689575195 While-Each: 0.0025739669799805 With FastCount: 0.0029909610748291 With Count: 0.0012571811676025
Output for 7.1.18
Foreach: 0.0013871192932129 Indexed Foreach: 0.0020341873168945 Inlined FastCount: 0.0013899803161621 Optimal Loop: 0.0012049674987793 While-Each: 0.003619909286499 With FastCount: 0.0030128955841064 With Count: 0.0013818740844727
Output for 7.1.17
Foreach: 0.0010430812835693 Indexed Foreach: 0.0014579296112061 Inlined FastCount: 0.0010251998901367 Optimal Loop: 0.00084400177001953 While-Each: 0.0027527809143066 With FastCount: 0.0033788681030273 With Count: 0.001417875289917
Output for 7.1.16
Foreach: 0.0020020008087158 Indexed Foreach: 0.0030558109283447 Inlined FastCount: 0.0021400451660156 Optimal Loop: 0.00083208084106445 While-Each: 0.0024900436401367 With FastCount: 0.0029940605163574 With Count: 0.001305103302002
Output for 7.1.15
Foreach: 0.0015311241149902 Indexed Foreach: 0.002100944519043 Inlined FastCount: 0.0012650489807129 Optimal Loop: 0.0012140274047852 While-Each: 0.0035820007324219 With FastCount: 0.0028929710388184 With Count: 0.0012400150299072
Output for 7.1.14
Foreach: 0.0010929107666016 Indexed Foreach: 0.0015718936920166 Inlined FastCount: 0.00098299980163574 Optimal Loop: 0.00095105171203613 While-Each: 0.0030858516693115 With FastCount: 0.0036530494689941 With Count: 0.0013320446014404
Output for 7.1.13
Foreach: 0.0010969638824463 Indexed Foreach: 0.0014529228210449 Inlined FastCount: 0.00090408325195312 Optimal Loop: 0.00083398818969727 While-Each: 0.0027339458465576 With FastCount: 0.0032799243927002 With Count: 0.0013442039489746
Output for 7.1.12
Foreach: 0.0012140274047852 Indexed Foreach: 0.0015599727630615 Inlined FastCount: 0.00086808204650879 Optimal Loop: 0.00082278251647949 While-Each: 0.0027101039886475 With FastCount: 0.0031628608703613 With Count: 0.0013349056243896
Output for 7.1.11
Foreach: 0.0011608600616455 Indexed Foreach: 0.0013368129730225 Inlined FastCount: 0.000823974609375 Optimal Loop: 0.00083398818969727 While-Each: 0.0028059482574463 With FastCount: 0.0031218528747559 With Count: 0.0013179779052734
Output for 7.1.10
Foreach: 0.0016820430755615 Indexed Foreach: 0.0012671947479248 Inlined FastCount: 0.00080609321594238 Optimal Loop: 0.00076794624328613 While-Each: 0.0024471282958984 With FastCount: 0.0029158592224121 With Count: 0.0012772083282471
Output for 7.1.9
Foreach: 0.00093793869018555 Indexed Foreach: 0.0012481212615967 Inlined FastCount: 0.00090622901916504 Optimal Loop: 0.0007319450378418 While-Each: 0.002479076385498 With FastCount: 0.002816915512085 With Count: 0.0012459754943848
Output for 7.1.8
Foreach: 0.0013940334320068 Indexed Foreach: 0.0018839836120605 Inlined FastCount: 0.0011899471282959 Optimal Loop: 0.0010881423950195 While-Each: 0.0033698081970215 With FastCount: 0.0030360221862793 With Count: 0.0013329982757568
Output for 7.1.7
Foreach: 0.0011341571807861 Indexed Foreach: 0.0016281604766846 Inlined FastCount: 0.001133918762207 Optimal Loop: 0.0010740756988525 While-Each: 0.0032739639282227 With FastCount: 0.0035309791564941 With Count: 0.0013110637664795
Output for 7.1.6
Foreach: 0.00087308883666992 Indexed Foreach: 0.0013148784637451 Inlined FastCount: 0.00080108642578125 Optimal Loop: 0.0007631778717041 While-Each: 0.0025019645690918 With FastCount: 0.0029089450836182 With Count: 0.0012469291687012
Output for 7.1.5
Foreach: 0.00087690353393555 Indexed Foreach: 0.0013079643249512 Inlined FastCount: 0.00080680847167969 Optimal Loop: 0.00075602531433105 While-Each: 0.0025391578674316 With FastCount: 0.0029380321502686 With Count: 0.0012819766998291
Output for 7.1.4
Foreach: 0.0010027885437012 Indexed Foreach: 0.0014290809631348 Inlined FastCount: 0.00091385841369629 Optimal Loop: 0.00083494186401367 While-Each: 0.0027649402618408 With FastCount: 0.0032429695129395 With Count: 0.0014381408691406
Output for 7.1.3
Foreach: 0.0013430118560791 Indexed Foreach: 0.0013079643249512 Inlined FastCount: 0.00080204010009766 Optimal Loop: 0.00076103210449219 While-Each: 0.0025649070739746 With FastCount: 0.0028660297393799 With Count: 0.0012631416320801
Output for 7.1.2
Foreach: 0.0015130043029785 Indexed Foreach: 0.0016160011291504 Inlined FastCount: 0.0007939338684082 Optimal Loop: 0.00072598457336426 While-Each: 0.0024368762969971 With FastCount: 0.0031230449676514 With Count: 0.0012259483337402
Output for 7.1.1
Foreach: 0.0015850067138672 Indexed Foreach: 0.0021297931671143 Inlined FastCount: 0.0010519027709961 Optimal Loop: 0.00080299377441406 While-Each: 0.0026531219482422 With FastCount: 0.0031399726867676 With Count: 0.0013151168823242
Output for 7.1.0
Foreach: 0.0016098022460938 Indexed Foreach: 0.0023491382598877 Inlined FastCount: 0.0015909671783447 Optimal Loop: 0.0012259483337402 While-Each: 0.0025110244750977 With FastCount: 0.0028219223022461 With Count: 0.0012178421020508
Output for 7.0.33
Foreach: 0.0014820098876953 Indexed Foreach: 0.0022470951080322 Inlined FastCount: 0.0019521713256836 Optimal Loop: 0.0019299983978271 While-Each: 5.9604644775391E-6 With FastCount: 0.0032820701599121 With Count: 0.0015020370483398
Output for 7.0.32
Foreach: 0.0011970996856689 Indexed Foreach: 0.0018291473388672 Inlined FastCount: 0.0015759468078613 Optimal Loop: 0.0015599727630615 While-Each: 1.0967254638672E-5 With FastCount: 0.0048589706420898 With Count: 0.0015139579772949
Output for 7.0.31
Foreach: 0.000885009765625 Indexed Foreach: 0.0014309883117676 Inlined FastCount: 0.0011210441589355 Optimal Loop: 0.0011329650878906 While-Each: 6.9141387939453E-6 With FastCount: 0.0036919116973877 With Count: 0.0016942024230957
Output for 7.0.30
Foreach: 0.00097513198852539 Indexed Foreach: 0.001176118850708 Inlined FastCount: 0.00098395347595215 Optimal Loop: 0.0010008811950684 While-Each: 5.0067901611328E-6 With FastCount: 0.0032620429992676 With Count: 0.0015449523925781
Output for 7.0.29
Foreach: 0.00074505805969238 Indexed Foreach: 0.0011351108551025 Inlined FastCount: 0.0009758472442627 Optimal Loop: 0.0010170936584473 While-Each: 5.0067901611328E-6 With FastCount: 0.0033609867095947 With Count: 0.0015678405761719
Output for 7.0.28
Foreach: 0.0011398792266846 Indexed Foreach: 0.0015740394592285 Inlined FastCount: 0.0013620853424072 Optimal Loop: 0.0013649463653564 While-Each: 8.1062316894531E-6 With FastCount: 0.0046720504760742 With Count: 0.0020549297332764
Output for 7.0.27
Foreach: 0.0011870861053467 Indexed Foreach: 0.0017600059509277 Inlined FastCount: 0.0015420913696289 Optimal Loop: 0.0015308856964111 While-Each: 7.1525573730469E-6 With FastCount: 0.004892110824585 With Count: 0.001492977142334
Output for 7.0.26
Foreach: 0.00073409080505371 Indexed Foreach: 0.0011389255523682 Inlined FastCount: 0.0010251998901367 Optimal Loop: 0.0010778903961182 While-Each: 5.9604644775391E-6 With FastCount: 0.0034890174865723 With Count: 0.0015830993652344
Output for 7.0.25
Foreach: 0.0011260509490967 Indexed Foreach: 0.0014500617980957 Inlined FastCount: 0.0009620189666748 Optimal Loop: 0.00097179412841797 While-Each: 5.0067901611328E-6 With FastCount: 0.003230094909668 With Count: 0.0014829635620117
Output for 7.0.24
Foreach: 0.0014028549194336 Indexed Foreach: 0.0012080669403076 Inlined FastCount: 0.00099587440490723 Optimal Loop: 0.0010449886322021 While-Each: 5.9604644775391E-6 With FastCount: 0.0033369064331055 With Count: 0.0015320777893066
Output for 7.0.23
Foreach: 0.0013070106506348 Indexed Foreach: 0.0011670589447021 Inlined FastCount: 0.0010628700256348 Optimal Loop: 0.0010309219360352 While-Each: 5.0067901611328E-6 With FastCount: 0.0035560131072998 With Count: 0.0015909671783447
Output for 7.0.22
Foreach: 0.00097203254699707 Indexed Foreach: 0.0014898777008057 Inlined FastCount: 0.0012860298156738 Optimal Loop: 0.0012741088867188 While-Each: 6.9141387939453E-6 With FastCount: 0.0042948722839355 With Count: 0.0019371509552002
Output for 7.0.21
Foreach: 0.001209020614624 Indexed Foreach: 0.001884937286377 Inlined FastCount: 0.0011379718780518 Optimal Loop: 0.0010049343109131 While-Each: 4.0531158447266E-6 With FastCount: 0.0033571720123291 With Count: 0.0015289783477783
Output for 7.0.20
Foreach: 0.0010719299316406 Indexed Foreach: 0.0016689300537109 Inlined FastCount: 0.0014770030975342 Optimal Loop: 0.0014438629150391 While-Each: 1.4066696166992E-5 With FastCount: 0.0045700073242188 With Count: 0.0014710426330566
Output for 7.0.19
Foreach: 0.0009760856628418 Indexed Foreach: 0.0012071132659912 Inlined FastCount: 0.0010318756103516 Optimal Loop: 0.0010721683502197 While-Each: 7.8678131103516E-6 With FastCount: 0.0036718845367432 With Count: 0.0016028881072998
Output for 7.0.18
Foreach: 0.0010201930999756 Indexed Foreach: 0.0016269683837891 Inlined FastCount: 0.0013699531555176 Optimal Loop: 0.0013420581817627 While-Each: 6.9141387939453E-6 With FastCount: 0.0044870376586914 With Count: 0.0020320415496826
Output for 7.0.17
Foreach: 0.0011990070343018 Indexed Foreach: 0.0019309520721436 Inlined FastCount: 0.0016369819641113 Optimal Loop: 0.0016350746154785 While-Each: 1.1920928955078E-5 With FastCount: 0.0043082237243652 With Count: 0.0015499591827393
Output for 7.0.16
Foreach: 0.0012900829315186 Indexed Foreach: 0.0012969970703125 Inlined FastCount: 0.0010471343994141 Optimal Loop: 0.0010859966278076 While-Each: 7.1525573730469E-6 With FastCount: 0.0034720897674561 With Count: 0.0016260147094727
Output for 7.0.15
Foreach: 0.00082302093505859 Indexed Foreach: 0.0013229846954346 Inlined FastCount: 0.0012190341949463 Optimal Loop: 0.0011680126190186 While-Each: 5.9604644775391E-6 With FastCount: 0.0039141178131104 With Count: 0.0017509460449219
Output for 7.0.14
Foreach: 0.0010161399841309 Indexed Foreach: 0.0015192031860352 Inlined FastCount: 0.0012919902801514 Optimal Loop: 0.0012490749359131 While-Each: 9.0599060058594E-6 With FastCount: 0.0038211345672607 With Count: 0.0016088485717773
Output for 7.0.13
Foreach: 0.0012040138244629 Indexed Foreach: 0.001856803894043 Inlined FastCount: 0.0015048980712891 Optimal Loop: 0.0015020370483398 While-Each: 9.7751617431641E-6 With FastCount: 0.0041689872741699 With Count: 0.0017099380493164
Output for 7.0.12
Foreach: 0.0010480880737305 Indexed Foreach: 0.0014910697937012 Inlined FastCount: 0.0012121200561523 Optimal Loop: 0.0011131763458252 While-Each: 8.1062316894531E-6 With FastCount: 0.0043661594390869 With Count: 0.0020430088043213
Output for 7.0.11
Foreach: 0.00082588195800781 Indexed Foreach: 0.0012731552124023 Inlined FastCount: 0.0011451244354248 Optimal Loop: 0.0010910034179688 While-Each: 5.9604644775391E-6 With FastCount: 0.003662109375 With Count: 0.0016510486602783
Output for 7.0.10
Foreach: 0.0011429786682129 Indexed Foreach: 0.0015640258789062 Inlined FastCount: 0.0013599395751953 Optimal Loop: 0.0013551712036133 While-Each: 8.1062316894531E-6 With FastCount: 0.0046308040618896 With Count: 0.0020020008087158
Output for 7.0.9
Foreach: 4.2915344238281E-5 Indexed Foreach: 2.288818359375E-5 Inlined FastCount: 2.0980834960938E-5 Optimal Loop: 2.0980834960938E-5 While-Each: 2.0980834960938E-5 With FastCount: 2.0980834960938E-5 With Count: 2.1934509277344E-5
Output for 7.0.8
Foreach: 0.00080394744873047 Indexed Foreach: 0.0012800693511963 Inlined FastCount: 0.0011138916015625 Optimal Loop: 0.0011131763458252 While-Each: 5.9604644775391E-6 With FastCount: 0.0037760734558105 With Count: 0.0016720294952393
Output for 7.0.7
Foreach: 0.0012009143829346 Indexed Foreach: 0.0016529560089111 Inlined FastCount: 0.0014500617980957 Optimal Loop: 0.0014910697937012 While-Each: 8.1062316894531E-6 With FastCount: 0.0046901702880859 With Count: 0.0021281242370605
Output for 7.0.6
Foreach: 0.0011129379272461 Indexed Foreach: 0.0017180442810059 Inlined FastCount: 0.0014700889587402 Optimal Loop: 0.0014519691467285 While-Each: 6.9141387939453E-6 With FastCount: 0.003896951675415 With Count: 0.0014309883117676
Output for 7.0.5
Foreach: 0.00075793266296387 Indexed Foreach: 0.0011711120605469 Inlined FastCount: 0.0010669231414795 Optimal Loop: 0.00098180770874023 While-Each: 5.0067901611328E-6 With FastCount: 0.0033791065216064 With Count: 0.0014889240264893
Output for 7.0.4
Foreach: 0.0011680126190186 Indexed Foreach: 0.0015919208526611 Inlined FastCount: 0.0014030933380127 Optimal Loop: 0.0014231204986572 While-Each: 7.8678131103516E-6 With FastCount: 0.0046179294586182 With Count: 0.0020589828491211
Output for 7.0.3
Foreach: 0.001086950302124 Indexed Foreach: 0.0017609596252441 Inlined FastCount: 0.0015120506286621 Optimal Loop: 0.001863956451416 While-Each: 1.1920928955078E-5 With FastCount: 0.0065619945526123 With Count: 0.0019989013671875
Output for 7.0.2
Foreach: 0.0014779567718506 Indexed Foreach: 0.0011940002441406 Inlined FastCount: 0.0011279582977295 Optimal Loop: 0.0010979175567627 While-Each: 5.0067901611328E-6 With FastCount: 0.0036869049072266 With Count: 0.0016050338745117
Output for 7.0.1
Foreach: 0.00085687637329102 Indexed Foreach: 0.0013549327850342 Inlined FastCount: 0.001168966293335 Optimal Loop: 0.0012111663818359 While-Each: 6.9141387939453E-6 With FastCount: 0.0039708614349365 With Count: 0.001762866973877
Output for 7.0.0
Foreach: 0.0010519027709961 Indexed Foreach: 0.0016191005706787 Inlined FastCount: 0.0013751983642578 Optimal Loop: 0.0014328956604004 While-Each: 8.1062316894531E-6 With FastCount: 0.0048410892486572 With Count: 0.0021669864654541
Output for 5.6.40
Foreach: 0.0017240047454834 Indexed Foreach: 0.002748966217041 Inlined FastCount: 0.0025680065155029 Optimal Loop: 0.0022339820861816 While-Each: 0.0045909881591797 With FastCount: 0.0062370300292969 With Count: 0.25853490829468
Output for 5.6.39
Foreach: 0.0018050670623779 Indexed Foreach: 0.0023078918457031 Inlined FastCount: 0.0020549297332764 Optimal Loop: 0.0023739337921143 While-Each: 0.0050530433654785 With FastCount: 0.0061941146850586 With Count: 0.27125787734985
Output for 5.6.38
Foreach: 0.0019118785858154 Indexed Foreach: 0.0024008750915527 Inlined FastCount: 0.0020918846130371 Optimal Loop: 0.0022859573364258 While-Each: 0.0051980018615723 With FastCount: 0.0067791938781738 With Count: 0.30233001708984
Output for 5.6.37
Foreach: 0.0017390251159668 Indexed Foreach: 0.0021519660949707 Inlined FastCount: 0.0017859935760498 Optimal Loop: 0.0021557807922363 While-Each: 0.0045759677886963 With FastCount: 0.0062031745910645 With Count: 0.2593948841095
Output for 5.6.36
Foreach: 0.0024521350860596 Indexed Foreach: 0.0030560493469238 Inlined FastCount: 0.002032995223999 Optimal Loop: 0.0023899078369141 While-Each: 0.0051789283752441 With FastCount: 0.0070631504058838 With Count: 0.29376697540283
Output for 5.6.35
Foreach: 0.0017571449279785 Indexed Foreach: 0.0022561550140381 Inlined FastCount: 0.0020208358764648 Optimal Loop: 0.0022170543670654 While-Each: 0.004802942276001 With FastCount: 0.0061750411987305 With Count: 0.25693297386169
Output for 5.6.34
Foreach: 0.0026481151580811 Indexed Foreach: 0.0030739307403564 Inlined FastCount: 0.0024161338806152 Optimal Loop: 0.0029129981994629 While-Each: 0.0052340030670166 With FastCount: 0.0062358379364014 With Count: 0.25854206085205
Output for 5.6.33
Foreach: 0.0026810169219971 Indexed Foreach: 0.0021779537200928 Inlined FastCount: 0.001845121383667 Optimal Loop: 0.0021288394927979 While-Each: 0.0046260356903076 With FastCount: 0.0062329769134521 With Count: 0.2603759765625
Output for 5.6.32
Foreach: 0.0024149417877197 Indexed Foreach: 0.0020480155944824 Inlined FastCount: 0.0017189979553223 Optimal Loop: 0.0020267963409424 While-Each: 0.0044970512390137 With FastCount: 0.0059859752655029 With Count: 0.25125288963318
Output for 5.6.31
Foreach: 0.0024979114532471 Indexed Foreach: 0.003087043762207 Inlined FastCount: 0.0027029514312744 Optimal Loop: 0.0021309852600098 While-Each: 0.0045671463012695 With FastCount: 0.0063340663909912 With Count: 0.26585602760315
Output for 5.6.30
Foreach: 0.0022659301757812 Indexed Foreach: 0.0028688907623291 Inlined FastCount: 0.0025050640106201 Optimal Loop: 0.0025601387023926 While-Each: 0.0045540332794189 With FastCount: 0.0061779022216797 With Count: 0.29040908813477
Output for 5.6.29
Foreach: 0.0016489028930664 Indexed Foreach: 0.0021140575408936 Inlined FastCount: 0.0017859935760498 Optimal Loop: 0.0021169185638428 While-Each: 0.0046539306640625 With FastCount: 0.0061521530151367 With Count: 0.30101203918457
Output for 5.6.28
Foreach: 0.0022339820861816 Indexed Foreach: 0.0020179748535156 Inlined FastCount: 0.0017139911651611 Optimal Loop: 0.002032995223999 While-Each: 0.0043740272521973 With FastCount: 0.0059380531311035 With Count: 0.32202911376953
Output for 5.6.27
Foreach: 0.0024168491363525 Indexed Foreach: 0.0030450820922852 Inlined FastCount: 0.0024430751800537 Optimal Loop: 0.0029098987579346 While-Each: 0.0071799755096436 With FastCount: 0.008929967880249 With Count: 0.27938294410706
Output for 5.6.26
Foreach: 0.0020148754119873 Indexed Foreach: 0.0026209354400635 Inlined FastCount: 0.0022978782653809 Optimal Loop: 0.0026388168334961 While-Each: 0.0053739547729492 With FastCount: 0.0070819854736328 With Count: 0.29561305046082
Output for 5.6.25
Foreach: 0.0025629997253418 Indexed Foreach: 0.0031712055206299 Inlined FastCount: 0.0025200843811035 Optimal Loop: 0.0029840469360352 While-Each: 0.00730299949646 With FastCount: 0.0091331005096436 With Count: 0.33865094184875
Output for 5.6.24
Foreach: 0.0033299922943115 Indexed Foreach: 0.002133846282959 Inlined FastCount: 0.0018689632415771 Optimal Loop: 0.0022118091583252 While-Each: 0.0046389102935791 With FastCount: 0.0062358379364014 With Count: 0.29468297958374
Output for 5.6.23
Foreach: 0.0016682147979736 Indexed Foreach: 0.0020520687103271 Inlined FastCount: 0.0017290115356445 Optimal Loop: 0.0020391941070557 While-Each: 0.0046019554138184 With FastCount: 0.00618577003479 With Count: 0.28960800170898
Output for 5.6.22
Foreach: 0.0025739669799805 Indexed Foreach: 0.0031681060791016 Inlined FastCount: 0.0027318000793457 Optimal Loop: 0.002065896987915 While-Each: 0.0045349597930908 With FastCount: 0.0062630176544189 With Count: 0.26053500175476
Output for 5.6.21
Foreach: 0.001971960067749 Indexed Foreach: 0.0020837783813477 Inlined FastCount: 0.0017330646514893 Optimal Loop: 0.0020458698272705 While-Each: 0.0044760704040527 With FastCount: 0.0061819553375244 With Count: 0.25166392326355
Output for 5.6.20
Foreach: 0.0042622089385986 Indexed Foreach: 0.0054399967193604 Inlined FastCount: 0.0023810863494873 Optimal Loop: 0.0020191669464111 While-Each: 0.0045289993286133 With FastCount: 0.0060179233551025 With Count: 0.27787685394287
Output for 5.6.19
Foreach: 0.0037689208984375 Indexed Foreach: 0.00347900390625 Inlined FastCount: 0.0018730163574219 Optimal Loop: 0.0022358894348145 While-Each: 0.0050630569458008 With FastCount: 0.0067479610443115 With Count: 0.28703808784485
Output for 5.6.18
Foreach: 0.0024909973144531 Indexed Foreach: 0.003119945526123 Inlined FastCount: 0.0024840831756592 Optimal Loop: 0.0028970241546631 While-Each: 0.0075840950012207 With FastCount: 0.0092580318450928 With Count: 0.27947211265564
Output for 5.6.17
Foreach: 0.0056378841400146 Indexed Foreach: 0.0046329498291016 Inlined FastCount: 0.0024020671844482 Optimal Loop: 0.0025079250335693 While-Each: 0.0054819583892822 With FastCount: 0.0082700252532959 With Count: 0.35615491867065
Output for 5.6.16
Foreach: 0.0023229122161865 Indexed Foreach: 0.0022659301757812 Inlined FastCount: 0.0018558502197266 Optimal Loop: 0.0021851062774658 While-Each: 0.0050258636474609 With FastCount: 0.0065510272979736 With Count: 0.28162503242493
Output for 5.6.15
Foreach: 0.0027258396148682 Indexed Foreach: 0.0020899772644043 Inlined FastCount: 0.001723051071167 Optimal Loop: 0.0020060539245605 While-Each: 0.004417896270752 With FastCount: 0.0059959888458252 With Count: 0.32468295097351
Output for 5.6.14
Foreach: 0.0026319026947021 Indexed Foreach: 0.0031869411468506 Inlined FastCount: 0.0024728775024414 Optimal Loop: 0.0029599666595459 While-Each: 0.0073518753051758 With FastCount: 0.0091240406036377 With Count: 0.35159611701965
Output for 5.6.13
Foreach: 0.0025351047515869 Indexed Foreach: 0.0031018257141113 Inlined FastCount: 0.0024290084838867 Optimal Loop: 0.0028729438781738 While-Each: 0.0072100162506104 With FastCount: 0.0089008808135986 With Count: 0.34353995323181
Output for 5.6.12
Foreach: 0.0023958683013916 Indexed Foreach: 0.0031089782714844 Inlined FastCount: 0.0026700496673584 Optimal Loop: 0.002432107925415 While-Each: 0.0044069290161133 With FastCount: 0.0060408115386963 With Count: 0.30482411384583
Output for 5.6.11
Foreach: 0.0030138492584229 Indexed Foreach: 0.002810001373291 Inlined FastCount: 0.0018761157989502 Optimal Loop: 0.0023069381713867 While-Each: 0.0050911903381348 With FastCount: 0.0067591667175293 With Count: 0.28661918640137
Output for 5.6.10
Foreach: 0.0025250911712646 Indexed Foreach: 0.0031039714813232 Inlined FastCount: 0.002432107925415 Optimal Loop: 0.0028791427612305 While-Each: 0.0071330070495605 With FastCount: 0.0088469982147217 With Count: 0.36778497695923
Output for 5.6.9
Foreach: 0.0025279521942139 Indexed Foreach: 0.003058910369873 Inlined FastCount: 0.0023500919342041 Optimal Loop: 0.0028440952301025 While-Each: 0.0071878433227539 With FastCount: 0.0089709758758545 With Count: 0.38077402114868
Output for 5.6.8
Foreach: 0.0028989315032959 Indexed Foreach: 0.0027730464935303 Inlined FastCount: 0.0018050670623779 Optimal Loop: 0.0020461082458496 While-Each: 0.0044491291046143 With FastCount: 0.0060348510742188 With Count: 0.26137280464172
Output for 5.6.7
Foreach: 0.0025711059570312 Indexed Foreach: 0.0030992031097412 Inlined FastCount: 0.0023949146270752 Optimal Loop: 0.0028319358825684 While-Each: 0.007159948348999 With FastCount: 0.0066280364990234 With Count: 0.30564999580383
Output for 5.6.6
Foreach: 0.0020580291748047 Indexed Foreach: 0.0026988983154297 Inlined FastCount: 0.0021610260009766 Optimal Loop: 0.0025649070739746 While-Each: 0.0056378841400146 With FastCount: 0.0066359043121338 With Count: 0.29364395141602
Output for 5.6.5
Foreach: 0.0015919208526611 Indexed Foreach: 0.002032995223999 Inlined FastCount: 0.0017731189727783 Optimal Loop: 0.0020649433135986 While-Each: 0.0044410228729248 With FastCount: 0.0060110092163086 With Count: 0.26741695404053
Output for 5.6.4
Foreach: 0.0017950534820557 Indexed Foreach: 0.0021920204162598 Inlined FastCount: 0.0019040107727051 Optimal Loop: 0.0022580623626709 While-Each: 0.0048630237579346 With FastCount: 0.0064029693603516 With Count: 0.2839469909668
Output for 5.6.3
Foreach: 0.0020899772644043 Indexed Foreach: 0.0020439624786377 Inlined FastCount: 0.0017061233520508 Optimal Loop: 0.002108097076416 While-Each: 0.0044410228729248 With FastCount: 0.0060458183288574 With Count: 0.25366306304932
Output for 5.6.2
Foreach: 0.0025269985198975 Indexed Foreach: 0.0030779838562012 Inlined FastCount: 0.0024001598358154 Optimal Loop: 0.0028541088104248 While-Each: 0.0070931911468506 With FastCount: 0.0087900161743164 With Count: 0.34122490882874
Output for 5.6.1
Foreach: 0.002936840057373 Indexed Foreach: 0.0034639835357666 Inlined FastCount: 0.002263069152832 Optimal Loop: 0.0020220279693604 While-Each: 0.0044729709625244 With FastCount: 0.0059909820556641 With Count: 0.25363993644714
Output for 5.6.0
Foreach: 0.0020771026611328 Indexed Foreach: 0.002561092376709 Inlined FastCount: 0.0021259784698486 Optimal Loop: 0.0021369457244873 While-Each: 0.0044310092926025 With FastCount: 0.0059459209442139 With Count: 0.31837010383606
Output for 5.5.38
Foreach: 0.0025689601898193 Indexed Foreach: 0.0031380653381348 Inlined FastCount: 0.0025019645690918 Optimal Loop: 0.0030341148376465 While-Each: 0.007716178894043 With FastCount: 0.0093080997467041 With Count: 0.28341889381409
Output for 5.5.37
Foreach: 0.0019569396972656 Indexed Foreach: 0.0024881362915039 Inlined FastCount: 0.0021331310272217 Optimal Loop: 0.0021889209747314 While-Each: 0.0049288272857666 With FastCount: 0.0064239501953125 With Count: 0.29275488853455
Output for 5.5.36
Foreach: 0.0026059150695801 Indexed Foreach: 0.0022890567779541 Inlined FastCount: 0.0020580291748047 Optimal Loop: 0.0026161670684814 While-Each: 0.0054540634155273 With FastCount: 0.006962776184082 With Count: 0.30397009849548
Output for 5.5.35
Foreach: 0.0026628971099854 Indexed Foreach: 0.0033559799194336 Inlined FastCount: 0.0027539730072021 Optimal Loop: 0.0021908283233643 While-Each: 0.004889965057373 With FastCount: 0.0063080787658691 With Count: 0.31089496612549
Output for 5.5.34
Foreach: 0.0022571086883545 Indexed Foreach: 0.0020492076873779 Inlined FastCount: 0.0017549991607666 Optimal Loop: 0.0020589828491211 While-Each: 0.004723072052002 With FastCount: 0.0061039924621582 With Count: 0.26445388793945
Output for 5.5.33
Foreach: 0.0026030540466309 Indexed Foreach: 0.0031571388244629 Inlined FastCount: 0.0026581287384033 Optimal Loop: 0.0030038356781006 While-Each: 0.0077409744262695 With FastCount: 0.009227991104126 With Count: 0.29166293144226
Output for 5.5.32
Foreach: 0.0025389194488525 Indexed Foreach: 0.0031039714813232 Inlined FastCount: 0.0024538040161133 Optimal Loop: 0.0029571056365967 While-Each: 0.0079119205474854 With FastCount: 0.0095548629760742 With Count: 0.28529191017151
Output for 5.5.31
Foreach: 0.0024929046630859 Indexed Foreach: 0.0031721591949463 Inlined FastCount: 0.0026710033416748 Optimal Loop: 0.0024580955505371 While-Each: 0.0046510696411133 With FastCount: 0.0060410499572754 With Count: 0.31665086746216
Output for 5.5.30
Foreach: 0.0040140151977539 Indexed Foreach: 0.0021288394927979 Inlined FastCount: 0.001755952835083 Optimal Loop: 0.002094030380249 While-Each: 0.0048439502716064 With FastCount: 0.0063199996948242 With Count: 0.25595784187317
Output for 5.5.29
Foreach: 0.0025870800018311 Indexed Foreach: 0.0029959678649902 Inlined FastCount: 0.0018107891082764 Optimal Loop: 0.0021541118621826 While-Each: 0.0054378509521484 With FastCount: 0.0094010829925537 With Count: 0.37809109687805
Output for 5.5.28
Foreach: 0.0025548934936523 Indexed Foreach: 0.0030708312988281 Inlined FastCount: 0.0024800300598145 Optimal Loop: 0.0029420852661133 While-Each: 0.0074570178985596 With FastCount: 0.0090348720550537 With Count: 0.30336403846741
Output for 5.5.27
Foreach: 0.0024659633636475 Indexed Foreach: 0.0030121803283691 Inlined FastCount: 0.0023870468139648 Optimal Loop: 0.0028750896453857 While-Each: 0.0075027942657471 With FastCount: 0.0091030597686768 With Count: 0.40716004371643
Output for 5.5.26
Foreach: 0.0021359920501709 Indexed Foreach: 0.0028450489044189 Inlined FastCount: 0.0024049282073975 Optimal Loop: 0.0027010440826416 While-Each: 0.0049610137939453 With FastCount: 0.0060861110687256 With Count: 0.25445699691772
Output for 5.5.25
Foreach: 0.0019397735595703 Indexed Foreach: 0.0024220943450928 Inlined FastCount: 0.0020549297332764 Optimal Loop: 0.0024561882019043 While-Each: 0.005389928817749 With FastCount: 0.0066490173339844 With Count: 0.28866791725159
Output for 5.5.24
Foreach: 0.0025479793548584 Indexed Foreach: 0.0030999183654785 Inlined FastCount: 0.0024340152740479 Optimal Loop: 0.0029351711273193 While-Each: 0.0074160099029541 With FastCount: 0.0090889930725098 With Count: 0.28799700737
Output for 5.5.23
Foreach: 0.0025050640106201 Indexed Foreach: 0.0030701160430908 Inlined FastCount: 0.0024240016937256 Optimal Loop: 0.0029380321502686 While-Each: 0.0075268745422363 With FastCount: 0.0090129375457764 With Count: 0.33372902870178
Output for 5.5.22
Foreach: 0.0016179084777832 Indexed Foreach: 0.0020349025726318 Inlined FastCount: 0.0017969608306885 Optimal Loop: 0.0020890235900879 While-Each: 0.0047528743743896 With FastCount: 0.0060741901397705 With Count: 0.25341606140137
Output for 5.5.21
Foreach: 0.0025510787963867 Indexed Foreach: 0.0031039714813232 Inlined FastCount: 0.0023901462554932 Optimal Loop: 0.0029299259185791 While-Each: 0.0073449611663818 With FastCount: 0.009166955947876 With Count: 0.286700963974
Output for 5.5.20
Foreach: 0.0025889873504639 Indexed Foreach: 0.0021610260009766 Inlined FastCount: 0.0019769668579102 Optimal Loop: 0.0021200180053711 While-Each: 0.0048391819000244 With FastCount: 0.0061030387878418 With Count: 0.36157202720642
Output for 5.5.19
Foreach: 0.0024988651275635 Indexed Foreach: 0.0030839443206787 Inlined FastCount: 0.0024449825286865 Optimal Loop: 0.002960205078125 While-Each: 0.0075259208679199 With FastCount: 0.0089571475982666 With Count: 0.33341479301453
Output for 5.5.18
Foreach: 0.0025131702423096 Indexed Foreach: 0.0031511783599854 Inlined FastCount: 0.0024139881134033 Optimal Loop: 0.002918004989624 While-Each: 0.0074090957641602 With FastCount: 0.00901198387146 With Count: 0.37390398979187
Output for 5.5.17
Foreach: 0.0017540454864502 Indexed Foreach: 0.0022878646850586 Inlined FastCount: 0.0018701553344727 Optimal Loop: 0.0022668838500977 While-Each: 0.0052621364593506 With FastCount: 0.006803035736084 With Count: 0.28500008583069
Output for 5.5.16
Foreach: 0.0024759769439697 Indexed Foreach: 0.0030770301818848 Inlined FastCount: 0.0020689964294434 Optimal Loop: 0.0020520687103271 While-Each: 0.0070791244506836 With FastCount: 0.0085060596466064 With Count: 0.27782893180847
Output for 5.5.15
Foreach: 0.0024659633636475 Indexed Foreach: 0.0030128955841064 Inlined FastCount: 0.0024070739746094 Optimal Loop: 0.0029048919677734 While-Each: 0.0076379776000977 With FastCount: 0.0090348720550537 With Count: 0.34502005577087
Output for 5.5.14
Foreach: 0.001788854598999 Indexed Foreach: 0.0021958351135254 Inlined FastCount: 0.0018928050994873 Optimal Loop: 0.0023090839385986 While-Each: 0.0051898956298828 With FastCount: 0.0066409111022949 With Count: 0.29442620277405
Output for 5.5.13
Foreach: 0.0027129650115967 Indexed Foreach: 0.0020389556884766 Inlined FastCount: 0.0017879009246826 Optimal Loop: 0.0021059513092041 While-Each: 0.004688024520874 With FastCount: 0.0062170028686523 With Count: 0.26541805267334
Output for 5.5.12
Foreach: 0.0016071796417236 Indexed Foreach: 0.0020959377288818 Inlined FastCount: 0.0017549991607666 Optimal Loop: 0.0020701885223389 While-Each: 0.0046689510345459 With FastCount: 0.0060188770294189 With Count: 0.31996703147888
Output for 5.5.11
Foreach: 0.0018990039825439 Indexed Foreach: 0.0031299591064453 Inlined FastCount: 0.0018100738525391 Optimal Loop: 0.002129077911377 While-Each: 0.0047180652618408 With FastCount: 0.0061120986938477 With Count: 0.2818431854248
Output for 5.5.10
Foreach: 0.0025508403778076 Indexed Foreach: 0.0031051635742188 Inlined FastCount: 0.0023610591888428 Optimal Loop: 0.0028538703918457 While-Each: 0.0073890686035156 With FastCount: 0.0090570449829102 With Count: 0.30705595016479
Output for 5.5.9
Foreach: 0.0025849342346191 Indexed Foreach: 0.003187894821167 Inlined FastCount: 0.0025241374969482 Optimal Loop: 0.0030241012573242 While-Each: 0.0077178478240967 With FastCount: 0.0093240737915039 With Count: 0.28481483459473
Output for 5.5.8
Foreach: 0.0024979114532471 Indexed Foreach: 0.0020599365234375 Inlined FastCount: 0.0017600059509277 Optimal Loop: 0.0020461082458496 While-Each: 0.0046658515930176 With FastCount: 0.0061330795288086 With Count: 0.25437998771667
Output for 5.5.7
Foreach: 0.0024921894073486 Indexed Foreach: 0.0030710697174072 Inlined FastCount: 0.0024588108062744 Optimal Loop: 0.0029010772705078 While-Each: 0.0073859691619873 With FastCount: 0.0077958106994629 With Count: 0.28657603263855
Output for 5.5.6
Foreach: 0.0024709701538086 Indexed Foreach: 0.0030608177185059 Inlined FastCount: 0.0024440288543701 Optimal Loop: 0.0029029846191406 While-Each: 0.0076541900634766 With FastCount: 0.009242057800293 With Count: 0.40375208854675
Output for 5.5.5
Foreach: 0.0025269985198975 Indexed Foreach: 0.0031020641326904 Inlined FastCount: 0.0024468898773193 Optimal Loop: 0.0029480457305908 While-Each: 0.0073709487915039 With FastCount: 0.0090658664703369 With Count: 0.32305502891541
Output for 5.5.4
Foreach: 0.001939058303833 Indexed Foreach: 0.002471923828125 Inlined FastCount: 0.0021400451660156 Optimal Loop: 0.0024738311767578 While-Each: 0.0051920413970947 With FastCount: 0.0060410499572754 With Count: 0.32659888267517
Output for 5.5.3
Foreach: 0.0024690628051758 Indexed Foreach: 0.0030231475830078 Inlined FastCount: 0.0024209022521973 Optimal Loop: 0.0028810501098633 While-Each: 0.0074491500854492 With FastCount: 0.0089879035949707 With Count: 0.33586096763611
Output for 5.5.2
Foreach: 0.0025858879089355 Indexed Foreach: 0.0021040439605713 Inlined FastCount: 0.0018298625946045 Optimal Loop: 0.0021090507507324 While-Each: 0.0048317909240723 With FastCount: 0.0060958862304688 With Count: 0.29828000068665
Output for 5.5.1
Foreach: 0.003364086151123 Indexed Foreach: 0.0036559104919434 Inlined FastCount: 0.0018079280853271 Optimal Loop: 0.002129077911377 While-Each: 0.0049369335174561 With FastCount: 0.0061678886413574 With Count: 0.34473896026611
Output for 5.5.0
Foreach: 0.0025122165679932 Indexed Foreach: 0.0030660629272461 Inlined FastCount: 0.0024409294128418 Optimal Loop: 0.0029261112213135 While-Each: 0.0074470043182373 With FastCount: 0.0090019702911377 With Count: 0.29341506958008
Output for 5.4.45
Foreach: 0.0025560855865479 Indexed Foreach: 0.0032150745391846 Inlined FastCount: 0.002532958984375 Optimal Loop: 0.0030050277709961 While-Each: 0.0076630115509033 With FastCount: 0.0097510814666748 With Count: 0.3432559967041
Output for 5.4.44
Foreach: 0.0032448768615723 Indexed Foreach: 0.0040581226348877 Inlined FastCount: 0.0034379959106445 Optimal Loop: 0.0020520687103271 While-Each: 0.0046470165252686 With FastCount: 0.0063118934631348 With Count: 0.25125098228455
Output for 5.4.43
Foreach: 0.0025031566619873 Indexed Foreach: 0.0031168460845947 Inlined FastCount: 0.0025341510772705 Optimal Loop: 0.0029940605163574 While-Each: 0.0075678825378418 With FastCount: 0.0094809532165527 With Count: 0.28037691116333
Output for 5.4.42
Foreach: 0.0024678707122803 Indexed Foreach: 0.0031368732452393 Inlined FastCount: 0.0025079250335693 Optimal Loop: 0.0031671524047852 While-Each: 0.0054631233215332 With FastCount: 0.0064070224761963 With Count: 0.38432788848877
Output for 5.4.41
Foreach: 0.0018751621246338 Indexed Foreach: 0.0024800300598145 Inlined FastCount: 0.0019891262054443 Optimal Loop: 0.0023410320281982 While-Each: 0.0050830841064453 With FastCount: 0.0064010620117188 With Count: 0.25973105430603
Output for 5.4.40
Foreach: 0.002532958984375 Indexed Foreach: 0.0031390190124512 Inlined FastCount: 0.0024228096008301 Optimal Loop: 0.0029311180114746 While-Each: 0.0074629783630371 With FastCount: 0.0094590187072754 With Count: 0.30538821220398
Output for 5.4.39
Foreach: 0.0025370121002197 Indexed Foreach: 0.0031900405883789 Inlined FastCount: 0.0024430751800537 Optimal Loop: 0.0029261112213135 While-Each: 0.0075180530548096 With FastCount: 0.0094850063323975 With Count: 0.38672709465027
Output for 5.4.38
Foreach: 0.0025129318237305 Indexed Foreach: 0.0031421184539795 Inlined FastCount: 0.002471923828125 Optimal Loop: 0.0029549598693848 While-Each: 0.0074880123138428 With FastCount: 0.0094361305236816 With Count: 0.30316519737244
Output for 5.4.37
Foreach: 0.0025229454040527 Indexed Foreach: 0.0031781196594238 Inlined FastCount: 0.0024008750915527 Optimal Loop: 0.0029230117797852 While-Each: 0.0074939727783203 With FastCount: 0.009376049041748 With Count: 0.25758695602417
Output for 5.4.36
Foreach: 0.0020420551300049 Indexed Foreach: 0.0026838779449463 Inlined FastCount: 0.0020818710327148 Optimal Loop: 0.0020749568939209 While-Each: 0.0046031475067139 With FastCount: 0.0063471794128418 With Count: 0.34200620651245
Output for 5.4.35
Foreach: 0.0025229454040527 Indexed Foreach: 0.0031960010528564 Inlined FastCount: 0.0024349689483643 Optimal Loop: 0.0029270648956299 While-Each: 0.0075302124023438 With FastCount: 0.0078170299530029 With Count: 0.38250398635864
Output for 5.4.34
Foreach: 0.0025210380554199 Indexed Foreach: 0.0031790733337402 Inlined FastCount: 0.0023949146270752 Optimal Loop: 0.0029349327087402 While-Each: 0.0074598789215088 With FastCount: 0.0093550682067871 With Count: 0.28658413887024
Output for 5.4.33
Foreach: 0.0026340484619141 Indexed Foreach: 0.0034260749816895 Inlined FastCount: 0.0027420520782471 Optimal Loop: 0.0026140213012695 While-Each: 0.004605770111084 With FastCount: 0.0064139366149902 With Count: 0.28417992591858
Output for 5.4.32
Foreach: 0.0024139881134033 Indexed Foreach: 0.0031139850616455 Inlined FastCount: 0.0023269653320312 Optimal Loop: 0.0023300647735596 While-Each: 0.004580020904541 With FastCount: 0.0063328742980957 With Count: 0.24024105072021
Output for 5.4.31
Foreach: 0.0025300979614258 Indexed Foreach: 0.0031530857086182 Inlined FastCount: 0.0024359226226807 Optimal Loop: 0.0029330253601074 While-Each: 0.0075550079345703 With FastCount: 0.009498119354248 With Count: 0.26265287399292
Output for 5.4.30
Foreach: 0.0025911331176758 Indexed Foreach: 0.0034708976745605 Inlined FastCount: 0.0021059513092041 Optimal Loop: 0.0020389556884766 While-Each: 0.0047891139984131 With FastCount: 0.0063469409942627 With Count: 0.2516758441925
Output for 5.4.29
Foreach: 0.0026309490203857 Indexed Foreach: 0.0032031536102295 Inlined FastCount: 0.002554178237915 Optimal Loop: 0.0031251907348633 While-Each: 0.0078001022338867 With FastCount: 0.0097999572753906 With Count: 0.31533408164978
Output for 5.4.28
Foreach: 0.0031511783599854 Indexed Foreach: 0.003115177154541 Inlined FastCount: 0.0019419193267822 Optimal Loop: 0.0022711753845215 While-Each: 0.0052490234375 With FastCount: 0.0069220066070557 With Count: 0.28126692771912
Output for 5.4.27
Foreach: 0.0026528835296631 Indexed Foreach: 0.0032408237457275 Inlined FastCount: 0.0025191307067871 Optimal Loop: 0.0030629634857178 While-Each: 0.0078310966491699 With FastCount: 0.0097482204437256 With Count: 0.30835294723511
Output for 5.4.26
Foreach: 0.0027730464935303 Indexed Foreach: 0.0021281242370605 Inlined FastCount: 0.0018031597137451 Optimal Loop: 0.0020780563354492 While-Each: 0.0046999454498291 With FastCount: 0.0063810348510742 With Count: 0.24126219749451
Output for 5.4.25
Foreach: 0.0019040107727051 Indexed Foreach: 0.0024349689483643 Inlined FastCount: 0.0018291473388672 Optimal Loop: 0.0021669864654541 While-Each: 0.0052509307861328 With FastCount: 0.0072329044342041 With Count: 0.27928781509399
Output for 5.4.24
Foreach: 0.0032219886779785 Indexed Foreach: 0.0043280124664307 Inlined FastCount: 0.0019018650054932 Optimal Loop: 0.0020208358764648 While-Each: 0.0046489238739014 With FastCount: 0.0064880847930908 With Count: 0.26067614555359
Output for 5.4.23
Foreach: 0.0025389194488525 Indexed Foreach: 0.0031559467315674 Inlined FastCount: 0.0023791790008545 Optimal Loop: 0.0028860569000244 While-Each: 0.0074999332427979 With FastCount: 0.009350061416626 With Count: 0.35610699653625
Output for 5.4.22
Foreach: 0.0035459995269775 Indexed Foreach: 0.0030980110168457 Inlined FastCount: 0.0023250579833984 Optimal Loop: 0.0028328895568848 While-Each: 0.0076858997344971 With FastCount: 0.0096070766448975 With Count: 0.40816402435303
Output for 5.4.21
Foreach: 0.0033061504364014 Indexed Foreach: 0.0033230781555176 Inlined FastCount: 0.0016839504241943 Optimal Loop: 0.0020148754119873 While-Each: 0.0046000480651855 With FastCount: 0.0063619613647461 With Count: 0.28218007087708
Output for 5.4.20
Foreach: 0.0028939247131348 Indexed Foreach: 0.0022802352905273 Inlined FastCount: 0.0019209384918213 Optimal Loop: 0.0022280216217041 While-Each: 0.0050928592681885 With FastCount: 0.007044792175293 With Count: 0.27607917785645
Output for 5.4.19
Foreach: 0.0025789737701416 Indexed Foreach: 0.0031380653381348 Inlined FastCount: 0.0024387836456299 Optimal Loop: 0.0029439926147461 While-Each: 0.007612943649292 With FastCount: 0.0094671249389648 With Count: 0.31452798843384
Output for 5.4.18
Foreach: 0.0024881362915039 Indexed Foreach: 0.0032050609588623 Inlined FastCount: 0.0018038749694824 Optimal Loop: 0.0020771026611328 While-Each: 0.0046310424804688 With FastCount: 0.0063698291778564 With Count: 0.25286602973938
Output for 5.4.17
Foreach: 0.0035169124603271 Indexed Foreach: 0.0041429996490479 Inlined FastCount: 0.0027899742126465 Optimal Loop: 0.0024788379669189 While-Each: 0.0053629875183105 With FastCount: 0.0073518753051758 With Count: 0.28011679649353
Output for 5.4.16
Foreach: 0.0025889873504639 Indexed Foreach: 0.00313401222229 Inlined FastCount: 0.0023438930511475 Optimal Loop: 0.0022468566894531 While-Each: 0.0045969486236572 With FastCount: 0.006356954574585 With Count: 0.29714608192444
Output for 5.4.15
Foreach: 0.0025889873504639 Indexed Foreach: 0.0031530857086182 Inlined FastCount: 0.0024619102478027 Optimal Loop: 0.0029158592224121 While-Each: 0.0075509548187256 With FastCount: 0.0093600749969482 With Count: 0.33495092391968
Output for 5.4.14
Foreach: 0.0024850368499756 Indexed Foreach: 0.003201961517334 Inlined FastCount: 0.0024769306182861 Optimal Loop: 0.0029919147491455 While-Each: 0.0075719356536865 With FastCount: 0.0093600749969482 With Count: 0.27865386009216
Output for 5.4.13
Foreach: 0.0025241374969482 Indexed Foreach: 0.0031061172485352 Inlined FastCount: 0.0024540424346924 Optimal Loop: 0.0029129981994629 While-Each: 0.0075089931488037 With FastCount: 0.0092329978942871 With Count: 0.294105052948
Output for 5.4.12
Foreach: 0.0026381015777588 Indexed Foreach: 0.003244161605835 Inlined FastCount: 0.0025200843811035 Optimal Loop: 0.0030498504638672 While-Each: 0.007702112197876 With FastCount: 0.0095341205596924 With Count: 0.34227991104126
Output for 5.4.11
Foreach: 0.0027267932891846 Indexed Foreach: 0.0025088787078857 Inlined FastCount: 0.0019810199737549 Optimal Loop: 0.0022528171539307 While-Each: 0.0053331851959229 With FastCount: 0.0069808959960938 With Count: 0.28114199638367
Output for 5.4.10
Foreach: 0.0025918483734131 Indexed Foreach: 0.0021820068359375 Inlined FastCount: 0.0018069744110107 Optimal Loop: 0.0020289421081543 While-Each: 0.0046529769897461 With FastCount: 0.006309986114502 With Count: 0.24152708053589
Output for 5.4.9
Foreach: 0.0025849342346191 Indexed Foreach: 0.0033299922943115 Inlined FastCount: 0.0025370121002197 Optimal Loop: 0.003040075302124 While-Each: 0.0077569484710693 With FastCount: 0.0095639228820801 With Count: 0.32520079612732
Output for 5.4.8
Foreach: 0.003180980682373 Indexed Foreach: 0.0035450458526611 Inlined FastCount: 0.0023691654205322 Optimal Loop: 0.0026760101318359 While-Each: 0.0060641765594482 With FastCount: 0.0077881813049316 With Count: 0.32651996612549
Output for 5.4.7
Foreach: 0.0027270317077637 Indexed Foreach: 0.002173900604248 Inlined FastCount: 0.0017309188842773 Optimal Loop: 0.0020220279693604 While-Each: 0.0045990943908691 With FastCount: 0.006256103515625 With Count: 0.35443806648254
Output for 5.4.6
Foreach: 0.0029230117797852 Indexed Foreach: 0.0040230751037598 Inlined FastCount: 0.0017719268798828 Optimal Loop: 0.0020821094512939 While-Each: 0.0046319961547852 With FastCount: 0.0063021183013916 With Count: 0.24164509773254
Output for 5.4.5
Foreach: 0.0025830268859863 Indexed Foreach: 0.0031709671020508 Inlined FastCount: 0.0024800300598145 Optimal Loop: 0.0029699802398682 While-Each: 0.0075831413269043 With FastCount: 0.0093550682067871 With Count: 0.35946202278137
Output for 5.4.4
Foreach: 0.0024659633636475 Indexed Foreach: 0.0032830238342285 Inlined FastCount: 0.002129077911377 Optimal Loop: 0.0020380020141602 While-Each: 0.0046389102935791 With FastCount: 0.0062448978424072 With Count: 0.36033201217651
Output for 5.4.3
Foreach: 0.0025300979614258 Indexed Foreach: 0.0031628608703613 Inlined FastCount: 0.0024549961090088 Optimal Loop: 0.0029001235961914 While-Each: 0.0075399875640869 With FastCount: 0.0092799663543701 With Count: 0.34184718132019
Output for 5.4.2
Foreach: 0.0017130374908447 Indexed Foreach: 0.0021450519561768 Inlined FastCount: 0.0017139911651611 Optimal Loop: 0.0020167827606201 While-Each: 0.0046501159667969 With FastCount: 0.0062720775604248 With Count: 0.27798795700073
Output for 5.4.1
Foreach: 0.0016229152679443 Indexed Foreach: 0.0021800994873047 Inlined FastCount: 0.0017008781433105 Optimal Loop: 0.00199294090271 While-Each: 0.0046219825744629 With FastCount: 0.0062038898468018 With Count: 0.23761081695557
Output for 5.4.0
Foreach: 0.0023360252380371 Indexed Foreach: 0.0030159950256348 Inlined FastCount: 0.0021231174468994 Optimal Loop: 0.0020120143890381 While-Each: 0.0045909881591797 With FastCount: 0.0061769485473633 With Count: 0.25753307342529
Output for 5.3.29
Foreach: 0.0011651515960693 Indexed Foreach: 0.0013530254364014 Inlined FastCount: 0.00091791152954102 Optimal Loop: 0.0012638568878174 While-Each: 0.0034971237182617 With FastCount: 0.0045700073242188 With Count: 0.21222400665283
Output for 5.3.28
Foreach: 0.0011260509490967 Indexed Foreach: 0.0013999938964844 Inlined FastCount: 0.00090384483337402 Optimal Loop: 0.0011911392211914 While-Each: 0.003425121307373 With FastCount: 0.0049879550933838 With Count: 0.21540093421936
Output for 5.3.27
Foreach: 0.0014889240264893 Indexed Foreach: 0.0017061233520508 Inlined FastCount: 0.0011160373687744 Optimal Loop: 0.0015268325805664 While-Each: 0.0041608810424805 With FastCount: 0.0041899681091309 With Count: 0.20844984054565
Output for 5.3.26
Foreach: 0.0017318725585938 Indexed Foreach: 0.0021481513977051 Inlined FastCount: 0.0011260509490967 Optimal Loop: 0.0014169216156006 While-Each: 0.0039088726043701 With FastCount: 0.0060830116271973 With Count: 0.21985387802124
Output for 5.3.25
Foreach: 0.0015621185302734 Indexed Foreach: 0.0018630027770996 Inlined FastCount: 0.0012099742889404 Optimal Loop: 0.0016510486602783 While-Each: 0.0047030448913574 With FastCount: 0.0059750080108643 With Count: 0.22403502464294
Output for 5.3.24
Foreach: 0.0014140605926514 Indexed Foreach: 0.0016829967498779 Inlined FastCount: 0.0011200904846191 Optimal Loop: 0.0014510154724121 While-Each: 0.0042641162872314 With FastCount: 0.0054459571838379 With Count: 0.21111798286438
Output for 5.3.23
Foreach: 0.0020840167999268 Indexed Foreach: 0.0019469261169434 Inlined FastCount: 0.0011839866638184 Optimal Loop: 0.0015342235565186 While-Each: 0.0043909549713135 With FastCount: 0.0057151317596436 With Count: 0.25429105758667
Output for 5.3.22
Foreach: 0.0014410018920898 Indexed Foreach: 0.0017409324645996 Inlined FastCount: 0.00095295906066895 Optimal Loop: 0.00130295753479 While-Each: 0.0037930011749268 With FastCount: 0.0050289630889893 With Count: 0.24542999267578
Output for 5.3.21
Foreach: 0.0015900135040283 Indexed Foreach: 0.0018589496612549 Inlined FastCount: 0.0012121200561523 Optimal Loop: 0.0016219615936279 While-Each: 0.0047259330749512 With FastCount: 0.0060439109802246 With Count: 0.23351407051086
Output for 5.3.20
Foreach: 0.0011398792266846 Indexed Foreach: 0.001378059387207 Inlined FastCount: 0.00088214874267578 Optimal Loop: 0.0011570453643799 While-Each: 0.0034139156341553 With FastCount: 0.005281925201416 With Count: 0.21063590049744
Output for 5.3.19
Foreach: 0.0013868808746338 Indexed Foreach: 0.0016770362854004 Inlined FastCount: 0.0010759830474854 Optimal Loop: 0.0014219284057617 While-Each: 0.0046119689941406 With FastCount: 0.0053961277008057 With Count: 0.22237920761108
Output for 5.3.18
Foreach: 0.0016548633575439 Indexed Foreach: 0.0021810531616211 Inlined FastCount: 0.001439094543457 Optimal Loop: 0.0014269351959229 While-Each: 0.0039300918579102 With FastCount: 0.005277156829834 With Count: 0.21920108795166
Output for 5.3.17
Foreach: 0.0018610954284668 Indexed Foreach: 0.0020730495452881 Inlined FastCount: 0.0013191699981689 Optimal Loop: 0.0016319751739502 While-Each: 0.0040509700775146 With FastCount: 0.0053861141204834 With Count: 0.22209596633911
Output for 5.3.16
Foreach: 0.0018761157989502 Indexed Foreach: 0.0019421577453613 Inlined FastCount: 0.0013411045074463 Optimal Loop: 0.001708984375 While-Each: 0.0047829151153564 With FastCount: 0.0062599182128906 With Count: 0.2313871383667
Output for 5.3.15
Foreach: 0.0016369819641113 Indexed Foreach: 0.0018930435180664 Inlined FastCount: 0.0012471675872803 Optimal Loop: 0.0016319751739502 While-Each: 0.0043370723724365 With FastCount: 0.0050971508026123 With Count: 0.22243595123291
Output for 5.3.14
Foreach: 0.0012900829315186 Indexed Foreach: 0.0014801025390625 Inlined FastCount: 0.0010199546813965 Optimal Loop: 0.0013601779937744 While-Each: 0.0038390159606934 With FastCount: 0.005018949508667 With Count: 0.21999001502991
Output for 5.3.13
Foreach: 0.0018470287322998 Indexed Foreach: 0.0020170211791992 Inlined FastCount: 0.0013599395751953 Optimal Loop: 0.0017900466918945 While-Each: 0.0052840709686279 With FastCount: 0.0066230297088623 With Count: 0.2325382232666
Output for 5.3.12
Foreach: 0.0015099048614502 Indexed Foreach: 0.0016090869903564 Inlined FastCount: 0.0010960102081299 Optimal Loop: 0.001384973526001 While-Each: 0.0041730403900146 With FastCount: 0.0052871704101562 With Count: 0.20941209793091
Output for 5.3.11
Foreach: 0.00098180770874023 Indexed Foreach: 0.0012049674987793 Inlined FastCount: 0.00083303451538086 Optimal Loop: 0.0009770393371582 While-Each: 0.0028870105743408 With FastCount: 0.0035049915313721 With Count: 0.18873381614685
Output for 5.3.10
Foreach: 0.0013740062713623 Indexed Foreach: 0.0016038417816162 Inlined FastCount: 0.0012588500976562 Optimal Loop: 0.0016179084777832 While-Each: 0.0041050910949707 With FastCount: 0.0046939849853516 With Count: 0.20966291427612
Output for 5.3.9
Foreach: 0.0010299682617188 Indexed Foreach: 0.00118088722229 Inlined FastCount: 0.00077915191650391 Optimal Loop: 0.0010371208190918 While-Each: 0.0029520988464355 With FastCount: 0.0039379596710205 With Count: 0.21073603630066
Output for 5.3.8
Foreach: 0.0017368793487549 Indexed Foreach: 0.0019330978393555 Inlined FastCount: 0.0012960433959961 Optimal Loop: 0.0017039775848389 While-Each: 0.0049471855163574 With FastCount: 0.0060698986053467 With Count: 0.24432110786438
Output for 5.3.7
Foreach: 0.001838207244873 Indexed Foreach: 0.0020489692687988 Inlined FastCount: 0.0012919902801514 Optimal Loop: 0.001708984375 While-Each: 0.004951000213623 With FastCount: 0.0062291622161865 With Count: 0.2372419834137
Output for 5.3.6
Foreach: 0.0013449192047119 Indexed Foreach: 0.0014979839324951 Inlined FastCount: 0.0010240077972412 Optimal Loop: 0.0013611316680908 While-Each: 0.003741979598999 With FastCount: 0.0050008296966553 With Count: 0.22973299026489
Output for 5.3.5
Foreach: 0.0015561580657959 Indexed Foreach: 0.0018329620361328 Inlined FastCount: 0.001230001449585 Optimal Loop: 0.0011699199676514 While-Each: 0.0031659603118896 With FastCount: 0.0041959285736084 With Count: 0.18915200233459
Output for 5.3.4
Foreach: 0.002892017364502 Indexed Foreach: 0.0015640258789062 Inlined FastCount: 0.00090408325195312 Optimal Loop: 0.0012519359588623 While-Each: 0.0034549236297607 With FastCount: 0.0046257972717285 With Count: 0.19109511375427
Output for 5.3.3
Foreach: 0.0017068386077881 Indexed Foreach: 0.0019381046295166 Inlined FastCount: 0.0012469291687012 Optimal Loop: 0.0016520023345947 While-Each: 0.0047199726104736 With FastCount: 0.0059208869934082 With Count: 0.23298001289368
Output for 5.3.2
Foreach: 0.0011508464813232 Indexed Foreach: 0.0012521743774414 Inlined FastCount: 0.00083303451538086 Optimal Loop: 0.0011107921600342 While-Each: 0.0029950141906738 With FastCount: 0.0039248466491699 With Count: 0.23266005516052
Output for 5.3.1
Foreach: 0.0016028881072998 Indexed Foreach: 0.0018610954284668 Inlined FastCount: 0.001255989074707 Optimal Loop: 0.0018830299377441 While-Each: 0.0046610832214355 With FastCount: 0.0059530735015869 With Count: 0.22268795967102
Output for 5.3.0
Foreach: 0.0016767978668213 Indexed Foreach: 0.0021498203277588 Inlined FastCount: 0.0013120174407959 Optimal Loop: 0.0016710758209229 While-Each: 0.0046720504760742 With FastCount: 0.0060009956359863 With Count: 0.2247622013092
Output for 5.2.17
Foreach: 0.0019638538360596 Indexed Foreach: 0.0023219585418701 Inlined FastCount: 0.0015928745269775 Optimal Loop: 0.0022470951080322 While-Each: 0.0049240589141846 With FastCount: 0.0070939064025879 With Count: 0.2245659828186
Output for 5.2.16
Foreach: 0.0017650127410889 Indexed Foreach: 0.0022029876708984 Inlined FastCount: 0.001471996307373 Optimal Loop: 0.0021510124206543 While-Each: 0.0045230388641357 With FastCount: 0.006943941116333 With Count: 0.21571397781372
Output for 5.2.15
Foreach: 0.0023009777069092 Indexed Foreach: 0.0027470588684082 Inlined FastCount: 0.0018231868743896 Optimal Loop: 0.0025849342346191 While-Each: 0.0052189826965332 With FastCount: 0.0079391002655029 With Count: 0.25792908668518
Output for 5.2.14
Foreach: 0.0021250247955322 Indexed Foreach: 0.0025050640106201 Inlined FastCount: 0.0017340183258057 Optimal Loop: 0.0022549629211426 While-Each: 0.00394606590271 With FastCount: 0.006242036819458 With Count: 0.23066997528076
Output for 5.2.13
Foreach: 0.0021970272064209 Indexed Foreach: 0.0027048587799072 Inlined FastCount: 0.001849889755249 Optimal Loop: 0.0026459693908691 While-Each: 0.005079984664917 With FastCount: 0.0067288875579834 With Count: 0.22656106948853
Output for 5.2.12
Foreach: 0.0015048980712891 Indexed Foreach: 0.0017750263214111 Inlined FastCount: 0.0014269351959229 Optimal Loop: 0.002161979675293 While-Each: 0.0035378932952881 With FastCount: 0.0056581497192383 With Count: 0.22526407241821
Output for 5.2.11
Foreach: 0.002194881439209 Indexed Foreach: 0.0027179718017578 Inlined FastCount: 0.0018520355224609 Optimal Loop: 0.0026631355285645 While-Each: 0.0052471160888672 With FastCount: 0.008059024810791 With Count: 0.24773406982422
Output for 5.2.10
Foreach: 0.0011720657348633 Indexed Foreach: 0.0013988018035889 Inlined FastCount: 0.00096511840820312 Optimal Loop: 0.0014510154724121 While-Each: 0.0028159618377686 With FastCount: 0.0042500495910645 With Count: 0.19127416610718
Output for 5.2.9
Foreach: 0.0023620128631592 Indexed Foreach: 0.0026669502258301 Inlined FastCount: 0.00177001953125 Optimal Loop: 0.0025339126586914 While-Each: 0.0041639804840088 With FastCount: 0.0065639019012451 With Count: 0.22741913795471
Output for 5.2.8
Foreach: 0.0012447834014893 Indexed Foreach: 0.0014870166778564 Inlined FastCount: 0.0010240077972412 Optimal Loop: 0.0013480186462402 While-Each: 0.002964973449707 With FastCount: 0.0057070255279541 With Count: 0.20747113227844
Output for 5.2.7
Foreach: 0.0017800331115723 Indexed Foreach: 0.0022270679473877 Inlined FastCount: 0.0014770030975342 Optimal Loop: 0.0021538734436035 While-Each: 0.0044569969177246 With FastCount: 0.0065569877624512 With Count: 0.22817707061768
Output for 5.2.6
Foreach: 0.0018980503082275 Indexed Foreach: 0.0022158622741699 Inlined FastCount: 0.0015130043029785 Optimal Loop: 0.002208948135376 While-Each: 0.0035469532012939 With FastCount: 0.0051870346069336 With Count: 0.21609401702881
Output for 5.2.5
Foreach: 0.0024821758270264 Indexed Foreach: 0.002964973449707 Inlined FastCount: 0.0018980503082275 Optimal Loop: 0.0030391216278076 While-Each: 0.0053260326385498 With FastCount: 0.0077459812164307 With Count: 0.23900389671326
Output for 5.2.4
Foreach: 0.0013558864593506 Indexed Foreach: 0.0017149448394775 Inlined FastCount: 0.0011160373687744 Optimal Loop: 0.0017862319946289 While-Each: 0.0029668807983398 With FastCount: 0.0046489238739014 With Count: 0.20963788032532
Output for 5.2.3
Foreach: 0.0023322105407715 Indexed Foreach: 0.0027399063110352 Inlined FastCount: 0.002230167388916 Optimal Loop: 0.0023798942565918 While-Each: 0.0042669773101807 With FastCount: 0.0063891410827637 With Count: 0.2279269695282
Output for 5.2.2
Foreach: 0.0019800662994385 Indexed Foreach: 0.0023047924041748 Inlined FastCount: 0.001439094543457 Optimal Loop: 0.0024020671844482 While-Each: 0.0044090747833252 With FastCount: 0.0064859390258789 With Count: 0.21738791465759
Output for 5.2.1
Foreach: 0.0023322105407715 Indexed Foreach: 0.0027871131896973 Inlined FastCount: 0.0017180442810059 Optimal Loop: 0.0022881031036377 While-Each: 0.0054759979248047 With FastCount: 0.008065938949585 With Count: 0.29273986816406
Output for 5.2.0
Foreach: 0.0020561218261719 Indexed Foreach: 0.0025389194488525 Inlined FastCount: 0.0017361640930176 Optimal Loop: 0.0022501945495605 While-Each: 0.0051169395446777 With FastCount: 0.0076661109924316 With Count: 0.28300905227661
Output for 5.1.6
Foreach: 0.0027849674224854 Indexed Foreach: 0.0034110546112061 Inlined FastCount: 0.0021669864654541 Optimal Loop: 0.002979040145874 While-Each: 0.0052599906921387 With FastCount: 0.0084259510040283 With Count: 0.40619397163391
Output for 5.1.5
Foreach: 0.0029017925262451 Indexed Foreach: 0.0035240650177002 Inlined FastCount: 0.0017821788787842 Optimal Loop: 0.002439022064209 While-Each: 0.0044529438018799 With FastCount: 0.007133960723877 With Count: 0.42192792892456
Output for 5.1.4
Foreach: 0.002763032913208 Indexed Foreach: 0.0040581226348877 Inlined FastCount: 0.0021331310272217 Optimal Loop: 0.0028190612792969 While-Each: 0.0053009986877441 With FastCount: 0.007357120513916 With Count: 0.50246119499207
Output for 5.1.3
Foreach: 0.0028040409088135 Indexed Foreach: 0.0033829212188721 Inlined FastCount: 0.002129077911377 Optimal Loop: 0.0029029846191406 While-Each: 0.0051040649414062 With FastCount: 0.0079300403594971 With Count: 0.42865300178528
Output for 5.1.2
Foreach: 0.0028769969940186 Indexed Foreach: 0.0033309459686279 Inlined FastCount: 0.00177001953125 Optimal Loop: 0.0026090145111084 While-Each: 0.00490403175354 With FastCount: 0.006878137588501 With Count: 0.40801405906677
Output for 5.1.1
Foreach: 0.0025629997253418 Indexed Foreach: 0.0032539367675781 Inlined FastCount: 0.002018928527832 Optimal Loop: 0.002608060836792 While-Each: 0.0041091442108154 With FastCount: 0.0059812068939209 With Count: 0.4107460975647
Output for 5.1.0
Foreach: 0.0028231143951416 Indexed Foreach: 0.0034029483795166 Inlined FastCount: 0.0021970272064209 Optimal Loop: 0.0026950836181641 While-Each: 0.0043070316314697 With FastCount: 0.0065047740936279 With Count: 0.41048216819763
Output for 5.0.5
Foreach: 0.0061070919036865 Indexed Foreach: 0.0075309276580811 Inlined FastCount: 0.004349946975708 Optimal Loop: 0.0053210258483887 While-Each: 0.0070099830627441 With FastCount: 0.013592004776001 With Count: 0.43108415603638
Output for 5.0.4
Foreach: 0.0057148933410645 Indexed Foreach: 0.0071148872375488 Inlined FastCount: 0.0043878555297852 Optimal Loop: 0.0050408840179443 While-Each: 0.0070810317993164 With FastCount: 0.010446071624756 With Count: 0.42892098426819
Output for 5.0.3
Foreach: 0.0050289630889893 Indexed Foreach: 0.0059440135955811 Inlined FastCount: 0.0037100315093994 Optimal Loop: 0.004511833190918 While-Each: 0.0061891078948975 With FastCount: 0.011245012283325 With Count: 0.42935490608215
Output for 5.0.2
Foreach: 0.0061888694763184 Indexed Foreach: 0.0071561336517334 Inlined FastCount: 0.0041069984436035 Optimal Loop: 0.0049819946289062 While-Each: 0.006688117980957 With FastCount: 0.011964797973633 With Count: 0.44559788703918
Output for 5.0.1
Foreach: 0.0051400661468506 Indexed Foreach: 0.0061841011047363 Inlined FastCount: 0.003795862197876 Optimal Loop: 0.0045180320739746 While-Each: 0.0061311721801758 With FastCount: 0.011325836181641 With Count: 0.44061899185181
Output for 5.0.0
Foreach: 0.0047130584716797 Indexed Foreach: 0.0051801204681396 Inlined FastCount: 0.0029439926147461 Optimal Loop: 0.0041029453277588 While-Each: 0.0051929950714111 With FastCount: 0.010818004608154 With Count: 0.41079592704773
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected '&', expecting T_VARIABLE or '$' in /in/bQVJ9 on line 30
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected '&', expecting T_VARIABLE or '$' in /in/bQVJ9 on line 30
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_VARIABLE' or `'$'' in /in/bQVJ9 on line 30
Process exited with code 255.

preferences:
262.99 ms | 401 KiB | 325 Q