3v4l.org

run code in 300+ PHP versions simultaneously
<?php function convertNew($input) { $oldMin = 0; $oldMax = 1; $newMin = 127; $newMax = 0; return ceil(((($input- $oldMin) * ($newMax - $newMin)) / ($oldMax - $oldMin)) + $newMin); } function convertOld($input) { $range_input = range(1, 0, 1/127); $range_output = range(0, 127); foreach ($range_input as $key => $value) { if ($value <= $input) { return $range_output[$key]; } } return 127; } // Simple benchmark for OLD alpha2gd conversion $start = microtime(1); foreach (range(0,1,1/1000) as $input) { convertOld($input); } $diffOld = microtime(1) - $start; echo "Old time: $diffOld\n"; // Simple benchmark for NEW alpha2gd conversion $start = microtime(1); foreach (range(0,1,1/1000) as $input) { convertNew($input); } $diffNew = microtime(1) - $start; echo "New time: $diffNew\n"; echo (($diffNew-$diffOld)/$diffOld*100)."% faster\n"; // Iterate through a whole bunch of floats $warnings = array(); foreach (range(0,1,1/10000) as $input) { if (convertOld($input) != convertNew($input)) $warnings[] = $input; } if (count($warnings)) { echo "Warning, value mismatches at ".implode(", ", $warnings)."\n"; } else { echo "All values passed!\n"; }
Output for 7.2.0
Old time: 0.001816987991333 New time: 7.4863433837891E-5 -95.879805799764% faster All values passed!
Output for 7.1.7
Old time: 0.0030560493469238 New time: 0.00012707710266113 -95.841784989858% faster All values passed!
Output for 7.1.6
Old time: 0.0037360191345215 New time: 0.00021696090698242 -94.192724952138% faster All values passed!
Output for 7.1.5
Old time: 0.0029559135437012 New time: 0.00012993812561035 -95.604129698338% faster All values passed!
Output for 7.1.0
Old time: 0.0030601024627686 New time: 0.00016307830810547 -94.670821971173% faster All values passed!
Output for 7.0.20
Old time: 0.002129077911377 New time: 0.00016617774963379 -92.194848824188% faster All values passed!
Output for 7.0.14
Old time: 0.0029730796813965 New time: 0.0001680850982666 -94.346431435445% faster All values passed!
Output for 7.0.6
Old time: 0.0017890930175781 New time: 8.7976455688477E-5 -95.082622601279% faster All values passed!
Output for 7.0.5
Old time: 0.0020499229431152 New time: 0.0001220703125 -94.045126773668% faster All values passed!
Output for 7.0.4
Old time: 0.0016560554504395 New time: 9.2983245849609E-5 -94.385257702275% faster All values passed!
Output for 7.0.3
Old time: 0.002331018447876 New time: 0.00011205673217773 -95.192799427227% faster All values passed!
Output for 7.0.2
Old time: 0.002443790435791 New time: 7.4863433837891E-5 -96.936585365854% faster All values passed!
Output for 7.0.1
Old time: 0.002640962600708 New time: 0.00011706352233887 -95.567391893112% faster All values passed!
Output for 7.0.0
Old time: 0.0020987987518311 New time: 9.0837478637695E-5 -95.671930023855% faster All values passed!
Output for 5.6.28
Old time: 0.019901990890503 New time: 0.00052809715270996 -97.346510931417% faster All values passed!
Output for 5.6.21
Old time: 0.017542123794556 New time: 0.00051712989807129 -97.052067901654% faster All values passed!
Output for 5.6.20
Old time: 0.013895034790039 New time: 0.00043201446533203 -96.890871654084% faster All values passed!
Output for 5.6.19
Old time: 0.017043113708496 New time: 0.00045990943908691 -97.301494040624% faster All values passed!
Output for 5.6.18
Old time: 0.012696027755737 New time: 0.00032997131347656 -97.400987774877% faster All values passed!
Output for 5.6.17
Old time: 0.011607885360718 New time: 0.00036406517028809 -96.863639164459% faster All values passed!
Output for 5.6.16
Old time: 0.016580820083618 New time: 0.00049281120300293 -97.027823711266% faster All values passed!
Output for 5.6.15
Old time: 0.017430782318115 New time: 0.00054597854614258 -96.867733552182% faster All values passed!
Output for 5.6.14
Old time: 0.014364957809448 New time: 0.00043416023254395 -96.977643524589% faster All values passed!
Output for 5.6.13
Old time: 0.013352155685425 New time: 0.00040292739868164 -96.982304519401% faster All values passed!
Output for 5.6.12
Old time: 0.012003898620605 New time: 0.00039005279541016 -96.750615714626% faster All values passed!
Output for 5.6.11
Old time: 0.017061948776245 New time: 0.0004279613494873 -97.491720581865% faster All values passed!
Output for 5.6.10
Old time: 0.015426158905029 New time: 0.00047588348388672 -96.915087632531% faster All values passed!
Output for 5.6.9
Old time: 0.014490127563477 New time: 0.00044512748718262 -96.928063709359% faster All values passed!
Output for 5.6.8
Old time: 0.01142692565918 New time: 0.00036811828613281 -96.778501084961% faster All values passed!
Output for 5.6.7
Old time: 0.017629861831665 New time: 0.0005030632019043 -97.146527824735% faster All values passed!
Output for 5.5.35
Old time: 0.016865968704224 New time: 0.00049877166748047 -97.042733351239% faster All values passed!
Output for 5.5.34
Old time: 0.017066955566406 New time: 0.00049710273742676 -97.087337952615% faster All values passed!
Output for 5.5.33
Old time: 0.01203989982605 New time: 0.00030803680419922 -97.441533495713% faster All values passed!
Output for 5.5.32
Old time: 0.015684127807617 New time: 0.00040888786315918 -97.392983096194% faster All values passed!
Output for 5.5.31
Old time: 0.016668081283569 New time: 0.00049710273742676 -97.017636709531% faster All values passed!
Output for 5.5.30
Old time: 0.0157310962677 New time: 0.0004730224609375 -96.993073763659% faster All values passed!
Output for 5.5.29
Old time: 0.018235921859741 New time: 0.00053310394287109 -97.076627400735% faster All values passed!
Output for 5.5.28
Old time: 0.011751174926758 New time: 0.00037384033203125 -96.818698263269% faster All values passed!
Output for 5.5.27
Old time: 0.013719081878662 New time: 0.00043702125549316 -96.814500712523% faster All values passed!
Output for 5.5.26
Old time: 0.0153489112854 New time: 0.00042986869812012 -97.199353816521% faster All values passed!
Output for 5.5.25
Old time: 0.017246007919312 New time: 0.00053310394287109 -96.908826985553% faster All values passed!
Output for 5.5.24
Old time: 0.016607999801636 New time: 0.00049781799316406 -97.002540949482% faster All values passed!
Output for 5.4.45
Old time: 0.020541906356812 New time: 0.00071501731872559 -96.519226082011% faster All values passed!
Output for 5.4.44
Old time: 0.018073797225952 New time: 0.00055718421936035 -96.917171237485% faster All values passed!
Output for 5.4.43
Old time: 0.018522024154663 New time: 0.00049495697021484 -97.327738231622% faster All values passed!
Output for 5.4.42
Old time: 0.017393112182617 New time: 0.00054097175598145 -96.889735716636% faster All values passed!
Output for 5.4.41
Old time: 0.017947912216187 New time: 0.00054001808166504 -96.991192762922% faster All values passed!
Output for 5.4.40
Old time: 0.02063512802124 New time: 0.00054311752319336 -97.367995378394% faster All values passed!
Output for 5.4.39
Old time: 0.035259962081909 New time: 0.0010430812835693 -97.041740200553% faster All values passed!
Output for 5.4.38
Old time: 0.017550945281982 New time: 0.00047802925109863 -97.276333306165% faster All values passed!
Output for 5.4.37
Old time: 0.013091087341309 New time: 0.0004279613494873 -96.730895315801% faster All values passed!
Output for 5.4.36
Old time: 0.013169050216675 New time: 0.00041294097900391 -96.864307051688% faster All values passed!
Output for 5.4.35
Old time: 0.014938116073608 New time: 0.00042605400085449 -97.14787327428% faster All values passed!
Output for 5.4.34
Old time: 0.013040065765381 New time: 0.00039005279541016 -97.008812666837% faster All values passed!
Output for 5.4.32
Old time: 0.012943029403687 New time: 0.00047183036804199 -96.354560023578% faster All values passed!
Output for 5.4.31
Old time: 0.012984037399292 New time: 0.00032997131347656 -97.458638608862% faster All values passed!
Output for 5.4.30
Old time: 0.012936115264893 New time: 0.00037217140197754 -97.123004902503% faster All values passed!
Output for 5.4.29
Old time: 0.013152837753296 New time: 0.00038290023803711 -97.08883934236% faster All values passed!
Output for 5.4.28
Old time: 0.013715028762817 New time: 0.00036191940307617 -97.361147327249% faster All values passed!
Output for 5.4.27
Old time: 0.013113021850586 New time: 0.00034594535827637 -97.361818181818% faster All values passed!
Output for 5.4.26
Old time: 0.013131141662598 New time: 0.00039982795715332 -96.955116566199% faster All values passed!
Output for 5.4.25
Old time: 0.014526128768921 New time: 0.00045204162597656 -96.88807917672% faster All values passed!
Output for 5.4.24
Old time: 0.014932155609131 New time: 0.00039792060852051 -97.335142902762% faster All values passed!
Output for 5.4.23
Old time: 0.013341903686523 New time: 0.00037693977355957 -97.174767691208% faster All values passed!
Output for 5.4.22
Old time: 0.013031959533691 New time: 0.00039005279541016 -97.006952067325% faster All values passed!
Output for 5.4.21
Old time: 0.013159990310669 New time: 0.0003659725189209 -97.219051760059% faster All values passed!
Output for 5.4.20
Old time: 0.012996912002563 New time: 0.00036406517028809 -97.198833305817% faster All values passed!
Output for 5.4.19
Old time: 0.013219118118286 New time: 0.00034403800964355 -97.397420867526% faster All values passed!
Output for 5.4.18
Old time: 0.013483047485352 New time: 0.00038480758666992 -97.145989531758% faster All values passed!
Output for 5.4.17
Old time: 0.013359069824219 New time: 0.00042390823364258 -96.826813249572% faster All values passed!
Output for 5.4.16
Old time: 0.013243913650513 New time: 0.00036811828613281 -97.220472015698% faster All values passed!
Output for 5.4.15
Old time: 0.013637065887451 New time: 0.00038003921508789 -97.213189272352% faster All values passed!
Output for 5.4.14
Old time: 0.013477087020874 New time: 0.0003669261932373 -97.277407256709% faster All values passed!
Output for 5.4.13
Old time: 0.013998985290527 New time: 0.00036907196044922 -97.363580625383% faster All values passed!
Output for 5.4.12
Old time: 0.013528108596802 New time: 0.0003669261932373 -97.287675578506% faster All values passed!
Output for 5.4.11
Old time: 0.01385498046875 New time: 0.00040221214294434 -97.096985132159% faster All values passed!
Output for 5.4.10
Old time: 0.014133930206299 New time: 0.00040888786315918 -97.107047670456% faster All values passed!
Output for 5.4.9
Old time: 0.013890981674194 New time: 0.00035810470581055 -97.422034567393% faster All values passed!
Output for 5.4.8
Old time: 0.013656854629517 New time: 0.00038814544677734 -97.157870847227% faster All values passed!
Output for 5.4.7
Old time: 0.013481140136719 New time: 0.00036406517028809 -97.299448217317% faster All values passed!
Output for 5.4.6
Old time: 0.013232946395874 New time: 0.00043201446533203 -96.735311604778% faster All values passed!
Output for 5.4.5
Old time: 0.013701915740967 New time: 0.00038385391235352 -97.198538367844% faster All values passed!
Output for 5.4.4
Old time: 0.013505935668945 New time: 0.00036907196044922 -97.267335122158% faster All values passed!
Output for 5.4.3
Old time: 0.014005899429321 New time: 0.00045084953308105 -96.781002638522% faster All values passed!
Output for 5.4.2
Old time: 0.013807058334351 New time: 0.00041103363037109 -97.023018079467% faster All values passed!
Output for 5.4.1
Old time: 0.013591051101685 New time: 0.00038719177246094 -97.151127094115% faster All values passed!
Output for 5.4.0
Old time: 0.013283014297485 New time: 0.00038003921508789 -97.138908333782% faster All values passed!
Output for 5.3.29
Old time: 0.013406038284302 New time: 0.00049209594726562 -96.329296270608% faster All values passed!
Output for 5.3.28
Old time: 0.013623952865601 New time: 0.00051093101501465 -96.249759375602% faster All values passed!
Output for 5.3.27
Old time: 0.013880968093872 New time: 0.00045585632324219 -96.715961594614% faster All values passed!
Output for 5.3.26
Old time: 0.013715028762817 New time: 0.00043106079101562 -96.857018687527% faster All values passed!
Output for 5.3.25
Old time: 0.013722896575928 New time: 0.00044512748718262 -96.756315368845% faster All values passed!
Output for 5.3.24
Old time: 0.012786149978638 New time: 0.00054407119750977 -95.744839545768% faster All values passed!
Output for 5.3.23
Old time: 0.016579866409302 New time: 0.00042295455932617 -97.448986928575% faster All values passed!
Output for 5.3.22
Old time: 0.01377010345459 New time: 0.00045299530029297 -96.710298497126% faster All values passed!
Output for 5.3.21
Old time: 0.012852907180786 New time: 0.00041794776916504 -96.748223858725% faster All values passed!
Output for 5.3.20
Old time: 0.01348090171814 New time: 0.00046610832214355 -96.542454415224% faster All values passed!
Output for 5.3.19
Old time: 0.013861894607544 New time: 0.0004429817199707 -96.804320531123% faster All values passed!
Output for 5.3.18
Old time: 0.013702869415283 New time: 0.00044417381286621 -96.758534293768% faster All values passed!
Output for 5.3.17
Old time: 0.013556957244873 New time: 0.00050210952758789 -96.296296296296% faster All values passed!
Output for 5.3.16
Old time: 0.013582944869995 New time: 0.00048303604125977 -96.443804742764% faster All values passed!
Output for 5.3.15
Old time: 0.013401985168457 New time: 0.00050902366638184 -96.201878602434% faster All values passed!
Output for 5.3.14
Old time: 0.013462066650391 New time: 0.00047492980957031 -96.472088410315% faster All values passed!
Output for 5.3.13
Old time: 0.013478994369507 New time: 0.00050783157348633 -96.232422393208% faster All values passed!
Output for 5.3.12
Old time: 0.013864994049072 New time: 0.00048303604125977 -96.51614678268% faster All values passed!
Output for 5.3.11
Old time: 0.013802051544189 New time: 0.00049090385437012 -96.443254448091% faster All values passed!
Output for 5.3.10
Old time: 0.013791084289551 New time: 0.00048089027404785 -96.513035059816% faster All values passed!
Output for 5.3.9
Old time: 0.013722896575928 New time: 0.00047802925109863 -96.516557211856% faster All values passed!
Output for 5.3.8
Old time: 0.013457059860229 New time: 0.00047516822814941 -96.469004128058% faster All values passed!
Output for 5.3.7
Old time: 0.013370037078857 New time: 0.00047612190246582 -96.438888690752% faster All values passed!
Output for 5.3.6
Old time: 0.013973951339722 New time: 0.00048398971557617 -96.536486325093% faster All values passed!
Output for 5.3.5
Old time: 0.013157844543457 New time: 0.00050616264343262 -96.153149235341% faster All values passed!
Output for 5.3.4
Old time: 0.014133930206299 New time: 0.00048685073852539 -96.555446847272% faster All values passed!
Output for 5.3.3
Old time: 0.014662027359009 New time: 0.00047993659973145 -96.726669593639% faster All values passed!
Output for 5.3.2
Old time: 0.015135049819946 New time: 0.00049209594726562 -96.748633449379% faster All values passed!
Output for 5.3.1
Old time: 0.014016151428223 New time: 0.0005040168762207 -96.404028032932% faster All values passed!
Output for 5.3.0
Old time: 0.013874053955078 New time: 0.00047779083251953 -96.556227660159% faster All values passed!
Output for 5.2.17
Old time: 0.015771150588989 New time: 0.00070691108703613 -95.517694900906% faster All values passed!
Output for 5.2.16
Old time: 0.015937805175781 New time: 0.00064492225646973 -95.953506462422% faster All values passed!
Output for 5.2.15
Old time: 0.018332958221436 New time: 0.00066804885864258 -96.356022576534% faster All values passed!
Output for 5.2.14
Old time: 0.015911102294922 New time: 0.00068902969360352 -95.669503716135% faster All values passed!
Output for 5.2.13
Old time: 0.016030073165894 New time: 0.00072598457336426 -95.471108797501% faster All values passed!
Output for 5.2.12
Old time: 0.016134977340698 New time: 0.00065207481384277 -95.958625785002% faster All values passed!
Output for 5.2.11
Old time: 0.017641067504883 New time: 0.00075197219848633 -95.737377013731% faster All values passed!
Output for 5.2.10
Old time: 0.018202066421509 New time: 0.0023291110992432 -87.204139105377% faster All values passed!
Output for 5.2.9
Old time: 0.015997171401978 New time: 0.00075006484985352 -95.311265779394% faster All values passed!
Output for 5.2.8
Old time: 0.017323017120361 New time: 0.00074601173400879 -95.693523080734% faster All values passed!
Output for 5.2.7
Old time: 0.016174077987671 New time: 0.0006861686706543 -95.757602559% faster All values passed!
Output for 5.2.6
Old time: 0.015578985214233 New time: 0.0007011890411377 -95.499135332017% faster All values passed!
Output for 5.2.5
Old time: 0.016260147094727 New time: 0.00072789192199707 -95.523460410557% faster All values passed!
Output for 5.2.4
Old time: 0.016061067581177 New time: 0.00071501731872559 -95.548133303644% faster All values passed!
Output for 5.2.3
Old time: 0.016006231307983 New time: 0.00071406364440918 -95.538839651449% faster All values passed!
Output for 5.2.2
Old time: 0.015753030776978 New time: 0.00069904327392578 -95.562483919301% faster All values passed!
Output for 5.2.1
Old time: 0.017511129379272 New time: 0.00074291229248047 -95.757484989176% faster All values passed!
Output for 5.2.0
Old time: 0.015858173370361 New time: 0.00071215629577637 -95.50921610488% faster All values passed!
Output for 5.1.6
Old time: 0.015549182891846 New time: 0.000762939453125 -95.093379128461% faster All values passed!
Output for 5.1.5
Old time: 0.018004894256592 New time: 0.00083017349243164 -95.389178738844% faster All values passed!
Output for 5.1.4
Old time: 0.01594090461731 New time: 0.00072908401489258 -95.426332241516% faster All values passed!
Output for 5.1.3
Old time: 0.015897035598755 New time: 0.00072908401489258 -95.413710874814% faster All values passed!
Output for 5.1.2
Old time: 0.016048908233643 New time: 0.00076889991760254 -95.209020411801% faster All values passed!
Output for 5.1.1
Old time: 0.01572585105896 New time: 0.00075197219848633 -95.218241634955% faster All values passed!
Output for 5.1.0
Old time: 0.016071796417236 New time: 0.00071811676025391 -95.531820204717% faster All values passed!
Output for 5.0.5
Old time: 0.039254903793335 New time: 0.0014898777008057 -96.204607432872% faster All values passed!
Output for 5.0.4
Old time: 0.037353992462158 New time: 0.0014059543609619 -96.236133627788% faster All values passed!
Output for 5.0.3
Old time: 0.049537897109985 New time: 0.0014681816101074 -97.036245590224% faster All values passed!
Output for 5.0.2
Old time: 0.036641836166382 New time: 0.0016498565673828 -95.497342000299% faster All values passed!
Output for 5.0.1
Old time: 0.036901950836182 New time: 0.0014607906341553 -96.041427076199% faster All values passed!
Output for 5.0.0
Old time: 0.037336111068726 New time: 0.0016219615936279 -95.655783242549% faster All values passed!
Output for 4.4.9
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 8.000000000008E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 2.5000000000053E-05 -68.749999999965% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.4.8
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 7.4999999999936E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 2.599999999997E-05 -65.333333333343% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.4.7
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 9.1999999999981E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 3.7999999999982E-05 -58.695652173924% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.4.6
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 6.2000000000006E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 3.7999999999982E-05 -38.70967741939% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.4.5
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 0.00010299999999996 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 3.7999999999982E-05 -63.106796116509% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.4.4
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 8.000000000008E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 2.2999999999995E-05 -71.250000000035% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.4.3
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 6.0999999999978E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 3.8000000000094E-05 -37.704918032611% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.4.2
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 6.3000000000035E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 2.6999999999999E-05 -57.142857142882% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.4.1
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 7.4000000000018E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 3.9000000000011E-05 -47.297297297295% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.4.0
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 6.4999999999982E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 3.9999999999929E-05 -38.46153846163% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.3.11
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Old time: 6.7000000000039E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 New time: 1.3000000000041E-05 -80.597014925324% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 All values passed!
Output for 4.3.10
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 6.6999999999928E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 2.5000000000053E-05 -62.68656716406% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.3.9
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 6.3000000000035E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 4.7999999999937E-05 -23.809523809666% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.3.8
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 7.299999999999E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 2.3999999999913E-05 -67.123287671347% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.3.7
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 6.9000000000097E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 2.6000000000082E-05 -62.318840579645% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.3.6
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 8.5000000000002E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 4.1000000000069E-05 -51.764705882273% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.3.5
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 7.5000000000047E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 4.000000000004E-05 -46.666666666647% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.3.4
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 8.0999999999998E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 4.3000000000015E-05 -46.913580246893% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.3.3
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 7.5E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 5.2999999999999E-05 -29.333333333335% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.3.2
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 7.1999999999996E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 3.9999999999998E-05 -44.444444444443% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.3.1
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 7.0000000000001E-05 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 4.7999999999999E-05 -31.428571428573% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!
Output for 4.3.0
Warning: Wrong parameter count for range() in /in/iacqq on line 29 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 29 Old time: 0.00015499999999999 Warning: Wrong parameter count for range() in /in/iacqq on line 35 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 35 New time: 5.1999999999996E-05 -66.451612903226% faster Warning: Wrong parameter count for range() in /in/iacqq on line 43 Warning: Invalid argument supplied for foreach() in /in/iacqq on line 43 All values passed!

preferences:
161.37 ms | 402 KiB | 175 Q