3v4l.org

run code in 300+ PHP versions simultaneously
<?php //Access every element once using array_filter() $objectArray = []; $objectNames = []; for($i = 0; $i < 1000; $i ++){ $objName = 'object_name_' . ($i + 1); $objectNames[] = $objName; $obj = new stdClass(); $obj->name = $objName; $obj->description = 'test description'; $obj->accessed = 0; $objectArray[] = $obj; } $start = microtime(true); foreach($objectNames as $name){ $iterations = getObjectWithArray_Filter($name, $objectArray); } $end = microtime(true); $taken = $end - $start; echo $iterations . " iterations using array_filter() in $taken seconds<br/>\n"; //Access every element once using foreach(){} $objectArray = []; $objectNames = []; for($i = 0; $i < 1000; $i ++){ $objName = 'object_name_' . ($i + 1); $objectNames[] = $objName; $obj = new stdClass(); $obj->name = $objName; $obj->description = 'test description'; $obj->accessed = 0; $objectArray[] = $obj; } $start = microtime(true); foreach($objectNames as $name){ $iterations = getObjectWithForeach($name, $objectArray); } $end = microtime(true); $taken = $end - $start; echo $iterations . " iterations using foreach(){} in $taken seconds<br/>\n"; //Access every element once using Associative array $objectArray = []; $objectNames = []; for($i = 0; $i < 1000; $i ++){ $objName = 'object_name_' . ($i + 1); $objectNames[] = $objName; $obj = new stdClass(); $obj->name = $objName; $obj->description = 'test description'; $obj->accessed = 0; $objectArray[] = $obj; } $associativeArray = []; $start = microtime(true); foreach($objectArray as $object){ $associativeArray[$object->name] = $object; $object->accessed ++; } foreach($objectNames as $name){ $iterations = getObjectFromAssociativeArray($objName, $associativeArray); } $end = microtime(true); $taken = $end - $start; echo $iterations . " iterations using associative array{} in $taken seconds<br/>\n"; //================================================================= function getObjectWithArray_Filter($objectName, array $objectArray){ $myobjects = array_filter($objectArray, function($e) use($objectName) { $e->accessed ++; return strcmp($e->name, $objectName) == 0; }); $iterations = 0; foreach($objectArray as $object){ $iterations += $object->accessed; } return $iterations; } function getObjectWithForeach($objectName, array $objectArray){ $iterations = 0; $found = false; $count = 0; while(!$found){ $objectArray[$count]->accessed ++; if($objectArray[$count]->name === $objectName){ $found = true; } $count ++; } foreach($objectArray as $object){ $iterations += $object->accessed; } return $iterations; } function getObjectFromAssociativeArray($objectName, array $objectArray){ $iterations = 0; if($objectName === $objectArray[$objectName]->name){ $objectArray[$objectName]->accessed ++; } foreach($objectArray as $object){ $iterations += $object->accessed; } return $iterations; }
Output for 7.4.6
1000000 iterations using array_filter() in 0.27602910995483 seconds<br/> 500500 iterations using foreach(){} in 0.091217994689941 seconds<br/> 2000 iterations using associative array{} in 0.076663017272949 seconds<br/>
Output for 7.4.5
1000000 iterations using array_filter() in 0.19850587844849 seconds<br/> 500500 iterations using foreach(){} in 0.080682992935181 seconds<br/> 2000 iterations using associative array{} in 0.045377016067505 seconds<br/>
Output for 7.4.4
1000000 iterations using array_filter() in 0.16135406494141 seconds<br/> 500500 iterations using foreach(){} in 0.078263998031616 seconds<br/> 2000 iterations using associative array{} in 0.045414924621582 seconds<br/>
Output for 7.4.3
1000000 iterations using array_filter() in 0.15460801124573 seconds<br/> 500500 iterations using foreach(){} in 0.076780080795288 seconds<br/> 2000 iterations using associative array{} in 0.043508052825928 seconds<br/>
Output for 7.4.2
1000000 iterations using array_filter() in 0.26147198677063 seconds<br/> 500500 iterations using foreach(){} in 0.079267024993896 seconds<br/> 2000 iterations using associative array{} in 0.046561002731323 seconds<br/>
Output for 7.4.1
1000000 iterations using array_filter() in 0.19677519798279 seconds<br/> 500500 iterations using foreach(){} in 0.080557823181152 seconds<br/> 2000 iterations using associative array{} in 0.047027826309204 seconds<br/>
Output for 7.4.0
1000000 iterations using array_filter() in 0.16172695159912 seconds<br/> 500500 iterations using foreach(){} in 0.079781055450439 seconds<br/> 2000 iterations using associative array{} in 0.045741081237793 seconds<br/>
Output for 7.3.18
1000000 iterations using array_filter() in 0.20023894309998 seconds<br/> 500500 iterations using foreach(){} in 0.10677003860474 seconds<br/> 2000 iterations using associative array{} in 0.059289216995239 seconds<br/>
Output for 7.3.17
1000000 iterations using array_filter() in 0.17087292671204 seconds<br/> 500500 iterations using foreach(){} in 0.10416388511658 seconds<br/> 2000 iterations using associative array{} in 0.050213098526001 seconds<br/>
Output for 7.3.16
1000000 iterations using array_filter() in 0.15834403038025 seconds<br/> 500500 iterations using foreach(){} in 0.078763961791992 seconds<br/> 2000 iterations using associative array{} in 0.045612812042236 seconds<br/>
Output for 7.3.15
1000000 iterations using array_filter() in 0.14922213554382 seconds<br/> 500500 iterations using foreach(){} in 0.07779598236084 seconds<br/> 2000 iterations using associative array{} in 0.045115947723389 seconds<br/>
Output for 7.3.14
1000000 iterations using array_filter() in 0.15764594078064 seconds<br/> 500500 iterations using foreach(){} in 0.07689905166626 seconds<br/> 2000 iterations using associative array{} in 0.065727949142456 seconds<br/>
Output for 7.3.13
1000000 iterations using array_filter() in 0.16814112663269 seconds<br/> 500500 iterations using foreach(){} in 0.08338189125061 seconds<br/> 2000 iterations using associative array{} in 0.048143148422241 seconds<br/>
Output for 7.3.12
1000000 iterations using array_filter() in 0.15733790397644 seconds<br/> 500500 iterations using foreach(){} in 0.1058189868927 seconds<br/> 2000 iterations using associative array{} in 0.057049989700317 seconds<br/>
Output for 7.3.11
1000000 iterations using array_filter() in 0.17215585708618 seconds<br/> 500500 iterations using foreach(){} in 0.083253860473633 seconds<br/> 2000 iterations using associative array{} in 0.04992413520813 seconds<br/>
Output for 7.3.10
1000000 iterations using array_filter() in 0.1653778553009 seconds<br/> 500500 iterations using foreach(){} in 0.081024885177612 seconds<br/> 2000 iterations using associative array{} in 0.050981044769287 seconds<br/>
Output for 7.3.9
1000000 iterations using array_filter() in 0.16828894615173 seconds<br/> 500500 iterations using foreach(){} in 0.11098003387451 seconds<br/> 2000 iterations using associative array{} in 0.046118021011353 seconds<br/>
Output for 7.3.8
1000000 iterations using array_filter() in 0.26724410057068 seconds<br/> 500500 iterations using foreach(){} in 0.13476490974426 seconds<br/> 2000 iterations using associative array{} in 0.055548191070557 seconds<br/>
Output for 7.3.7
1000000 iterations using array_filter() in 0.29482102394104 seconds<br/> 500500 iterations using foreach(){} in 0.1000759601593 seconds<br/> 2000 iterations using associative array{} in 0.052110195159912 seconds<br/>
Output for 7.3.6
1000000 iterations using array_filter() in 0.28134298324585 seconds<br/> 500500 iterations using foreach(){} in 0.10499000549316 seconds<br/> 2000 iterations using associative array{} in 0.10780692100525 seconds<br/>
Output for 7.3.5
1000000 iterations using array_filter() in 0.26399493217468 seconds<br/> 500500 iterations using foreach(){} in 0.17725396156311 seconds<br/> 2000 iterations using associative array{} in 0.08618688583374 seconds<br/>
Output for 7.3.4
1000000 iterations using array_filter() in 0.24813508987427 seconds<br/> 500500 iterations using foreach(){} in 0.17308592796326 seconds<br/> 2000 iterations using associative array{} in 0.097450971603394 seconds<br/>
Output for 7.3.3
1000000 iterations using array_filter() in 0.24097394943237 seconds<br/> 500500 iterations using foreach(){} in 0.10764193534851 seconds<br/> 2000 iterations using associative array{} in 0.063594102859497 seconds<br/>
Output for 7.3.2
1000000 iterations using array_filter() in 0.19141697883606 seconds<br/> 500500 iterations using foreach(){} in 0.090061902999878 seconds<br/> 2000 iterations using associative array{} in 0.045248985290527 seconds<br/>
Output for 7.3.1
1000000 iterations using array_filter() in 0.19389891624451 seconds<br/> 500500 iterations using foreach(){} in 0.088873147964478 seconds<br/> 2000 iterations using associative array{} in 0.0467848777771 seconds<br/>
Output for 7.3.0
1000000 iterations using array_filter() in 0.26786208152771 seconds<br/> 500500 iterations using foreach(){} in 0.14598798751831 seconds<br/> 2000 iterations using associative array{} in 0.079470157623291 seconds<br/>
Output for 7.2.31
1000000 iterations using array_filter() in 0.30070686340332 seconds<br/> 500500 iterations using foreach(){} in 0.11326599121094 seconds<br/> 2000 iterations using associative array{} in 0.11965894699097 seconds<br/>
Output for 7.2.30
1000000 iterations using array_filter() in 0.33521795272827 seconds<br/> 500500 iterations using foreach(){} in 0.15144205093384 seconds<br/> 2000 iterations using associative array{} in 0.088423013687134 seconds<br/>
Output for 7.2.29
1000000 iterations using array_filter() in 0.35086512565613 seconds<br/> 500500 iterations using foreach(){} in 0.094053030014038 seconds<br/> 2000 iterations using associative array{} in 0.056012153625488 seconds<br/>
Output for 7.2.28
1000000 iterations using array_filter() in 0.2189929485321 seconds<br/> 500500 iterations using foreach(){} in 0.10429787635803 seconds<br/> 2000 iterations using associative array{} in 0.061308860778809 seconds<br/>
Output for 7.2.27
1000000 iterations using array_filter() in 0.19874000549316 seconds<br/> 500500 iterations using foreach(){} in 0.095148086547852 seconds<br/> 2000 iterations using associative array{} in 0.057400941848755 seconds<br/>
Output for 7.2.26
1000000 iterations using array_filter() in 0.20529794692993 seconds<br/> 500500 iterations using foreach(){} in 0.095082998275757 seconds<br/> 2000 iterations using associative array{} in 0.059780120849609 seconds<br/>
Output for 7.2.25
1000000 iterations using array_filter() in 0.21982908248901 seconds<br/> 500500 iterations using foreach(){} in 0.09447717666626 seconds<br/> 2000 iterations using associative array{} in 0.057535886764526 seconds<br/>
Output for 7.2.24
1000000 iterations using array_filter() in 0.40206098556519 seconds<br/> 500500 iterations using foreach(){} in 0.18166399002075 seconds<br/> 2000 iterations using associative array{} in 0.064027070999146 seconds<br/>
Output for 7.2.23
1000000 iterations using array_filter() in 0.202467918396 seconds<br/> 500500 iterations using foreach(){} in 0.09169602394104 seconds<br/> 2000 iterations using associative array{} in 0.05711817741394 seconds<br/>
Output for 7.2.22
1000000 iterations using array_filter() in 0.19749593734741 seconds<br/> 500500 iterations using foreach(){} in 0.094622135162354 seconds<br/> 2000 iterations using associative array{} in 0.057116985321045 seconds<br/>
Output for 7.2.21
1000000 iterations using array_filter() in 0.41772103309631 seconds<br/> 500500 iterations using foreach(){} in 0.10138702392578 seconds<br/> 2000 iterations using associative array{} in 0.061824083328247 seconds<br/>
Output for 7.2.20
1000000 iterations using array_filter() in 0.32468295097351 seconds<br/> 500500 iterations using foreach(){} in 0.14074516296387 seconds<br/> 2000 iterations using associative array{} in 0.073354005813599 seconds<br/>
Output for 7.2.19
1000000 iterations using array_filter() in 0.40152192115784 seconds<br/> 500500 iterations using foreach(){} in 0.16034698486328 seconds<br/> 2000 iterations using associative array{} in 0.11240196228027 seconds<br/>
Output for 7.2.18
1000000 iterations using array_filter() in 0.42883205413818 seconds<br/> 500500 iterations using foreach(){} in 0.18456077575684 seconds<br/> 2000 iterations using associative array{} in 0.069153070449829 seconds<br/>
Output for 7.2.17
1000000 iterations using array_filter() in 0.37484312057495 seconds<br/> 500500 iterations using foreach(){} in 0.18000984191895 seconds<br/> 2000 iterations using associative array{} in 0.12718296051025 seconds<br/>
Output for 7.2.16
1000000 iterations using array_filter() in 0.51729393005371 seconds<br/> 500500 iterations using foreach(){} in 0.11334705352783 seconds<br/> 2000 iterations using associative array{} in 0.1205198764801 seconds<br/>
Output for 7.2.15
1000000 iterations using array_filter() in 0.28652119636536 seconds<br/> 500500 iterations using foreach(){} in 0.10409307479858 seconds<br/> 2000 iterations using associative array{} in 0.11361193656921 seconds<br/>
Output for 7.2.14
1000000 iterations using array_filter() in 0.30065298080444 seconds<br/> 500500 iterations using foreach(){} in 0.097548007965088 seconds<br/> 2000 iterations using associative array{} in 0.071208953857422 seconds<br/>
Output for 7.2.13
1000000 iterations using array_filter() in 0.39155411720276 seconds<br/> 500500 iterations using foreach(){} in 0.10456490516663 seconds<br/> 2000 iterations using associative array{} in 0.10617399215698 seconds<br/>
Output for 7.2.12
1000000 iterations using array_filter() in 0.34384393692017 seconds<br/> 500500 iterations using foreach(){} in 0.184002161026 seconds<br/> 2000 iterations using associative array{} in 0.19941306114197 seconds<br/>
Output for 7.2.11
1000000 iterations using array_filter() in 0.5923068523407 seconds<br/> 500500 iterations using foreach(){} in 0.24874114990234 seconds<br/> 2000 iterations using associative array{} in 0.098276138305664 seconds<br/>
Output for 7.2.10
1000000 iterations using array_filter() in 0.31405901908875 seconds<br/> 500500 iterations using foreach(){} in 0.2393639087677 seconds<br/> 2000 iterations using associative array{} in 0.14160490036011 seconds<br/>
Output for 7.2.9
1000000 iterations using array_filter() in 0.2903470993042 seconds<br/> 500500 iterations using foreach(){} in 0.18515801429749 seconds<br/> 2000 iterations using associative array{} in 0.1049120426178 seconds<br/>
Output for 7.2.8
1000000 iterations using array_filter() in 0.39465808868408 seconds<br/> 500500 iterations using foreach(){} in 0.18172287940979 seconds<br/> 2000 iterations using associative array{} in 0.10739517211914 seconds<br/>
Output for 7.2.7
1000000 iterations using array_filter() in 0.40285396575928 seconds<br/> 500500 iterations using foreach(){} in 0.20754790306091 seconds<br/> 2000 iterations using associative array{} in 0.12366795539856 seconds<br/>
Output for 7.2.6
1000000 iterations using array_filter() in 0.6934449672699 seconds<br/> 500500 iterations using foreach(){} in 0.29486989974976 seconds<br/> 2000 iterations using associative array{} in 0.11316108703613 seconds<br/>
Output for 7.2.5
1000000 iterations using array_filter() in 0.46626305580139 seconds<br/> 500500 iterations using foreach(){} in 0.16952419281006 seconds<br/> 2000 iterations using associative array{} in 0.15199899673462 seconds<br/>
Output for 7.2.4
1000000 iterations using array_filter() in 0.44751286506653 seconds<br/> 500500 iterations using foreach(){} in 0.23515200614929 seconds<br/> 2000 iterations using associative array{} in 0.15641403198242 seconds<br/>
Output for 7.2.3
1000000 iterations using array_filter() in 0.37864398956299 seconds<br/> 500500 iterations using foreach(){} in 0.17833709716797 seconds<br/> 2000 iterations using associative array{} in 0.08079195022583 seconds<br/>
Output for 7.2.2
1000000 iterations using array_filter() in 0.52543306350708 seconds<br/> 500500 iterations using foreach(){} in 0.20085310935974 seconds<br/> 2000 iterations using associative array{} in 0.14044117927551 seconds<br/>
Output for 7.2.1
1000000 iterations using array_filter() in 0.51098895072937 seconds<br/> 500500 iterations using foreach(){} in 0.127690076828 seconds<br/> 2000 iterations using associative array{} in 0.065536975860596 seconds<br/>
Output for 7.2.0
1000000 iterations using array_filter() in 0.30040407180786 seconds<br/> 500500 iterations using foreach(){} in 0.17595505714417 seconds<br/> 2000 iterations using associative array{} in 0.15202713012695 seconds<br/>
Output for 7.1.33
1000000 iterations using array_filter() in 0.25624895095825 seconds<br/> 500500 iterations using foreach(){} in 0.10033798217773 seconds<br/> 2000 iterations using associative array{} in 0.05797004699707 seconds<br/>
Output for 7.1.32
1000000 iterations using array_filter() in 0.2490029335022 seconds<br/> 500500 iterations using foreach(){} in 0.099816083908081 seconds<br/> 2000 iterations using associative array{} in 0.063767910003662 seconds<br/>
Output for 7.1.31
1000000 iterations using array_filter() in 0.58314514160156 seconds<br/> 500500 iterations using foreach(){} in 0.14226412773132 seconds<br/> 2000 iterations using associative array{} in 0.087885141372681 seconds<br/>
Output for 7.1.30
1000000 iterations using array_filter() in 0.62978100776672 seconds<br/> 500500 iterations using foreach(){} in 0.099004983901978 seconds<br/> 2000 iterations using associative array{} in 0.069901943206787 seconds<br/>
Output for 7.1.29
1000000 iterations using array_filter() in 0.46421599388123 seconds<br/> 500500 iterations using foreach(){} in 0.1888689994812 seconds<br/> 2000 iterations using associative array{} in 0.10884404182434 seconds<br/>
Output for 7.1.28
1000000 iterations using array_filter() in 0.32143592834473 seconds<br/> 500500 iterations using foreach(){} in 0.12682485580444 seconds<br/> 2000 iterations using associative array{} in 0.058705806732178 seconds<br/>
Output for 7.1.27
1000000 iterations using array_filter() in 0.3729829788208 seconds<br/> 500500 iterations using foreach(){} in 0.1074481010437 seconds<br/> 2000 iterations using associative array{} in 0.1049919128418 seconds<br/>
Output for 7.1.26
1000000 iterations using array_filter() in 0.33806014060974 seconds<br/> 500500 iterations using foreach(){} in 0.18117094039917 seconds<br/> 2000 iterations using associative array{} in 0.10484385490417 seconds<br/>
Output for 7.1.25
1000000 iterations using array_filter() in 0.57647204399109 seconds<br/> 500500 iterations using foreach(){} in 0.18173718452454 seconds<br/> 2000 iterations using associative array{} in 0.11627507209778 seconds<br/>
Output for 7.1.24
1000000 iterations using array_filter() in 0.62638998031616 seconds<br/> 500500 iterations using foreach(){} in 0.28772187232971 seconds<br/> 2000 iterations using associative array{} in 0.154865026474 seconds<br/>
Output for 7.1.23
1000000 iterations using array_filter() in 0.41749811172485 seconds<br/> 500500 iterations using foreach(){} in 0.25456500053406 seconds<br/> 2000 iterations using associative array{} in 0.12074899673462 seconds<br/>
Output for 7.1.22
1000000 iterations using array_filter() in 0.710932970047 seconds<br/> 500500 iterations using foreach(){} in 0.19573593139648 seconds<br/> 2000 iterations using associative array{} in 0.15667200088501 seconds<br/>
Output for 7.1.21
1000000 iterations using array_filter() in 0.3949179649353 seconds<br/> 500500 iterations using foreach(){} in 0.18460297584534 seconds<br/> 2000 iterations using associative array{} in 0.10957312583923 seconds<br/>
Output for 7.1.20
1000000 iterations using array_filter() in 0.54073810577393 seconds<br/> 500500 iterations using foreach(){} in 0.12655997276306 seconds<br/> 2000 iterations using associative array{} in 0.1068320274353 seconds<br/>
Output for 7.1.19
1000000 iterations using array_filter() in 0.5600368976593 seconds<br/> 500500 iterations using foreach(){} in 0.19078087806702 seconds<br/> 2000 iterations using associative array{} in 0.14339804649353 seconds<br/>
Output for 7.1.18
1000000 iterations using array_filter() in 0.56743478775024 seconds<br/> 500500 iterations using foreach(){} in 0.23108291625977 seconds<br/> 2000 iterations using associative array{} in 0.085899114608765 seconds<br/>
Output for 7.1.17
1000000 iterations using array_filter() in 0.52071905136108 seconds<br/> 500500 iterations using foreach(){} in 0.20422720909119 seconds<br/> 2000 iterations using associative array{} in 0.10358500480652 seconds<br/>
Output for 7.1.16
1000000 iterations using array_filter() in 0.62317609786987 seconds<br/> 500500 iterations using foreach(){} in 0.21857094764709 seconds<br/> 2000 iterations using associative array{} in 0.1478590965271 seconds<br/>
Output for 7.1.15
1000000 iterations using array_filter() in 0.49378204345703 seconds<br/> 500500 iterations using foreach(){} in 0.15480208396912 seconds<br/> 2000 iterations using associative array{} in 0.088366031646729 seconds<br/>
Output for 7.1.14
1000000 iterations using array_filter() in 0.49027681350708 seconds<br/> 500500 iterations using foreach(){} in 0.17622184753418 seconds<br/> 2000 iterations using associative array{} in 0.084442853927612 seconds<br/>
Output for 7.1.13
1000000 iterations using array_filter() in 0.53974890708923 seconds<br/> 500500 iterations using foreach(){} in 0.15710186958313 seconds<br/> 2000 iterations using associative array{} in 0.099644184112549 seconds<br/>
Output for 7.1.12
1000000 iterations using array_filter() in 0.37651205062866 seconds<br/> 500500 iterations using foreach(){} in 0.10848712921143 seconds<br/> 2000 iterations using associative array{} in 0.058333873748779 seconds<br/>
Output for 7.1.11
1000000 iterations using array_filter() in 0.30813002586365 seconds<br/> 500500 iterations using foreach(){} in 0.11077499389648 seconds<br/> 2000 iterations using associative array{} in 0.088202953338623 seconds<br/>
Output for 7.1.10
1000000 iterations using array_filter() in 0.45059490203857 seconds<br/> 500500 iterations using foreach(){} in 0.16220498085022 seconds<br/> 2000 iterations using associative array{} in 0.12343597412109 seconds<br/>
Output for 7.1.9
1000000 iterations using array_filter() in 0.48313617706299 seconds<br/> 500500 iterations using foreach(){} in 0.09900689125061 seconds<br/> 2000 iterations using associative array{} in 0.076081991195679 seconds<br/>
Output for 7.1.8
1000000 iterations using array_filter() in 0.34228086471558 seconds<br/> 500500 iterations using foreach(){} in 0.11953115463257 seconds<br/> 2000 iterations using associative array{} in 0.1328809261322 seconds<br/>
Output for 7.1.7
1000000 iterations using array_filter() in 0.46094298362732 seconds<br/> 500500 iterations using foreach(){} in 0.18718791007996 seconds<br/> 2000 iterations using associative array{} in 0.092795133590698 seconds<br/>
Output for 7.1.6
1000000 iterations using array_filter() in 0.65233016014099 seconds<br/> 500500 iterations using foreach(){} in 0.20989203453064 seconds<br/> 2000 iterations using associative array{} in 0.074388027191162 seconds<br/>
Output for 7.1.5
1000000 iterations using array_filter() in 0.53888702392578 seconds<br/> 500500 iterations using foreach(){} in 0.19656991958618 seconds<br/> 2000 iterations using associative array{} in 0.09633994102478 seconds<br/>
Output for 7.1.4
1000000 iterations using array_filter() in 0.40446996688843 seconds<br/> 500500 iterations using foreach(){} in 0.19041895866394 seconds<br/> 2000 iterations using associative array{} in 0.12453985214233 seconds<br/>
Output for 7.1.3
1000000 iterations using array_filter() in 0.28316712379456 seconds<br/> 500500 iterations using foreach(){} in 0.16996097564697 seconds<br/> 2000 iterations using associative array{} in 0.095331192016602 seconds<br/>
Output for 7.1.2
1000000 iterations using array_filter() in 0.41607904434204 seconds<br/> 500500 iterations using foreach(){} in 0.15387797355652 seconds<br/> 2000 iterations using associative array{} in 0.084969997406006 seconds<br/>
Output for 7.1.1
1000000 iterations using array_filter() in 0.38368582725525 seconds<br/> 500500 iterations using foreach(){} in 0.20550107955933 seconds<br/> 2000 iterations using associative array{} in 0.084404945373535 seconds<br/>
Output for 7.1.0
1000000 iterations using array_filter() in 0.58705687522888 seconds<br/> 500500 iterations using foreach(){} in 0.33844399452209 seconds<br/> 2000 iterations using associative array{} in 0.089389085769653 seconds<br/>
Output for 7.0.33
1000000 iterations using array_filter() in 0.49487614631653 seconds<br/> 500500 iterations using foreach(){} in 0.11889100074768 seconds<br/> 2000 iterations using associative array{} in 0.12843298912048 seconds<br/>
Output for 7.0.32
1000000 iterations using array_filter() in 0.54771900177002 seconds<br/> 500500 iterations using foreach(){} in 0.21458411216736 seconds<br/> 2000 iterations using associative array{} in 0.10198998451233 seconds<br/>
Output for 7.0.31
1000000 iterations using array_filter() in 0.31356716156006 seconds<br/> 500500 iterations using foreach(){} in 0.13751912117004 seconds<br/> 2000 iterations using associative array{} in 0.067754983901978 seconds<br/>
Output for 7.0.30
1000000 iterations using array_filter() in 0.60651397705078 seconds<br/> 500500 iterations using foreach(){} in 0.17525815963745 seconds<br/> 2000 iterations using associative array{} in 0.12799096107483 seconds<br/>
Output for 7.0.29
1000000 iterations using array_filter() in 0.52171397209167 seconds<br/> 500500 iterations using foreach(){} in 0.23042011260986 seconds<br/> 2000 iterations using associative array{} in 0.14865493774414 seconds<br/>
Output for 7.0.28
1000000 iterations using array_filter() in 0.38746786117554 seconds<br/> 500500 iterations using foreach(){} in 0.16214489936829 seconds<br/> 2000 iterations using associative array{} in 0.089365005493164 seconds<br/>
Output for 7.0.27
1000000 iterations using array_filter() in 0.58341598510742 seconds<br/> 500500 iterations using foreach(){} in 0.16875195503235 seconds<br/> 2000 iterations using associative array{} in 0.098240852355957 seconds<br/>
Output for 7.0.26
1000000 iterations using array_filter() in 0.53654313087463 seconds<br/> 500500 iterations using foreach(){} in 0.10915994644165 seconds<br/> 2000 iterations using associative array{} in 0.0640549659729 seconds<br/>
Output for 7.0.25
1000000 iterations using array_filter() in 0.44296503067017 seconds<br/> 500500 iterations using foreach(){} in 0.16654777526855 seconds<br/> 2000 iterations using associative array{} in 0.15737414360046 seconds<br/>
Output for 7.0.24
1000000 iterations using array_filter() in 0.40714001655579 seconds<br/> 500500 iterations using foreach(){} in 0.11201310157776 seconds<br/> 2000 iterations using associative array{} in 0.076396942138672 seconds<br/>
Output for 7.0.23
1000000 iterations using array_filter() in 0.47346115112305 seconds<br/> 500500 iterations using foreach(){} in 0.12210702896118 seconds<br/> 2000 iterations using associative array{} in 0.061729907989502 seconds<br/>
Output for 7.0.22
1000000 iterations using array_filter() in 0.32430696487427 seconds<br/> 500500 iterations using foreach(){} in 0.11618518829346 seconds<br/> 2000 iterations using associative array{} in 0.067138195037842 seconds<br/>
Output for 7.0.21
1000000 iterations using array_filter() in 0.59365797042847 seconds<br/> 500500 iterations using foreach(){} in 0.18333101272583 seconds<br/> 2000 iterations using associative array{} in 0.14193820953369 seconds<br/>
Output for 7.0.20
1000000 iterations using array_filter() in 0.59600210189819 seconds<br/> 500500 iterations using foreach(){} in 0.12933087348938 seconds<br/> 2000 iterations using associative array{} in 0.082568883895874 seconds<br/>
Output for 7.0.19
1000000 iterations using array_filter() in 0.60973787307739 seconds<br/> 500500 iterations using foreach(){} in 0.22412014007568 seconds<br/> 2000 iterations using associative array{} in 0.075749158859253 seconds<br/>
Output for 7.0.18
1000000 iterations using array_filter() in 0.43353605270386 seconds<br/> 500500 iterations using foreach(){} in 0.10698103904724 seconds<br/> 2000 iterations using associative array{} in 0.060899019241333 seconds<br/>
Output for 7.0.17
1000000 iterations using array_filter() in 0.37778306007385 seconds<br/> 500500 iterations using foreach(){} in 0.15741801261902 seconds<br/> 2000 iterations using associative array{} in 0.10559606552124 seconds<br/>
Output for 7.0.16
1000000 iterations using array_filter() in 0.45384192466736 seconds<br/> 500500 iterations using foreach(){} in 0.18734407424927 seconds<br/> 2000 iterations using associative array{} in 0.17470002174377 seconds<br/>
Output for 7.0.15
1000000 iterations using array_filter() in 0.38535308837891 seconds<br/> 500500 iterations using foreach(){} in 0.12193083763123 seconds<br/> 2000 iterations using associative array{} in 0.069897174835205 seconds<br/>
Output for 7.0.14
1000000 iterations using array_filter() in 0.44840812683105 seconds<br/> 500500 iterations using foreach(){} in 0.20719408988953 seconds<br/> 2000 iterations using associative array{} in 0.058581113815308 seconds<br/>
Output for 7.0.13
1000000 iterations using array_filter() in 0.6515371799469 seconds<br/> 500500 iterations using foreach(){} in 0.19300699234009 seconds<br/> 2000 iterations using associative array{} in 0.14576387405396 seconds<br/>
Output for 7.0.12
1000000 iterations using array_filter() in 0.37023496627808 seconds<br/> 500500 iterations using foreach(){} in 0.14425992965698 seconds<br/> 2000 iterations using associative array{} in 0.10834383964539 seconds<br/>
Output for 7.0.11
1000000 iterations using array_filter() in 0.55853199958801 seconds<br/> 500500 iterations using foreach(){} in 0.22476005554199 seconds<br/> 2000 iterations using associative array{} in 0.11528420448303 seconds<br/>
Output for 7.0.10
1000000 iterations using array_filter() in 0.40096592903137 seconds<br/> 500500 iterations using foreach(){} in 0.17955088615417 seconds<br/> 2000 iterations using associative array{} in 0.10160803794861 seconds<br/>
Output for 7.0.9
1000000 iterations using array_filter() in 0.8031849861145 seconds<br/> 500500 iterations using foreach(){} in 0.32628798484802 seconds<br/> 2000 iterations using associative array{} in 0.17713809013367 seconds<br/>
Output for 7.0.8
1000000 iterations using array_filter() in 0.66075801849365 seconds<br/> 500500 iterations using foreach(){} in 0.14250993728638 seconds<br/> 2000 iterations using associative array{} in 0.069015026092529 seconds<br/>
Output for 7.0.7
1000000 iterations using array_filter() in 0.3865327835083 seconds<br/> 500500 iterations using foreach(){} in 0.15486907958984 seconds<br/> 2000 iterations using associative array{} in 0.073055028915405 seconds<br/>
Output for 7.0.6
1000000 iterations using array_filter() in 0.67326712608337 seconds<br/> 500500 iterations using foreach(){} in 0.19165897369385 seconds<br/> 2000 iterations using associative array{} in 0.09419584274292 seconds<br/>
Output for 7.0.5
1000000 iterations using array_filter() in 0.56446719169617 seconds<br/> 500500 iterations using foreach(){} in 0.17230892181396 seconds<br/> 2000 iterations using associative array{} in 0.08797812461853 seconds<br/>
Output for 7.0.4
1000000 iterations using array_filter() in 0.33700489997864 seconds<br/> 500500 iterations using foreach(){} in 0.11121320724487 seconds<br/> 2000 iterations using associative array{} in 0.088228940963745 seconds<br/>
Output for 7.0.3
1000000 iterations using array_filter() in 0.31180500984192 seconds<br/> 500500 iterations using foreach(){} in 0.21122193336487 seconds<br/> 2000 iterations using associative array{} in 0.08368706703186 seconds<br/>
Output for 7.0.2
1000000 iterations using array_filter() in 0.21242499351501 seconds<br/> 500500 iterations using foreach(){} in 0.065145015716553 seconds<br/> 2000 iterations using associative array{} in 0.037925958633423 seconds<br/>
Output for 7.0.1
1000000 iterations using array_filter() in 0.20810413360596 seconds<br/> 500500 iterations using foreach(){} in 0.064175844192505 seconds<br/> 2000 iterations using associative array{} in 0.038466930389404 seconds<br/>
Output for 7.0.0
1000000 iterations using array_filter() in 0.21861386299133 seconds<br/> 500500 iterations using foreach(){} in 0.064934015274048 seconds<br/> 2000 iterations using associative array{} in 0.038747072219849 seconds<br/>
Output for 5.6.40
1000000 iterations using array_filter() in 0.83540797233582 seconds<br/> 500500 iterations using foreach(){} in 0.31283497810364 seconds<br/> 2000 iterations using associative array{} in 0.24592113494873 seconds<br/>
Output for 5.6.39
1000000 iterations using array_filter() in 1.7751860618591 seconds<br/> 500500 iterations using foreach(){} in 0.61226892471313 seconds<br/>
Process exited with code 137.
Output for 5.6.38
1000000 iterations using array_filter() in 0.80431008338928 seconds<br/> 500500 iterations using foreach(){} in 0.45077204704285 seconds<br/> 2000 iterations using associative array{} in 0.3273868560791 seconds<br/>
Output for 5.6.37
1000000 iterations using array_filter() in 1.0834879875183 seconds<br/> 500500 iterations using foreach(){} in 0.53677606582642 seconds<br/> 2000 iterations using associative array{} in 0.26912999153137 seconds<br/>
Output for 5.6.36
1000000 iterations using array_filter() in 1.5016119480133 seconds<br/> 500500 iterations using foreach(){} in 0.47246289253235 seconds<br/> 2000 iterations using associative array{} in 0.4243369102478 seconds<br/>
Output for 5.6.35
1000000 iterations using array_filter() in 1.5946938991547 seconds<br/> 500500 iterations using foreach(){} in 0.55891394615173 seconds<br/>
Process exited with code 137.
Output for 5.6.34
1000000 iterations using array_filter() in 1.1069049835205 seconds<br/> 500500 iterations using foreach(){} in 0.36072111129761 seconds<br/> 2000 iterations using associative array{} in 0.37385988235474 seconds<br/>
Output for 5.6.33
1000000 iterations using array_filter() in 1.2377231121063 seconds<br/> 500500 iterations using foreach(){} in 0.3544499874115 seconds<br/> 2000 iterations using associative array{} in 0.22557401657104 seconds<br/>
Output for 5.6.32
1000000 iterations using array_filter() in 1.2354168891907 seconds<br/> 500500 iterations using foreach(){} in 0.34192609786987 seconds<br/> 2000 iterations using associative array{} in 0.34409284591675 seconds<br/>
Output for 5.6.31
1000000 iterations using array_filter() in 1.3024699687958 seconds<br/> 500500 iterations using foreach(){} in 0.39395499229431 seconds<br/> 2000 iterations using associative array{} in 0.3788788318634 seconds<br/>
Output for 5.6.30
1000000 iterations using array_filter() in 0.93085789680481 seconds<br/> 500500 iterations using foreach(){} in 0.47221803665161 seconds<br/> 2000 iterations using associative array{} in 0.31843090057373 seconds<br/>
Output for 5.6.29
1000000 iterations using array_filter() in 0.98163414001465 seconds<br/> 500500 iterations using foreach(){} in 0.4194700717926 seconds<br/> 2000 iterations using associative array{} in 0.30326390266418 seconds<br/>
Output for 5.6.28
1000000 iterations using array_filter() in 1.6013159751892 seconds<br/> 500500 iterations using foreach(){} in 0.6056079864502 seconds<br/>
Process exited with code 137.
Output for 5.6.27
1000000 iterations using array_filter() in 1.5557301044464 seconds<br/> 500500 iterations using foreach(){} in 0.64300394058228 seconds<br/>
Process exited with code 137.
Output for 5.6.26
1000000 iterations using array_filter() in 1.5899951457977 seconds<br/> 500500 iterations using foreach(){} in 0.39293885231018 seconds<br/> 2000 iterations using associative array{} in 0.3305549621582 seconds<br/>
Output for 5.6.25
1000000 iterations using array_filter() in 1.1085000038147 seconds<br/> 500500 iterations using foreach(){} in 0.75193810462952 seconds<br/> 2000 iterations using associative array{} in 0.32617378234863 seconds<br/>
Output for 5.6.24
1000000 iterations using array_filter() in 2.1683719158173 seconds<br/>
Process exited with code 137.
Output for 5.6.23
1000000 iterations using array_filter() in 0.9372181892395 seconds<br/> 500500 iterations using foreach(){} in 0.42605185508728 seconds<br/> 2000 iterations using associative array{} in 0.25499105453491 seconds<br/>
Output for 5.6.22
1000000 iterations using array_filter() in 0.90083813667297 seconds<br/> 500500 iterations using foreach(){} in 0.37075304985046 seconds<br/> 2000 iterations using associative array{} in 0.21415901184082 seconds<br/>
Output for 5.6.21
1000000 iterations using array_filter() in 0.9484920501709 seconds<br/> 500500 iterations using foreach(){} in 0.37389993667603 seconds<br/> 2000 iterations using associative array{} in 0.21084880828857 seconds<br/>
Output for 5.6.20
1000000 iterations using array_filter() in 1.1473989486694 seconds<br/> 500500 iterations using foreach(){} in 0.49063396453857 seconds<br/> 2000 iterations using associative array{} in 0.37108016014099 seconds<br/>
Output for 5.6.19
1000000 iterations using array_filter() in 0.83288598060608 seconds<br/> 500500 iterations using foreach(){} in 0.56753396987915 seconds<br/> 2000 iterations using associative array{} in 0.23122096061707 seconds<br/>
Output for 5.6.18
1000000 iterations using array_filter() in 1.5420870780945 seconds<br/> 500500 iterations using foreach(){} in 0.63434290885925 seconds<br/>
Process exited with code 137.
Output for 5.6.17
1000000 iterations using array_filter() in 1.5612740516663 seconds<br/> 500500 iterations using foreach(){} in 0.31449699401855 seconds<br/> 2000 iterations using associative array{} in 0.21256899833679 seconds<br/>
Output for 5.6.16
1000000 iterations using array_filter() in 0.47909808158875 seconds<br/> 500500 iterations using foreach(){} in 0.20143699645996 seconds<br/> 2000 iterations using associative array{} in 0.11157202720642 seconds<br/>
Output for 5.6.15
1000000 iterations using array_filter() in 0.46441388130188 seconds<br/> 500500 iterations using foreach(){} in 0.17908406257629 seconds<br/> 2000 iterations using associative array{} in 0.11483097076416 seconds<br/>
Output for 5.6.14
1000000 iterations using array_filter() in 0.5014111995697 seconds<br/> 500500 iterations using foreach(){} in 0.19558215141296 seconds<br/> 2000 iterations using associative array{} in 0.13062715530396 seconds<br/>
Output for 5.6.13
1000000 iterations using array_filter() in 0.40376806259155 seconds<br/> 500500 iterations using foreach(){} in 0.15256595611572 seconds<br/> 2000 iterations using associative array{} in 0.10074090957642 seconds<br/>
Output for 5.6.12
1000000 iterations using array_filter() in 0.44414114952087 seconds<br/> 500500 iterations using foreach(){} in 0.17894911766052 seconds<br/> 2000 iterations using associative array{} in 0.099270820617676 seconds<br/>
Output for 5.6.11
1000000 iterations using array_filter() in 0.36220097541809 seconds<br/> 500500 iterations using foreach(){} in 0.15059995651245 seconds<br/> 2000 iterations using associative array{} in 0.097448825836182 seconds<br/>
Output for 5.6.10
1000000 iterations using array_filter() in 0.36407899856567 seconds<br/> 500500 iterations using foreach(){} in 0.14703297615051 seconds<br/> 2000 iterations using associative array{} in 0.095467090606689 seconds<br/>
Output for 5.6.9
1000000 iterations using array_filter() in 0.45371699333191 seconds<br/> 500500 iterations using foreach(){} in 0.17237997055054 seconds<br/> 2000 iterations using associative array{} in 0.11155104637146 seconds<br/>
Output for 5.6.8
1000000 iterations using array_filter() in 0.44578719139099 seconds<br/> 500500 iterations using foreach(){} in 0.18783092498779 seconds<br/> 2000 iterations using associative array{} in 0.10528588294983 seconds<br/>
Output for 5.6.7
1000000 iterations using array_filter() in 0.45383095741272 seconds<br/> 500500 iterations using foreach(){} in 0.18963217735291 seconds<br/> 2000 iterations using associative array{} in 0.11622381210327 seconds<br/>
Output for 5.6.6
1000000 iterations using array_filter() in 0.48578310012817 seconds<br/> 500500 iterations using foreach(){} in 0.19166088104248 seconds<br/> 2000 iterations using associative array{} in 0.12759709358215 seconds<br/>
Output for 5.6.5
1000000 iterations using array_filter() in 0.46413397789001 seconds<br/> 500500 iterations using foreach(){} in 0.18837380409241 seconds<br/> 2000 iterations using associative array{} in 0.12579298019409 seconds<br/>
Output for 5.6.4
1000000 iterations using array_filter() in 0.4277491569519 seconds<br/> 500500 iterations using foreach(){} in 0.14688611030579 seconds<br/> 2000 iterations using associative array{} in 0.098310947418213 seconds<br/>
Output for 5.6.3
1000000 iterations using array_filter() in 0.43484091758728 seconds<br/> 500500 iterations using foreach(){} in 0.17320418357849 seconds<br/> 2000 iterations using associative array{} in 0.09634804725647 seconds<br/>
Output for 5.6.2
1000000 iterations using array_filter() in 0.45463609695435 seconds<br/> 500500 iterations using foreach(){} in 0.18860411643982 seconds<br/> 2000 iterations using associative array{} in 0.12436485290527 seconds<br/>
Output for 5.6.1
1000000 iterations using array_filter() in 0.45958709716797 seconds<br/> 500500 iterations using foreach(){} in 0.18880796432495 seconds<br/> 2000 iterations using associative array{} in 0.12467122077942 seconds<br/>
Output for 5.6.0
1000000 iterations using array_filter() in 0.39839005470276 seconds<br/> 500500 iterations using foreach(){} in 0.15060997009277 seconds<br/> 2000 iterations using associative array{} in 0.097283124923706 seconds<br/>
Output for 5.5.38
1000000 iterations using array_filter() in 1.8554258346558 seconds<br/>
Process exited with code 137.
Output for 5.5.37
1000000 iterations using array_filter() in 1.0899920463562 seconds<br/> 500500 iterations using foreach(){} in 0.41025900840759 seconds<br/> 2000 iterations using associative array{} in 0.21735692024231 seconds<br/>
Output for 5.5.36
1000000 iterations using array_filter() in 0.95375800132751 seconds<br/> 500500 iterations using foreach(){} in 0.35652589797974 seconds<br/> 2000 iterations using associative array{} in 0.24286699295044 seconds<br/>
Output for 5.5.35
1000000 iterations using array_filter() in 0.8752110004425 seconds<br/> 500500 iterations using foreach(){} in 0.47282481193542 seconds<br/> 2000 iterations using associative array{} in 0.25676798820496 seconds<br/>
Output for 5.5.34
1000000 iterations using array_filter() in 0.94037103652954 seconds<br/> 500500 iterations using foreach(){} in 0.46927714347839 seconds<br/> 2000 iterations using associative array{} in 0.22790217399597 seconds<br/>
Output for 5.5.33
1000000 iterations using array_filter() in 1.0176038742065 seconds<br/> 500500 iterations using foreach(){} in 0.31589889526367 seconds<br/> 2000 iterations using associative array{} in 0.28068900108337 seconds<br/>
Output for 5.5.32
1000000 iterations using array_filter() in 1.348268032074 seconds<br/> 500500 iterations using foreach(){} in 0.57456278800964 seconds<br/> 2000 iterations using associative array{} in 0.30185198783875 seconds<br/>
Output for 5.5.31
1000000 iterations using array_filter() in 1.7790398597717 seconds<br/>
Process exited with code 137.
Output for 5.5.30
1000000 iterations using array_filter() in 0.4084780216217 seconds<br/> 500500 iterations using foreach(){} in 0.15423512458801 seconds<br/> 2000 iterations using associative array{} in 0.10083889961243 seconds<br/>
Output for 5.5.29
1000000 iterations using array_filter() in 0.43487596511841 seconds<br/> 500500 iterations using foreach(){} in 0.15831089019775 seconds<br/> 2000 iterations using associative array{} in 0.10242915153503 seconds<br/>
Output for 5.5.28
1000000 iterations using array_filter() in 0.48360300064087 seconds<br/> 500500 iterations using foreach(){} in 0.18410897254944 seconds<br/> 2000 iterations using associative array{} in 0.11887192726135 seconds<br/>
Output for 5.5.27
1000000 iterations using array_filter() in 0.6048469543457 seconds<br/> 500500 iterations using foreach(){} in 0.25859308242798 seconds<br/> 2000 iterations using associative array{} in 0.17058682441711 seconds<br/>
Output for 5.5.26
1000000 iterations using array_filter() in 0.47955989837646 seconds<br/> 500500 iterations using foreach(){} in 0.26075887680054 seconds<br/> 2000 iterations using associative array{} in 0.17181706428528 seconds<br/>
Output for 5.5.25
1000000 iterations using array_filter() in 0.43458390235901 seconds<br/> 500500 iterations using foreach(){} in 0.15841102600098 seconds<br/> 2000 iterations using associative array{} in 0.10077691078186 seconds<br/>
Output for 5.5.24
1000000 iterations using array_filter() in 0.40760612487793 seconds<br/> 500500 iterations using foreach(){} in 0.15461301803589 seconds<br/> 2000 iterations using associative array{} in 0.10091400146484 seconds<br/>
Output for 5.5.23
1000000 iterations using array_filter() in 0.46967601776123 seconds<br/> 500500 iterations using foreach(){} in 0.1962308883667 seconds<br/> 2000 iterations using associative array{} in 0.12947297096252 seconds<br/>
Output for 5.5.22
1000000 iterations using array_filter() in 0.46826815605164 seconds<br/> 500500 iterations using foreach(){} in 0.19772696495056 seconds<br/> 2000 iterations using associative array{} in 0.12901496887207 seconds<br/>
Output for 5.5.21
1000000 iterations using array_filter() in 0.48130798339844 seconds<br/> 500500 iterations using foreach(){} in 0.18147897720337 seconds<br/> 2000 iterations using associative array{} in 0.10406994819641 seconds<br/>
Output for 5.5.20
1000000 iterations using array_filter() in 0.4511890411377 seconds<br/> 500500 iterations using foreach(){} in 0.19587302207947 seconds<br/> 2000 iterations using associative array{} in 0.11910581588745 seconds<br/>
Output for 5.5.19
1000000 iterations using array_filter() in 0.47608304023743 seconds<br/> 500500 iterations using foreach(){} in 0.20002198219299 seconds<br/> 2000 iterations using associative array{} in 0.12758898735046 seconds<br/>
Output for 5.5.18
1000000 iterations using array_filter() in 0.4753270149231 seconds<br/> 500500 iterations using foreach(){} in 0.19634199142456 seconds<br/> 2000 iterations using associative array{} in 0.13376712799072 seconds<br/>
Output for 5.5.16
1000000 iterations using array_filter() in 0.46812391281128 seconds<br/> 500500 iterations using foreach(){} in 0.20302295684814 seconds<br/> 2000 iterations using associative array{} in 0.12537503242493 seconds<br/>
Output for 5.5.15
1000000 iterations using array_filter() in 0.47005391120911 seconds<br/> 500500 iterations using foreach(){} in 0.19856095314026 seconds<br/> 2000 iterations using associative array{} in 0.13655114173889 seconds<br/>
Output for 5.5.14
1000000 iterations using array_filter() in 0.45813488960266 seconds<br/> 500500 iterations using foreach(){} in 0.18637681007385 seconds<br/> 2000 iterations using associative array{} in 0.12072396278381 seconds<br/>
Output for 5.5.13
1000000 iterations using array_filter() in 0.3995521068573 seconds<br/> 500500 iterations using foreach(){} in 0.1553258895874 seconds<br/> 2000 iterations using associative array{} in 0.10145092010498 seconds<br/>
Output for 5.5.12
1000000 iterations using array_filter() in 0.40409207344055 seconds<br/> 500500 iterations using foreach(){} in 0.153813123703 seconds<br/> 2000 iterations using associative array{} in 0.10458779335022 seconds<br/>
Output for 5.5.11
1000000 iterations using array_filter() in 0.49135208129883 seconds<br/> 500500 iterations using foreach(){} in 0.18417501449585 seconds<br/> 2000 iterations using associative array{} in 0.12817788124084 seconds<br/>
Output for 5.5.10
1000000 iterations using array_filter() in 0.4612181186676 seconds<br/> 500500 iterations using foreach(){} in 0.19413208961487 seconds<br/> 2000 iterations using associative array{} in 0.12934589385986 seconds<br/>
Output for 5.5.9
1000000 iterations using array_filter() in 0.46542406082153 seconds<br/> 500500 iterations using foreach(){} in 0.19839215278625 seconds<br/> 2000 iterations using associative array{} in 0.12935495376587 seconds<br/>
Output for 5.5.8
1000000 iterations using array_filter() in 0.4364709854126 seconds<br/> 500500 iterations using foreach(){} in 0.16919302940369 seconds<br/> 2000 iterations using associative array{} in 0.11424112319946 seconds<br/>
Output for 5.5.7
1000000 iterations using array_filter() in 0.44897103309631 seconds<br/> 500500 iterations using foreach(){} in 0.18116807937622 seconds<br/> 2000 iterations using associative array{} in 0.10783314704895 seconds<br/>
Output for 5.5.6
1000000 iterations using array_filter() in 0.47119903564453 seconds<br/> 500500 iterations using foreach(){} in 0.18515801429749 seconds<br/> 2000 iterations using associative array{} in 0.12055397033691 seconds<br/>
Output for 5.5.5
1000000 iterations using array_filter() in 0.48642897605896 seconds<br/> 500500 iterations using foreach(){} in 0.20375394821167 seconds<br/> 2000 iterations using associative array{} in 0.13361406326294 seconds<br/>
Output for 5.5.4
1000000 iterations using array_filter() in 0.47083711624146 seconds<br/> 500500 iterations using foreach(){} in 0.19996404647827 seconds<br/> 2000 iterations using associative array{} in 0.12441301345825 seconds<br/>
Output for 5.5.3
1000000 iterations using array_filter() in 0.48201012611389 seconds<br/> 500500 iterations using foreach(){} in 0.20241904258728 seconds<br/> 2000 iterations using associative array{} in 0.12630605697632 seconds<br/>
Output for 5.5.2
1000000 iterations using array_filter() in 0.46475696563721 seconds<br/> 500500 iterations using foreach(){} in 0.1879460811615 seconds<br/> 2000 iterations using associative array{} in 0.12332010269165 seconds<br/>
Output for 5.5.1
1000000 iterations using array_filter() in 0.46645498275757 seconds<br/> 500500 iterations using foreach(){} in 0.19839286804199 seconds<br/> 2000 iterations using associative array{} in 0.12989401817322 seconds<br/>
Output for 5.5.0
1000000 iterations using array_filter() in 0.37410378456116 seconds<br/> 500500 iterations using foreach(){} in 0.16061902046204 seconds<br/> 2000 iterations using associative array{} in 0.10509705543518 seconds<br/>
Output for 5.4.45
1000000 iterations using array_filter() in 0.4545841217041 seconds<br/> 500500 iterations using foreach(){} in 0.17671799659729 seconds<br/> 2000 iterations using associative array{} in 0.11727499961853 seconds<br/>
Output for 5.4.44
1000000 iterations using array_filter() in 0.46872401237488 seconds<br/> 500500 iterations using foreach(){} in 0.18732810020447 seconds<br/> 2000 iterations using associative array{} in 0.12391185760498 seconds<br/>
Output for 5.4.43
1000000 iterations using array_filter() in 0.35938596725464 seconds<br/> 500500 iterations using foreach(){} in 0.18872404098511 seconds<br/> 2000 iterations using associative array{} in 0.098925828933716 seconds<br/>
Output for 5.4.42
1000000 iterations using array_filter() in 0.35676598548889 seconds<br/> 500500 iterations using foreach(){} in 0.15131187438965 seconds<br/> 2000 iterations using associative array{} in 0.098480939865112 seconds<br/>
Output for 5.4.41
1000000 iterations using array_filter() in 0.37566804885864 seconds<br/> 500500 iterations using foreach(){} in 0.15244293212891 seconds<br/> 2000 iterations using associative array{} in 0.10012412071228 seconds<br/>
Output for 5.4.40
1000000 iterations using array_filter() in 0.45827198028564 seconds<br/> 500500 iterations using foreach(){} in 0.18928813934326 seconds<br/> 2000 iterations using associative array{} in 0.12561297416687 seconds<br/>
Output for 5.4.39
1000000 iterations using array_filter() in 0.44183111190796 seconds<br/> 500500 iterations using foreach(){} in 0.18807601928711 seconds<br/> 2000 iterations using associative array{} in 0.12770104408264 seconds<br/>
Output for 5.4.38
1000000 iterations using array_filter() in 0.46363615989685 seconds<br/> 500500 iterations using foreach(){} in 0.19585204124451 seconds<br/> 2000 iterations using associative array{} in 0.12795519828796 seconds<br/>
Output for 5.4.37
1000000 iterations using array_filter() in 0.45775318145752 seconds<br/> 500500 iterations using foreach(){} in 0.19123482704163 seconds<br/> 2000 iterations using associative array{} in 0.12753319740295 seconds<br/>
Output for 5.4.36
1000000 iterations using array_filter() in 0.45050501823425 seconds<br/> 500500 iterations using foreach(){} in 0.17666792869568 seconds<br/> 2000 iterations using associative array{} in 0.11559391021729 seconds<br/>
Output for 5.4.35
1000000 iterations using array_filter() in 0.46587586402893 seconds<br/> 500500 iterations using foreach(){} in 0.19142508506775 seconds<br/> 2000 iterations using associative array{} in 0.12731599807739 seconds<br/>
Output for 5.4.34
1000000 iterations using array_filter() in 0.46364498138428 seconds<br/> 500500 iterations using foreach(){} in 0.19246196746826 seconds<br/> 2000 iterations using associative array{} in 0.12576389312744 seconds<br/>
Output for 5.4.32
1000000 iterations using array_filter() in 0.46780705451965 seconds<br/> 500500 iterations using foreach(){} in 0.19526481628418 seconds<br/> 2000 iterations using associative array{} in 0.12968587875366 seconds<br/>
Output for 5.4.31
1000000 iterations using array_filter() in 0.40657997131348 seconds<br/> 500500 iterations using foreach(){} in 0.15313506126404 seconds<br/> 2000 iterations using associative array{} in 0.10041999816895 seconds<br/>
Output for 5.4.30
1000000 iterations using array_filter() in 0.46869492530823 seconds<br/> 500500 iterations using foreach(){} in 0.1794490814209 seconds<br/> 2000 iterations using associative array{} in 0.11483907699585 seconds<br/>
Output for 5.4.29
1000000 iterations using array_filter() in 0.39578008651733 seconds<br/> 500500 iterations using foreach(){} in 0.15105295181274 seconds<br/> 2000 iterations using associative array{} in 0.098701953887939 seconds<br/>
Output for 5.4.28
1000000 iterations using array_filter() in 0.46791100502014 seconds<br/> 500500 iterations using foreach(){} in 0.19216012954712 seconds<br/> 2000 iterations using associative array{} in 0.1254870891571 seconds<br/>
Output for 5.4.27
1000000 iterations using array_filter() in 0.44528484344482 seconds<br/> 500500 iterations using foreach(){} in 0.18452095985413 seconds<br/> 2000 iterations using associative array{} in 0.099285840988159 seconds<br/>
Output for 5.4.26
1000000 iterations using array_filter() in 0.4402379989624 seconds<br/> 500500 iterations using foreach(){} in 0.17851305007935 seconds<br/> 2000 iterations using associative array{} in 0.12408709526062 seconds<br/>
Output for 5.4.25
1000000 iterations using array_filter() in 0.47079110145569 seconds<br/> 500500 iterations using foreach(){} in 0.19769906997681 seconds<br/> 2000 iterations using associative array{} in 0.13007092475891 seconds<br/>
Output for 5.4.24
1000000 iterations using array_filter() in 0.48482394218445 seconds<br/> 500500 iterations using foreach(){} in 0.19204998016357 seconds<br/> 2000 iterations using associative array{} in 0.13047194480896 seconds<br/>
Output for 5.4.23
1000000 iterations using array_filter() in 0.47062802314758 seconds<br/> 500500 iterations using foreach(){} in 0.19868993759155 seconds<br/> 2000 iterations using associative array{} in 0.1196129322052 seconds<br/>
Output for 5.4.22
1000000 iterations using array_filter() in 0.46075701713562 seconds<br/> 500500 iterations using foreach(){} in 0.18204402923584 seconds<br/> 2000 iterations using associative array{} in 0.11855506896973 seconds<br/>
Output for 5.4.21
1000000 iterations using array_filter() in 0.48146796226501 seconds<br/> 500500 iterations using foreach(){} in 0.19389200210571 seconds<br/> 2000 iterations using associative array{} in 0.12073278427124 seconds<br/>
Output for 5.4.20
1000000 iterations using array_filter() in 0.46100282669067 seconds<br/> 500500 iterations using foreach(){} in 0.17464303970337 seconds<br/> 2000 iterations using associative array{} in 0.11485505104065 seconds<br/>
Output for 5.4.19
1000000 iterations using array_filter() in 0.46459102630615 seconds<br/> 500500 iterations using foreach(){} in 0.18743801116943 seconds<br/> 2000 iterations using associative array{} in 0.12444305419922 seconds<br/>
Output for 5.4.18
1000000 iterations using array_filter() in 0.4629271030426 seconds<br/> 500500 iterations using foreach(){} in 0.19124102592468 seconds<br/> 2000 iterations using associative array{} in 0.13553810119629 seconds<br/>
Output for 5.4.17
1000000 iterations using array_filter() in 0.45103216171265 seconds<br/> 500500 iterations using foreach(){} in 0.19047594070435 seconds<br/> 2000 iterations using associative array{} in 0.1187469959259 seconds<br/>
Output for 5.4.16
1000000 iterations using array_filter() in 0.35011792182922 seconds<br/> 500500 iterations using foreach(){} in 0.15107607841492 seconds<br/> 2000 iterations using associative array{} in 0.099843978881836 seconds<br/>
Output for 5.4.15
1000000 iterations using array_filter() in 0.48579621315002 seconds<br/> 500500 iterations using foreach(){} in 0.21204519271851 seconds<br/> 2000 iterations using associative array{} in 0.13645696640015 seconds<br/>
Output for 5.4.14
1000000 iterations using array_filter() in 0.47702789306641 seconds<br/> 500500 iterations using foreach(){} in 0.17471599578857 seconds<br/> 2000 iterations using associative array{} in 0.097939014434814 seconds<br/>
Output for 5.4.13
1000000 iterations using array_filter() in 0.44579887390137 seconds<br/> 500500 iterations using foreach(){} in 0.15387105941772 seconds<br/> 2000 iterations using associative array{} in 0.10022211074829 seconds<br/>
Output for 5.4.12
1000000 iterations using array_filter() in 0.36956405639648 seconds<br/> 500500 iterations using foreach(){} in 0.1555380821228 seconds<br/> 2000 iterations using associative array{} in 0.10487985610962 seconds<br/>
Output for 5.4.11
1000000 iterations using array_filter() in 0.35533094406128 seconds<br/> 500500 iterations using foreach(){} in 0.16989398002625 seconds<br/> 2000 iterations using associative array{} in 0.16592407226562 seconds<br/>
Output for 5.4.10
1000000 iterations using array_filter() in 0.35304498672485 seconds<br/> 500500 iterations using foreach(){} in 0.14969396591187 seconds<br/> 2000 iterations using associative array{} in 0.099004983901978 seconds<br/>
Output for 5.4.9
1000000 iterations using array_filter() in 0.40423202514648 seconds<br/> 500500 iterations using foreach(){} in 0.15082693099976 seconds<br/> 2000 iterations using associative array{} in 0.097841024398804 seconds<br/>
Output for 5.4.8
1000000 iterations using array_filter() in 0.36887097358704 seconds<br/> 500500 iterations using foreach(){} in 0.15550088882446 seconds<br/> 2000 iterations using associative array{} in 0.10314393043518 seconds<br/>
Output for 5.4.7
1000000 iterations using array_filter() in 0.45196199417114 seconds<br/> 500500 iterations using foreach(){} in 0.18909478187561 seconds<br/> 2000 iterations using associative array{} in 0.10224390029907 seconds<br/>
Output for 5.4.6
1000000 iterations using array_filter() in 0.47300386428833 seconds<br/> 500500 iterations using foreach(){} in 0.19003105163574 seconds<br/> 2000 iterations using associative array{} in 0.12592101097107 seconds<br/>
Output for 5.4.5
1000000 iterations using array_filter() in 0.46507287025452 seconds<br/> 500500 iterations using foreach(){} in 0.18995189666748 seconds<br/> 2000 iterations using associative array{} in 0.12602496147156 seconds<br/>
Output for 5.4.4
1000000 iterations using array_filter() in 0.49600315093994 seconds<br/> 500500 iterations using foreach(){} in 0.19045996665955 seconds<br/> 2000 iterations using associative array{} in 0.12709593772888 seconds<br/>
Output for 5.4.3
1000000 iterations using array_filter() in 0.4856870174408 seconds<br/> 500500 iterations using foreach(){} in 0.19507694244385 seconds<br/> 2000 iterations using associative array{} in 0.12922501564026 seconds<br/>
Output for 5.4.2
1000000 iterations using array_filter() in 0.47114896774292 seconds<br/> 500500 iterations using foreach(){} in 0.20867109298706 seconds<br/> 2000 iterations using associative array{} in 0.13006401062012 seconds<br/>
Output for 5.4.1
1000000 iterations using array_filter() in 0.38511514663696 seconds<br/> 500500 iterations using foreach(){} in 0.14799499511719 seconds<br/> 2000 iterations using associative array{} in 0.09703803062439 seconds<br/>
Output for 5.4.0
1000000 iterations using array_filter() in 0.48536705970764 seconds<br/> 500500 iterations using foreach(){} in 0.20142388343811 seconds<br/> 2000 iterations using associative array{} in 0.13330698013306 seconds<br/>
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29
Parse error: syntax error, unexpected '[' in /in/iVsCO on line 3
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, 5.0.0 - 5.0.5
Parse error: parse error, unexpected '[' in /in/iVsCO on line 3
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/iVsCO on line 3
Process exited with code 255.

preferences:
269.12 ms | 401 KiB | 338 Q