3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = array(); for($i = 0; $i < pow(10, 5); $i++) { $a[$i] = array( md5($i.microtime(true)) ); } $sum = 0; $times['for']['before'] = microtime(true); for($j = 0; $i < count($a); $i++) { $sum += 1000; } $times['for']['after'] = microtime(true); unset($sum); $sum = 0; $times['foreach']['before'] = microtime(true); foreach($a as $k) { $sum += 1000; } $times['foreach']['after'] = microtime(true); unset($sum); $t_for = $times['for']['after'] - $times['for']['before']; $t_foreach = $times['foreach']['after'] - $times['foreach']['before']; var_dump(array( 'for' => sprintf('%f', $t_for), 'foreach' => sprintf('%f', $t_foreach), 'is \'for\' faster than \'foreach\'?' => $t_for < $t_foreach, 'how much faster?' => (1 - ($t_for / $t_foreach) * 100).'%' ));
Output for 7.4.0
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.010126" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.93878175696358%" }
Output for 7.3.12
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.011112" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95494239062802%" }
Output for 7.3.11
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.009674" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95810331230284%" }
Output for 7.3.10
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.009609" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.93796987817284%" }
Output for 7.3.9
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.009851" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.94917469383804%" }
Output for 7.3.8
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.008035" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.93768730898193%" }
Output for 7.3.7
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.007237" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9472903969692%" }
Output for 7.3.6
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.006857" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95827538247566%" }
Output for 7.3.5
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.007283" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95744262939077%" }
Output for 7.3.4
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.008295" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95113819268797%" }
Output for 7.3.3
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.008039" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.94958182573106%" }
Output for 7.3.2
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.008073" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96160774932814%" }
Output for 7.3.1
array(4) { ["for"]=> string(8) "0.000002" ["foreach"]=> string(8) "0.009222" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97673216132368%" }
Output for 7.3.0
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.007924" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.94885064388013%" }
Output for 7.2.25
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.010903" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95407828558933%" }
Output for 7.2.24
array(4) { ["for"]=> string(8) "0.000007" ["foreach"]=> string(8) "0.012499" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.94277539341917%" }
Output for 7.2.23
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.010290" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95134270951598%" }
Output for 7.2.22
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.011997" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95031697768239%" }
Output for 7.2.21
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.009895" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95903910560682%" }
Output for 7.2.20
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.009247" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.8813974474668%" }
Output for 7.2.19
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.010706" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95323356493854%" }
Output for 7.2.18
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.009509" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95737639153545%" }
Output for 7.2.17
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.010685" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96429846483399%" }
Output for 7.2.13
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.009967" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95933500777419%" }
Output for 7.2.12
array(4) { ["for"]=> string(8) "0.000002" ["foreach"]=> string(8) "0.010045" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98101205734359%" }
Output for 7.2.11
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.009741" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.89720243777076%" }
Output for 7.2.10
array(4) { ["for"]=> string(8) "0.000002" ["foreach"]=> string(8) "0.008657" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97521343982374%" }
Output for 7.2.9
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.009539" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96750812296926%" }
Output for 7.2.8
array(4) { ["for"]=> string(8) "0.000002" ["foreach"]=> string(8) "0.008549" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97490029840756%" }
Output for 7.2.7
array(4) { ["for"]=> string(8) "0.000008" ["foreach"]=> string(8) "0.008625" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90877930119416%" }
Output for 7.2.6
array(4) { ["for"]=> string(8) "0.000002" ["foreach"]=> string(8) "0.008965" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97872453592894%" }
Output for 7.2.5
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.010074" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.88166520720422%" }
Output for 7.2.4
array(4) { ["for"]=> string(8) "0.000002" ["foreach"]=> string(8) "0.009447" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97728649303452%" }
Output for 7.2.3
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.009626" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.88606528954278%" }
Output for 7.2.2
array(4) { ["for"]=> string(8) "0.000002" ["foreach"]=> string(8) "0.009451" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97729566094854%" }
Output for 7.2.1
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.009730" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97059616279925%" }
Output for 7.2.0
array(4) { ["for"]=> string(8) "0.000002" ["foreach"]=> string(8) "0.009096" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97641014887817%" }
Output for 7.1.33
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.011963" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97409119897959%" }
Output for 7.1.32
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.011257" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.89410369366317%" }
Output for 7.1.31
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.010781" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97125102280015%" }
Output for 7.1.30
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.011368" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97483274260187%" }
Output for 7.1.29
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.011263" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97459833619102%" }
Output for 7.1.28
array(4) { ["for"]=> string(8) "0.000002" ["foreach"]=> string(8) "0.011236" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98302459312072%" }
Output for 7.1.27
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.014285" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97162694438881%" }
Output for 7.1.26
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.011021" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90048674959438%" }
Output for 7.1.25
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.032161" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9658988976448%" }
Output for 7.1.24
array(4) { ["for"]=> string(8) "0.000015" ["foreach"]=> string(8) "0.011365" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.86783586473106%" }
Output for 7.1.23
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.012928" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97049277072883%" }
Output for 7.1.22
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.011349" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.89496018991198%" }
Output for 7.1.21
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.010822" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97135996122579%" }
Output for 7.1.20
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.011490" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97302456839309%" }
Output for 7.1.19
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.009827" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97088650589548%" }
Output for 7.1.18
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.010767" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.88928255093003%" }
Output for 7.1.17
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.011370" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97483696449915%" }
Output for 7.1.16
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.010971" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97174834293165%" }
Output for 7.1.15
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.010858" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90777743621273%" }
Output for 7.1.14
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.012297" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9670395719022%" }
Output for 7.1.13
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.010711" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97328881469115%" }
Output for 7.1.12
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.012883" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97594151938558%" }
Output for 7.1.11
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.012695" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97558547899412%" }
Output for 7.1.10
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.011416" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.91228436573243%" }
Output for 7.1.9
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.011038" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97408039397801%" }
Output for 7.1.8
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.012020" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97421453506823%" }
Output for 7.1.7
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.011327" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.89265191858385%" }
Output for 7.1.6
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.012060" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97627708366282%" }
Output for 7.1.5
array(4) { ["for"]=> string(8) "0.000014" ["foreach"]=> string(8) "0.011009" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.87222523010287%" }
Output for 7.1.4
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.012051" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96636660401622%" }
Output for 7.1.3
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.011024" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97404788165834%" }
Output for 7.1.2
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.010908" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97377163839832%" }
Output for 7.1.1
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.011816" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97376916868442%" }
Output for 7.1.0
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.011196" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.91056218057922%" }
Output for 7.0.33
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.011495" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.91288837267184%" }
Output for 7.0.32
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.012005" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97616777883699%" }
Output for 7.0.31
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.010229" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.88112719390252%" }
Output for 7.0.30
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.011889" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.89973127982994%" }
Output for 7.0.29
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.011384" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9120382005529%" }
Output for 7.0.28
array(4) { ["for"]=> string(8) "0.000013" ["foreach"]=> string(8) "0.012361" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.8939145529945%" }
Output for 7.0.27
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.011090" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9097065462754%" }
Output for 7.0.26
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.010838" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.91860618592987%" }
Output for 7.0.25
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.012073" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9012599233777%" }
Output for 7.0.24
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.011639" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90372206403507%" }
Output for 7.0.23
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.012227" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90250180371663%" }
Output for 7.0.22
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.011526" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97517737831744%" }
Output for 7.0.21
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.011373" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90146957086854%" }
Output for 7.0.20
array(4) { ["for"]=> string(8) "0.000013" ["foreach"]=> string(8) "0.013229" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90087589662257%" }
Output for 7.0.19
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.011453" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.92089431063555%" }
Output for 7.0.18
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.010769" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90701381509033%" }
Output for 7.0.17
array(4) { ["for"]=> string(8) "0.000017" ["foreach"]=> string(8) "0.013702" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.87471724377936%" }
Output for 7.0.16
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.011225" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90229604298974%" }
Output for 7.0.15
array(4) { ["for"]=> string(8) "0.000014" ["foreach"]=> string(8) "0.011201" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.87654320987654%" }
Output for 7.0.14
array(4) { ["for"]=> string(8) "0.000008" ["foreach"]=> string(8) "0.011253" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.93008326447594%" }
Output for 7.0.13
array(4) { ["for"]=> string(8) "0.000013" ["foreach"]=> string(8) "0.011714" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.88805666368151%" }
Output for 7.0.12
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.011015" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.88961038961039%" }
Output for 7.0.11
array(4) { ["for"]=> string(8) "0.000013" ["foreach"]=> string(8) "0.012163" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.89218857198863%" }
Output for 7.0.10
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.011629" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.91594054331112%" }
Output for 7.0.9
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.011466" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9043499958413%" }
Output for 7.0.8
array(4) { ["for"]=> string(8) "0.000019" ["foreach"]=> string(8) "0.012385" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.84599688143685%" }
Output for 7.0.7
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.011190" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.91051263476371%" }
Output for 7.0.6
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.011109" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.92059233823372%" }
Output for 7.0.5
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.011447" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90419061901191%" }
Output for 7.0.4
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.011209" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90215680435615%" }
Output for 7.0.3
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.011094" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96346600189117%" }
Output for 7.0.2
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.010609" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90561161426613%" }
Output for 7.0.1
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.010280" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9698494793237%" }
Output for 7.0.0
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.011953" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96609087645111%" }
Output for 5.6.38
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.032128" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9903528626025%" }
Output for 5.6.37
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.033180" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97269467618042%" }
Output for 5.6.36
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.032729" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97231833910035%" }
Output for 5.6.35
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.033569" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97301117195435%" }
Output for 5.6.34
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.031855" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97155901504378%" }
Output for 5.6.33
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.029018" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98931887273026%" }
Output for 5.6.32
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.032263" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98743727876678%" }
Output for 5.6.31
array(4) { ["for"]=> string(8) "0.000013" ["foreach"]=> string(8) "0.038457" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96652200867948%" }
Output for 5.6.30
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.041310" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99076569687246%" }
Output for 5.6.29
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.032313" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96901055116948%" }
Output for 5.6.28
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.035008" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99114652501107%" }
Output for 5.6.27
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.033641" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98795189261593%" }
Output for 5.6.26
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.032989" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9848228611075%" }
Output for 5.6.25
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.033052" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99062258802144%" }
Output for 5.6.24
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.034632" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98554286540408%" }
Output for 5.6.23
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.036340" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98884668123159%" }
Output for 5.6.22
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.030968" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99076134237695%" }
Output for 5.6.21
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.028541" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98914042268816%" }
Output for 5.6.20
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.035088" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98844873275803%" }
Output for 5.6.19
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.031973" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98732327149078%" }
Output for 5.6.18
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.035778" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98867150015993%" }
Output for 5.6.17
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.030323" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9897785885017%" }
Output for 5.6.16
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.032628" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(15) "0.987577821296%" }
Output for 5.6.15
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.039672" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99038438424001%" }
Output for 5.6.14
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.032051" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96578195667698%" }
Output for 5.6.13
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.031780" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98724633332083%" }
Output for 5.6.12
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.032663" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97007277425383%" }
Output for 5.6.11
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.030541" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98750956299084%" }
Output for 5.6.10
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.028822" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96856594533783%" }
Output for 5.6.9
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.031274" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98704001585692%" }
Output for 5.6.8
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.029135" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96972201536812%" }
Output for 5.6.7
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.033246" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98780863865522%" }
Output for 5.6.6
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.031940" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99104250332174%" }
Output for 5.6.5
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.032009" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98733762364438%" }
Output for 5.6.4
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.032749" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98835169155279%" }
Output for 5.6.3
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.033573" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96733302560097%" }
Output for 5.6.2
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.032120" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98812360359558%" }
Output for 5.6.1
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.031336" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98706565322255%" }
Output for 5.6.0
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.030533" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98750624687656%" }
Output for 5.5.38
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.039209" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(15) "0.989662825697%" }
Output for 5.5.37
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.038420" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96897204381147%" }
Output for 5.5.36
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.030853" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97140803820504%" }
Output for 5.5.35
array(4) { ["for"]=> string(8) "0.000024" ["foreach"]=> string(8) "0.033707" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.92855980817248%" }
Output for 5.5.34
array(4) { ["for"]=> string(8) "0.000029" ["foreach"]=> string(8) "0.037460" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.92298781807304%" }
Output for 5.5.33
array(4) { ["for"]=> string(8) "0.000027" ["foreach"]=> string(8) "0.037824" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.92814144788679%" }
Output for 5.5.32
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.035512" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98925799607917%" }
Output for 5.5.31
array(4) { ["for"]=> string(8) "0.000024" ["foreach"]=> string(8) "0.030259" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.92120710711894%" }
Output for 5.5.30
array(4) { ["for"]=> string(8) "0.000021" ["foreach"]=> string(8) "0.036813" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.94300702697452%" }
Output for 5.5.29
array(4) { ["for"]=> string(8) "0.000047" ["foreach"]=> string(8) "0.038645" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.87846183269685%" }
Output for 5.5.28
array(4) { ["for"]=> string(8) "0.000063" ["foreach"]=> string(8) "0.039627" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.84116288024644%" }
Output for 5.5.27
array(4) { ["for"]=> string(8) "0.000037" ["foreach"]=> string(8) "0.031527" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.88202731521394%" }
Output for 5.5.26
array(4) { ["for"]=> string(8) "0.000025" ["foreach"]=> string(8) "0.030041" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.91666732803708%" }
Output for 5.5.25
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.030634" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98365606126642%" }
Output for 5.5.24
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.029931" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96973076310339%" }
Output for 5.5.23
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.033675" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96743224490952%" }
Output for 5.5.22
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.031959" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98731778643152%" }
Output for 5.5.21
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.033126" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98776450266302%" }
Output for 5.5.20
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.032263" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9844812296778%" }
Output for 5.5.19
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.034041" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96428021123703%" }
Output for 5.5.18
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.032873" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96591214035495%" }
Output for 5.5.17
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.032956" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96672164829123%" }
Output for 5.5.16
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.029153" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96565175789396%" }
Output for 5.5.15
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.033572" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97017278479664%" }
Output for 5.5.14
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.032892" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98477808624301%" }
Output for 5.5.13
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.033800" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97037392340954%" }
Output for 5.5.12
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.036963" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9754892475199%" }
Output for 5.5.11
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.033448" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97077503189798%" }
Output for 5.5.10
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.032483" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98752238630692%" }
Output for 5.5.9
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.032880" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96374394523885%" }
Output for 5.5.8
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.036959" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9864530986924%" }
Output for 5.5.7
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.033007" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98772040074833%" }
Output for 5.5.6
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.030819" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9868486198787%" }
Output for 5.5.5
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.033050" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9848508894692%" }
Output for 5.5.4
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.034654" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98830401309951%" }
Output for 5.5.3
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.035048" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9714289601502%" }
Output for 5.5.2
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.037086" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97621343619415%" }
Output for 5.5.1
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.032536" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96922310319054%" }
Output for 5.5.0
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.032404" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98749190652775%" }
Output for 5.4.45
array(4) { ["for"]=> string(8) "0.000016" ["foreach"]=> string(8) "0.032599" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9509983178527%" }
Output for 5.4.44
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.033157" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98777594017401%" }
Output for 5.4.43
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.030849" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99072571296082%" }
Output for 5.4.42
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.034532" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98550104254408%" }
Output for 5.4.41
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.030031" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98650354480426%" }
Output for 5.4.40
array(4) { ["for"]=> string(8) "0.000013" ["foreach"]=> string(8) "0.033618" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(15) "0.961703485692%" }
Output for 5.4.39
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.033115" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9884804239204%" }
Output for 5.4.38
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.034448" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98546561926844%" }
Output for 5.4.37
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.032748" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96651013796367%" }
Output for 5.4.36
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.032772" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96944454548761%" }
Output for 5.4.35
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.034866" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97196351153599%" }
Output for 5.4.34
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.032996" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96676204514581%" }
Output for 5.4.33
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.033150" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98777339058263%" }
Output for 5.4.32
array(4) { ["for"]=> string(8) "0.000013" ["foreach"]=> string(8) "0.030813" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95821694689683%" }
Output for 5.4.31
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.034810" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98561673390273%" }
Output for 5.4.30
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.033062" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96971270335756%" }
Output for 5.4.29
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.037024" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97037800244703%" }
Output for 5.4.28
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.034028" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98528628681932%" }
Output for 5.4.27
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.037543" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98412365765525%" }
Output for 5.4.26
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.035184" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96882877510639%" }
Output for 5.4.25
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.034605" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98553160998732%" }
Output for 5.4.24
array(4) { ["for"]=> string(8) "0.000016" ["foreach"]=> string(8) "0.034712" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95398130404621%" }
Output for 5.4.23
array(4) { ["for"]=> string(8) "0.000014" ["foreach"]=> string(8) "0.032966" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95732955326212%" }
Output for 5.4.22
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.031729" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98722582487357%" }
Output for 5.4.21
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.036647" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96747078876831%" }
Output for 5.4.20
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.044289" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98600359599918%" }
Output for 5.4.19
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.034762" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9684505805779%" }
Output for 5.4.18
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.035586" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96918088142679%" }
Output for 5.4.17
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.034773" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98560144808294%" }
Output for 5.4.16
array(4) { ["for"]=> string(8) "0.000013" ["foreach"]=> string(8) "0.033389" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96072662877381%" }
Output for 5.4.15
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.038768" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98462522447172%" }
Output for 5.4.14
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.033554" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98507844474761%" }
Output for 5.4.13
array(4) { ["for"]=> string(8) "0.000015" ["foreach"]=> string(8) "0.033778" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95553202752779%" }
Output for 5.4.12
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.032776" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98472416201117%" }
Output for 5.4.11
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.033329" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9670939681813%" }
Output for 5.4.10
array(4) { ["for"]=> string(8) "0.000013" ["foreach"]=> string(8) "0.033985" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96141515191907%" }
Output for 5.4.9
array(4) { ["for"]=> string(8) "0.000014" ["foreach"]=> string(8) "0.029879" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95292127479613%" }
Output for 5.4.8
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.032197" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9844495127514%" }
Output for 5.4.7
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.036349" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98884938802818%" }
Output for 5.4.6
array(4) { ["for"]=> string(8) "0.000015" ["foreach"]=> string(8) "0.036442" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95943709150861%" }
Output for 5.4.5
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.034717" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98557830977791%" }
Output for 5.4.4
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.034598" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98828515315439%" }
Output for 5.4.3
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.033884" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9852237545736%" }
Output for 5.4.2
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.034370" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98890106688495%" }
Output for 5.4.1
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.035416" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98586296500747%" }
Output for 5.4.0
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.029756" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98637885999071%" }
Output for 5.3.29
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.036313" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96979804081204%" }
Output for 5.3.28
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.031845" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98427755358734%" }
Output for 5.3.27
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.036767" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98638238269395%" }
Output for 5.3.26
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.039211" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98479901254385%" }
Output for 5.3.25
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.035952" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96949480748571%" }
Output for 5.3.24
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.033961" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96770638079793%" }
Output for 5.3.23
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.034298" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96802357913469%" }
Output for 5.3.22
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.035988" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98608764781874%" }
Output for 5.3.21
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.035589" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98861131767055%" }
Output for 5.3.20
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.031070" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96470145875059%" }
Output for 5.3.19
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.030439" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98668452506834%" }
Output for 5.3.18
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.033549" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98507611182967%" }
Output for 5.3.17
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.044321" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99085505258345%" }
Output for 5.3.16
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.034259" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98538550938459%" }
Output for 5.3.15
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.035420" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98586448755402%" }
Output for 5.3.14
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.038033" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98683567156881%" }
Output for 5.3.13
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.036184" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98879861893561%" }
Output for 5.3.12
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.035365" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98584256937141%" }
Output for 5.3.11
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.032989" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98771374470607%" }
Output for 5.3.10
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.032565" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98462518394869%" }
Output for 5.3.9
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.032504" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98753044039551%" }
Output for 5.3.8
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.034068" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98530358592503%" }
Output for 5.3.7
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.033460" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98218637328811%" }
Output for 5.3.6
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.032850" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96951728442551%" }
Output for 5.3.5
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.033802" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98518790204266%" }
Output for 5.3.4
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.032691" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98468450071472%" }
Output for 5.3.3
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.033049" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98485045232221%" }
Output for 5.3.2
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.034019" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9852823682772%" }
Output for 5.3.1
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.150518" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(15) "0.996673625653%" }
Output for 5.3.0
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.153700" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99208890212576%" }
Output for 5.2.17
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.011404" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96445893962201%" }
Output for 5.2.16
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.012108" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96849401386263%" }
Output for 5.2.15
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.011601" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96711743187143%" }
Output for 5.2.14
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.012557" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96012683464029%" }
Output for 5.2.13
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.012642" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.91324846770391%" }
Output for 5.2.12
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.011321" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.91154729060927%" }
Output for 5.2.11
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.011134" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90149892933619%" }
Output for 5.2.10
array(4) { ["for"]=> string(8) "0.000011" ["foreach"]=> string(8) "0.013789" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9204647624317%" }
Output for 5.2.9
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.012517" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(5) "0.96%" }
Output for 5.2.8
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.010684" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.94421137195394%" }
Output for 5.2.7
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.011134" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95503211991435%" }
Output for 5.2.6
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.011011" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90905744538033%" }
Output for 5.2.5
array(4) { ["for"]=> string(8) "0.000012" ["foreach"]=> string(8) "0.012545" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.90307499334828%" }
Output for 5.2.4
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.012604" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.95270973233709%" }
Output for 5.2.3
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.010803" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9073093220339%" }
Output for 5.2.2
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.011444" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.92083333333333%" }
Output for 5.2.1
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.015629" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97406678565436%" }
Output for 5.2.0
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.011489" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.92114219307711%" }
Output for 5.1.6
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.011158" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96581196581197%" }
Output for 5.1.5
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.015324" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.94087719571204%" }
Output for 5.1.4
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.011101" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.94630699512468%" }
Output for 5.1.3
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.011510" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96685723755075%" }
Output for 5.1.2
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.011326" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9200084201663%" }
Output for 5.1.1
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.016887" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97599853167488%" }
Output for 5.1.0
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.015832" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.96235223251261%" }
Output for 5.0.5
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.041697" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99027960432272%" }
Output for 5.0.4
array(4) { ["for"]=> string(8) "0.000009" ["foreach"]=> string(8) "0.043853" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9793403032626%" }
Output for 5.0.3
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.041664" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99256088628456%" }
Output for 5.0.2
array(4) { ["for"]=> string(8) "0.000010" ["foreach"]=> string(8) "0.042196" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.97626877309557%" }
Output for 5.0.1
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.060491" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99329964764029%" }
Output for 5.0.0
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.046194" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98916140220488%" }
Output for 4.4.9
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.035804" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98882806390346%" }
Output for 4.4.8
array(4) { ["for"]=> string(8) "0.000003" ["foreach"]=> string(8) "0.036258" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99172596392527%" }
Output for 4.4.7
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.035993" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98888672797487%" }
Output for 4.4.6
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.034779" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98849880675119%" }
Output for 4.4.5
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.038031" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98948226446845%" }
Output for 4.4.4
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.035984" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98888394842151%" }
Output for 4.4.3
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.036447" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9890251598211%" }
Output for 4.4.2
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.041977" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99047097219905%" }
Output for 4.4.1
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.037547" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98934668548766%" }
Output for 4.4.0
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.035401" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98587610519468%" }
Output for 4.3.11
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.034244" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9824786823969%" }
Output for 4.3.10
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.037701" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(16) "0.9840853027771%" }
Output for 4.3.9
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.047598" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98949535694782%" }
Output for 4.3.8
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.045708" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99124879670954%" }
Output for 4.3.7
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.042594" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98591350894491%" }
Output for 4.3.6
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.046027" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98913681100217%" }
Output for 4.3.5
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.045461" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98680187413386%" }
Output for 4.3.4
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.042118" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98812859110111%" }
Output for 4.3.3
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.043679" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99084228118775%" }
Output for 4.3.2
array(4) { ["for"]=> string(8) "0.000004" ["foreach"]=> string(8) "0.041765" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.99042260265772%" }
Output for 4.3.1
array(4) { ["for"]=> string(8) "0.000005" ["foreach"]=> string(8) "0.046789" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98931372758559%" }
Output for 4.3.0
array(4) { ["for"]=> string(8) "0.000006" ["foreach"]=> string(8) "0.047735" ["is 'for' faster than 'foreach'?"]=> bool(true) ["how much faster?"]=> string(17) "0.98743060647323%" }

preferences:
222.21 ms | 401 KiB | 317 Q