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 ($diffOld/$diffNew*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.4.1
Old time: 0.0020961761474609 New time: 0.00015497207641602 1352.6153846154% faster All values passed!
Output for 7.4.0
Old time: 0.0028798580169678 New time: 0.00020790100097656 1385.2064220183% faster All values passed!
Output for 7.3.13
Old time: 0.0030128955841064 New time: 0.00020599365234375 1462.6157407407% faster All values passed!
Output for 7.3.12
Old time: 0.0033400058746338 New time: 0.00024819374084473 1345.7252641691% faster All values passed!
Output for 7.3.11
Old time: 0.0030930042266846 New time: 0.00022006034851074 1405.525460455% faster All values passed!
Output for 7.3.10
Old time: 0.0021581649780273 New time: 0.00015997886657715 1349.0312965723% faster All values passed!
Output for 7.3.9
Old time: 0.0029208660125732 New time: 0.00021886825561523 1334.5315904139% faster All values passed!
Output for 7.3.8
Old time: 0.003061056137085 New time: 0.00022792816162109 1342.9916317992% faster All values passed!
Output for 7.3.7
Old time: 0.0020978450775146 New time: 0.00015711784362793 1335.2048558422% faster All values passed!
Output for 7.3.6
Old time: 0.0028419494628906 New time: 0.00014519691467285 1957.3070607553% faster All values passed!
Output for 7.3.5
Old time: 0.0027430057525635 New time: 0.00020313262939453 1350.3521126761% faster All values passed!
Output for 7.3.4
Old time: 0.0034070014953613 New time: 0.00015497207641602 2198.4615384615% faster All values passed!
Output for 7.3.3
Old time: 0.0021131038665771 New time: 0.00014996528625488 1409.0620031797% faster All values passed!
Output for 7.3.2
Old time: 0.0031471252441406 New time: 0.00025391578674316 1239.4366197183% faster All values passed!
Output for 7.3.1
Old time: 0.0020859241485596 New time: 0.00014996528625488 1390.9379968203% faster All values passed!
Output for 7.3.0
Old time: 0.0035469532012939 New time: 0.00015497207641602 2288.7692307692% faster All values passed!
Output for 7.2.26
Old time: 0.0030319690704346 New time: 0.00014996528625488 2021.7806041335% faster All values passed!
Output for 7.2.25
Old time: 0.0030889511108398 New time: 0.00022292137145996 1385.6684491979% faster All values passed!
Output for 7.2.24
Old time: 0.0028090476989746 New time: 0.00019097328186035 1470.911360799% faster All values passed!
Output for 7.2.23
Old time: 0.0021400451660156 New time: 0.0001680850982666 1273.1914893617% faster All values passed!
Output for 7.2.22
Old time: 0.0034899711608887 New time: 0.00023412704467773 1490.6313645621% faster All values passed!
Output for 7.2.21
Old time: 0.0021188259124756 New time: 0.00014209747314453 1491.1073825503% faster All values passed!
Output for 7.2.20
Old time: 0.003486156463623 New time: 0.00015592575073242 2235.7798165138% faster All values passed!
Output for 7.2.19
Old time: 0.0031740665435791 New time: 0.00022602081298828 1404.3248945148% faster All values passed!
Output for 7.2.18
Old time: 0.0025830268859863 New time: 0.00015091896057129 1711.532385466% faster All values passed!
Output for 7.2.17
Old time: 0.0034909248352051 New time: 0.00020194053649902 1728.6894923259% faster All values passed!
Output for 7.2.16
Old time: 0.0021300315856934 New time: 0.00015401840209961 1382.9721362229% faster All values passed!
Output for 7.2.15
Old time: 0.0021159648895264 New time: 0.00014996528625488 1410.9697933227% faster All values passed!
Output for 7.2.14
Old time: 0.0023088455200195 New time: 0.00014805793762207 1559.4202898551% faster All values passed!
Output for 7.2.13
Old time: 0.0021109580993652 New time: 0.00014805793762207 1425.7648953301% faster All values passed!
Output for 7.2.12
Old time: 0.0028989315032959 New time: 0.00014996528625488 1933.0683624801% faster All values passed!
Output for 7.2.11
Old time: 0.0032439231872559 New time: 0.00014686584472656 2208.7662337662% faster All values passed!
Output for 7.2.10
Old time: 0.0023989677429199 New time: 0.00017905235290527 1339.8135818908% faster All values passed!
Output for 7.2.9
Old time: 0.0021200180053711 New time: 0.00015997886657715 1325.1862891207% faster All values passed!
Output for 7.2.8
Old time: 0.003032922744751 New time: 0.00021910667419434 1384.2219804135% faster All values passed!
Output for 7.2.7
Old time: 0.002147912979126 New time: 0.00016880035400391 1272.4576271186% faster All values passed!
Output for 7.2.6
Old time: 0.0026569366455078 New time: 0.00016283988952637 1631.6251830161% faster All values passed!
Output for 7.2.5
Old time: 0.0020718574523926 New time: 0.00014710426330566 1408.4278768233% faster All values passed!
Output for 7.2.4
Old time: 0.0021078586578369 New time: 0.00014805793762207 1423.6714975845% faster All values passed!
Output for 7.2.3
Old time: 0.002647876739502 New time: 0.00025200843811035 1050.7095553453% faster All values passed!
Output for 7.2.2
Old time: 0.0039191246032715 New time: 0.00030612945556641 1280.2180685358% faster All values passed!
Output for 7.2.1
Old time: 0.0030350685119629 New time: 0.00022101402282715 1373.2470334412% faster All values passed!
Output for 7.2.0
Old time: 0.0034019947052002 New time: 0.00014901161193848 2283.04% faster All values passed!
Output for 7.1.33
Old time: 0.0053179264068604 New time: 0.00023102760314941 2301.8575851393% faster All values passed!
Output for 7.1.32
Old time: 0.0056531429290771 New time: 0.0002899169921875 1949.9177631579% faster All values passed!
Output for 7.1.31
Old time: 0.0059590339660645 New time: 0.00024199485778809 2462.4630541872% faster All values passed!
Output for 7.1.30
Old time: 0.0046839714050293 New time: 0.00024008750915527 1950.9433962264% faster All values passed!
Output for 7.1.29
Old time: 0.0047080516815186 New time: 0.0002739429473877 1718.6248912097% faster All values passed!
Output for 7.1.28
Old time: 0.0037457942962646 New time: 0.00022697448730469 1650.3151260504% faster All values passed!
Output for 7.1.27
Old time: 0.0088150501251221 New time: 0.00050902366638184 1731.756440281% faster All values passed!
Output for 7.1.26
Old time: 0.0046091079711914 New time: 0.00021505355834961 2143.2372505543% faster All values passed!
Output for 7.1.25
Old time: 0.004990816116333 New time: 0.0002291202545166 2178.2518210198% faster All values passed!
Output for 7.1.24
Old time: 0.0038700103759766 New time: 0.00023579597473145 1641.2537917088% faster All values passed!
Output for 7.1.23
Old time: 0.0058159828186035 New time: 0.00035691261291504 1629.5257181029% faster All values passed!
Output for 7.1.22
Old time: 0.0045859813690186 New time: 0.00023198127746582 1976.8756423433% faster All values passed!
Output for 7.1.21
Old time: 0.0067610740661621 New time: 0.00022220611572266 3042.7038626609% faster All values passed!
Output for 7.1.20
Old time: 0.0037240982055664 New time: 0.00024104118347168 1545.0049455984% faster All values passed!
Output for 7.1.19
Old time: 0.0055010318756104 New time: 0.00034308433532715 1603.40514246% faster All values passed!
Output for 7.1.18
Old time: 0.0036938190460205 New time: 0.00021910667419434 1685.8541893362% faster All values passed!
Output for 7.1.17
Old time: 0.005579948425293 New time: 0.00029802322387695 1872.32% faster All values passed!
Output for 7.1.16
Old time: 0.0041959285736084 New time: 0.0002439022064209 1720.3323558162% faster All values passed!
Output for 7.1.15
Old time: 0.005728006362915 New time: 0.0002899169921875 1975.7401315789% faster All values passed!
Output for 7.1.14
Old time: 0.0052199363708496 New time: 0.00030398368835449 1717.1764705882% faster All values passed!
Output for 7.1.13
Old time: 0.0055370330810547 New time: 0.00029611587524414 1869.8872785829% faster All values passed!
Output for 7.1.12
Old time: 0.0050861835479736 New time: 0.00025200843811035 2018.2592242195% faster All values passed!
Output for 7.1.11
Old time: 0.0047228336334229 New time: 0.00027298927307129 1730.0436681223% faster All values passed!
Output for 7.1.10
Old time: 0.0037338733673096 New time: 0.00022006034851074 1696.7497291441% faster All values passed!
Output for 7.1.9
Old time: 0.0035908222198486 New time: 0.00022578239440918 1590.3907074974% faster All values passed!
Output for 7.1.8
Old time: 0.0037930011749268 New time: 0.0002281665802002 1662.3824451411% faster All values passed!
Output for 7.1.7
Old time: 0.0037961006164551 New time: 0.00023794174194336 1595.3907815631% faster All values passed!
Output for 7.1.6
Old time: 0.0048980712890625 New time: 0.00023794174194336 2058.5170340681% faster All values passed!
Output for 7.1.5
Old time: 0.0037178993225098 New time: 0.00022983551025391 1617.6348547718% faster All values passed!
Output for 7.1.4
Old time: 0.0039048194885254 New time: 0.00025296211242676 1543.6380772856% faster All values passed!
Output for 7.1.3
Old time: 0.0057170391082764 New time: 0.00029110908508301 1963.8820638821% faster All values passed!
Output for 7.1.2
Old time: 0.0040779113769531 New time: 0.00023698806762695 1720.7243460765% faster All values passed!
Output for 7.1.1
Old time: 0.0036909580230713 New time: 0.00022482872009277 1641.6755037116% faster All values passed!
Output for 7.1.0
Old time: 0.0043048858642578 New time: 0.00023603439331055 1823.8383838384% faster All values passed!
Output for 7.0.33
Old time: 0.0065340995788574 New time: 0.00024104118347168 2710.78140455% faster All values passed!
Output for 7.0.32
Old time: 0.0055930614471436 New time: 0.00036096572875977 1549.4715984148% faster All values passed!
Output for 7.0.31
Old time: 0.0068960189819336 New time: 0.00044894218444824 1536.0594795539% faster All values passed!
Output for 7.0.30
Old time: 0.0055699348449707 New time: 0.00029993057250977 1857.0747217806% faster All values passed!
Output for 7.0.29
Old time: 0.0047259330749512 New time: 0.00027298927307129 1731.1790393013% faster All values passed!
Output for 7.0.28
Old time: 0.0036940574645996 New time: 0.00024294853210449 1520.5103042198% faster All values passed!
Output for 7.0.27
Old time: 0.0057759284973145 New time: 0.0003809928894043 1516.0200250313% faster All values passed!
Output for 7.0.26
Old time: 0.0061581134796143 New time: 0.00039887428283691 1543.8732815302% faster All values passed!
Output for 7.0.25
Old time: 0.0037169456481934 New time: 0.00022006034851074 1689.0574214518% faster All values passed!
Output for 7.0.24
Old time: 0.0047829151153564 New time: 0.0002140998840332 2233.9643652561% faster All values passed!
Output for 7.0.23
Old time: 0.0037000179290771 New time: 0.00021910667419434 1688.683351469% faster All values passed!
Output for 7.0.22
Old time: 0.0043668746948242 New time: 0.00023007392883301 1898.0310880829% faster All values passed!
Output for 7.0.21
Old time: 0.0046648979187012 New time: 0.00023913383483887 1950.7477567298% faster All values passed!
Output for 7.0.20
Old time: 0.0052471160888672 New time: 0.00024104118347168 2176.8545994065% faster All values passed!
Output for 7.0.19
Old time: 0.0037181377410889 New time: 0.00023603439331055 1575.2525252525% faster All values passed!
Output for 7.0.18
Old time: 0.0038480758666992 New time: 0.00024700164794922 1557.9150579151% faster All values passed!
Output for 7.0.17
Old time: 0.0041649341583252 New time: 0.00023603439331055 1764.5454545455% faster All values passed!
Output for 7.0.16
Old time: 0.0037050247192383 New time: 0.00023794174194336 1557.1142284569% faster All values passed!
Output for 7.0.15
Old time: 0.0042040348052979 New time: 0.00028705596923828 1464.5348837209% faster All values passed!
Output for 7.0.14
Old time: 0.0036969184875488 New time: 0.00023603439331055 1566.2626262626% faster All values passed!
Output for 7.0.13
Old time: 0.0041909217834473 New time: 0.00023794174194336 1761.3226452906% faster All values passed!
Output for 7.0.12
Old time: 0.0036940574645996 New time: 0.00023889541625977 1546.3073852295% faster All values passed!
Output for 7.0.11
Old time: 0.004331111907959 New time: 0.00025200843811035 1718.637653737% faster All values passed!
Output for 7.0.10
Old time: 0.0036299228668213 New time: 0.00024104118347168 1505.9347181009% faster All values passed!
Output for 7.0.9
Old time: 0.003748893737793 New time: 0.00023698806762695 1581.8913480885% faster All values passed!
Output for 7.0.8
Old time: 0.0038440227508545 New time: 0.00022697448730469 1693.5924369748% faster All values passed!
Output for 7.0.7
Old time: 0.0055050849914551 New time: 0.00030088424682617 1829.6354992076% faster All values passed!
Output for 7.0.6
Old time: 0.0035629272460938 New time: 0.00022602081298828 1576.3713080169% faster All values passed!
Output for 7.0.5
Old time: 0.0035331249237061 New time: 0.00023007392883301 1535.6476683938% faster All values passed!
Output for 7.0.4
Old time: 0.0049469470977783 New time: 0.00022602081298828 2188.7130801688% faster All values passed!
Output for 7.0.3
Old time: 0.0055549144744873 New time: 0.00035214424133301 1577.4542992552% faster All values passed!
Output for 7.0.2
Old time: 0.0038189888000488 New time: 0.00021505355834961 1775.8314855876% faster All values passed!
Output for 7.0.1
Old time: 0.0053238868713379 New time: 0.00022101402282715 2408.8457389428% faster All values passed!
Output for 7.0.0
Old time: 0.0059590339660645 New time: 0.00023913383483887 2491.924227318% faster All values passed!
Output for 5.6.40
Old time: 0.018861055374146 New time: 0.00053596496582031 3519.0836298932% faster All values passed!
Output for 5.6.39
Old time: 0.018979072570801 New time: 0.00053000450134277 3580.9266756635% faster All values passed!
Output for 5.6.38
Old time: 0.020066022872925 New time: 0.00054001808166504 3715.8057395143% faster All values passed!
Output for 5.6.37
Old time: 0.018864870071411 New time: 0.00052785873413086 3573.8482384824% faster All values passed!
Output for 5.6.36
Old time: 0.021698951721191 New time: 0.00060296058654785 3598.7346777382% faster All values passed!
Output for 5.6.35
Old time: 0.021349906921387 New time: 0.00052499771118164 4066.6666666667% faster All values passed!
Output for 5.6.34
Old time: 0.020466089248657 New time: 0.00058698654174805 3486.6368805849% faster All values passed!
Output for 5.6.33
Old time: 0.01971697807312 New time: 0.00050187110900879 3928.6935866983% faster All values passed!
Output for 5.6.32
Old time: 0.021388053894043 New time: 0.00061511993408203 3477.0542635659% faster All values passed!
Output for 5.6.31
Old time: 0.018046855926514 New time: 0.00053310394287109 3385.2415026834% faster All values passed!
Output for 5.6.30
Old time: 0.019886016845703 New time: 0.00051999092102051 3824.300779459% faster All values passed!
Output for 5.6.29
Old time: 0.020030975341797 New time: 0.00052213668823242 3836.3470319635% faster All values passed!
Output for 5.6.28
Old time: 0.020725011825562 New time: 0.00055599212646484 3727.5728987993% faster All values passed!
Output for 5.6.27
Old time: 0.021178960800171 New time: 0.0005500316619873 3850.4984828782% faster All values passed!
Output for 5.6.26
Old time: 0.020709037780762 New time: 0.00055289268493652 3745.5799913756% faster All values passed!
Output for 5.6.25
Old time: 0.018322229385376 New time: 0.0005340576171875 3430.7589285714% faster All values passed!
Output for 5.6.24
Old time: 0.021912097930908 New time: 0.00055813789367676 3925.9290901324% faster All values passed!
Output for 5.6.23
Old time: 0.019387006759644 New time: 0.00075197219848633 2578.1547241598% faster All values passed!
Output for 5.6.22
Old time: 0.023518085479736 New time: 0.00056719779968262 4146.3640184952% faster All values passed!
Output for 5.6.21
Old time: 0.019397974014282 New time: 0.00051403045654297 3773.7012987013% faster All values passed!
Output for 5.6.20
Old time: 0.017821073532104 New time: 0.00054097175598145 3294.2706037902% faster All values passed!
Output for 5.6.19
Old time: 0.019623041152954 New time: 0.00054502487182617 3600.3937007874% faster All values passed!
Output for 5.6.18
Old time: 0.026537895202637 New time: 0.00077295303344727 3433.3127698951% faster All values passed!
Output for 5.6.17
Old time: 0.017752885818481 New time: 0.00051593780517578 3440.8964879852% faster All values passed!
Output for 5.6.16
Old time: 0.019889116287231 New time: 0.0005950927734375 3342.1875% faster All values passed!
Output for 5.6.15
Old time: 0.022464990615845 New time: 0.0005190372467041 4328.2039503904% faster All values passed!
Output for 5.6.14
Old time: 0.018601179122925 New time: 0.00054192543029785 3432.4241091069% faster All values passed!
Output for 5.6.13
Old time: 0.026774168014526 New time: 0.00078392028808594 3415.4197080292% faster All values passed!
Output for 5.6.12
Old time: 0.027130126953125 New time: 0.00077390670776367 3505.606900801% faster All values passed!
Output for 5.6.11
Old time: 0.01819896697998 New time: 0.00051498413085938 3533.8888888889% faster All values passed!
Output for 5.6.10
Old time: 0.017882108688354 New time: 0.00051498413085938 3472.3611111111% faster All values passed!
Output for 5.6.9
Old time: 0.02662992477417 New time: 0.00076699256896973 3471.9925396332% faster All values passed!
Output for 5.6.8
Old time: 0.019463062286377 New time: 0.00051712989807129 3763.6698939604% faster All values passed!
Output for 5.6.7
Old time: 0.026795148849487 New time: 0.00076913833618164 3483.7879727216% faster All values passed!
Output for 5.6.6
Old time: 0.025912046432495 New time: 0.0007479190826416 3464.5521198597% faster All values passed!
Output for 5.6.5
Old time: 0.025968074798584 New time: 0.00075697898864746 3430.4881889764% faster All values passed!
Output for 5.6.4
Old time: 0.021770000457764 New time: 0.00056099891662598 3880.5779855504% faster All values passed!
Output for 5.6.3
Old time: 0.025752067565918 New time: 0.00074195861816406 3470.822622108% faster All values passed!
Output for 5.6.2
Old time: 0.025938034057617 New time: 0.0007479190826416 3468.0267771756% faster All values passed!
Output for 5.6.1
Old time: 0.021764993667603 New time: 0.00061798095703125 3521.9521604938% faster All values passed!
Output for 5.6.0
Old time: 0.017961025238037 New time: 0.00051784515380859 3468.4162062615% faster All values passed!
Output for 5.5.38
Old time: 0.019335985183716 New time: 0.00053310394287109 3627.0572450805% faster All values passed!
Output for 5.5.37
Old time: 0.018858909606934 New time: 0.00053310394287109 3537.5670840787% faster All values passed!
Output for 5.5.36
Old time: 0.021682024002075 New time: 0.00052499771118164 4129.9273387829% faster All values passed!
Output for 5.5.35
Old time: 0.020670890808105 New time: 0.00053787231445312 3843.085106383% faster All values passed!
Output for 5.5.34
Old time: 0.021370887756348 New time: 0.0006411075592041 3333.4325027891% faster All values passed!
Output for 5.5.33
Old time: 0.019952058792114 New time: 0.00052404403686523 3807.3248407643% faster All values passed!
Output for 5.5.32
Old time: 0.021559000015259 New time: 0.0006251335144043 3448.703279939% faster All values passed!
Output for 5.5.31
Old time: 0.026607990264893 New time: 0.00078582763671875 3385.9830097087% faster All values passed!
Output for 5.5.30
Old time: 0.020792007446289 New time: 0.00053882598876953 3858.7610619469% faster All values passed!
Output for 5.5.29
Old time: 0.026379108428955 New time: 0.00075483322143555 3494.6936197094% faster All values passed!
Output for 5.5.28
Old time: 0.026156902313232 New time: 0.00075006484985352 3487.2854418309% faster All values passed!
Output for 5.5.27
Old time: 0.023338079452515 New time: 0.00055193901062012 4228.3801295896% faster All values passed!
Output for 5.5.26
Old time: 0.026282072067261 New time: 0.00075101852416992 3499.5238095238% faster All values passed!
Output for 5.5.25
Old time: 0.026258945465088 New time: 0.00075697898864746 3468.9133858268% faster All values passed!
Output for 5.5.24
Old time: 0.021487951278687 New time: 0.00056004524230957 3836.8241805023% faster All values passed!
Output for 5.5.23
Old time: 0.026208162307739 New time: 0.00076580047607422 3422.3225404732% faster All values passed!
Output for 5.5.22
Old time: 0.020625114440918 New time: 0.00053596496582031 3848.2206405694% faster All values passed!
Output for 5.5.21
Old time: 0.018485069274902 New time: 0.00051188468933105 3611.178388449% faster All values passed!
Output for 5.5.20
Old time: 0.018111944198608 New time: 0.00051498413085938 3516.9907407407% faster All values passed!
Output for 5.5.19
Old time: 0.019395112991333 New time: 0.00052690505981445 3680.9502262443% faster All values passed!
Output for 5.5.18
Old time: 0.026623010635376 New time: 0.00077915191650391 3416.9216646267% faster All values passed!
Output for 5.5.17
Old time: 0.020710945129395 New time: 0.00052905082702637 3914.7363677332% faster All values passed!
Output for 5.5.16
Old time: 0.019330024719238 New time: 0.00054502487182617 3546.6316710411% faster All values passed!
Output for 5.5.15
Old time: 0.026505947113037 New time: 0.00075817108154297 3496.0377358491% faster All values passed!
Output for 5.5.14
Old time: 0.027301073074341 New time: 0.00078010559082031 3499.6638141809% faster All values passed!
Output for 5.5.13
Old time: 0.021660089492798 New time: 0.00056314468383789 3846.2743437765% faster All values passed!
Output for 5.5.12
Old time: 0.02062201499939 New time: 0.00053501129150391 3854.5008912656% faster All values passed!
Output for 5.5.11
Old time: 0.027168035507202 New time: 0.0007789134979248 3487.9400061218% faster All values passed!
Output for 5.5.10
Old time: 0.027331113815308 New time: 0.00080394744873047 3399.6144721234% faster All values passed!
Output for 5.5.9
Old time: 0.025605916976929 New time: 0.00083303451538086 3073.8122495707% faster All values passed!
Output for 5.5.8
Old time: 0.021489143371582 New time: 0.00053501129150391 4016.577540107% faster All values passed!
Output for 5.5.7
Old time: 0.019387006759644 New time: 0.00052785873413086 3672.7642276423% faster All values passed!
Output for 5.5.6
Old time: 0.021171092987061 New time: 0.00054192543029785 3906.6432028157% faster All values passed!
Output for 5.5.5
Old time: 0.026604890823364 New time: 0.000762939453125 3487.15625% faster All values passed!
Output for 5.5.4
Old time: 0.027236223220825 New time: 0.00078392028808594 3474.3613138686% faster All values passed!
Output for 5.5.3
Old time: 0.020376920700073 New time: 0.00051999092102051 3918.7070151307% faster All values passed!
Output for 5.5.2
Old time: 0.021138906478882 New time: 0.00060009956359863 3522.5665474772% faster All values passed!
Output for 5.5.1
Old time: 0.018743991851807 New time: 0.00050783157348633 3690.985915493% faster All values passed!
Output for 5.5.0
Old time: 0.02686595916748 New time: 0.00077581405639648 3462.9379225569% faster All values passed!
Output for 5.4.45
Old time: 0.018877983093262 New time: 0.00054216384887695 3481.9700967458% faster All values passed!
Output for 5.4.44
Old time: 0.023198127746582 New time: 0.00051593780517578 4496.303142329% faster All values passed!
Output for 5.4.43
Old time: 0.019925117492676 New time: 0.00054001808166504 3689.7130242826% faster All values passed!
Output for 5.4.42
Old time: 0.027335166931152 New time: 0.00077199935913086 3540.8276714021% faster All values passed!
Output for 5.4.41
Old time: 0.023209810256958 New time: 0.00055313110351562 4196.0775862069% faster All values passed!
Output for 5.4.40
Old time: 0.022665977478027 New time: 0.00053715705871582 4219.6182867288% faster All values passed!
Output for 5.4.39
Old time: 0.026976823806763 New time: 0.00076508522033691 3525.989404799% faster All values passed!
Output for 5.4.38
Old time: 0.022825002670288 New time: 0.00056695938110352 4025.8620689655% faster All values passed!
Output for 5.4.37
Old time: 0.021109104156494 New time: 0.00052499771118164 4020.7992733878% faster All values passed!
Output for 5.4.36
Old time: 0.021430015563965 New time: 0.00053811073303223 3982.4545857333% faster All values passed!
Output for 5.4.35
Old time: 0.019721984863281 New time: 0.00053501129150391 3686.2745098039% faster All values passed!
Output for 5.4.34
Old time: 0.019761085510254 New time: 0.00052785873413086 3743.6314363144% faster All values passed!
Output for 5.4.33
Old time: 0.047564029693604 New time: 0.00054287910461426 8761.4404918753% faster All values passed!
Output for 5.4.32
Old time: 0.023179054260254 New time: 0.00058507919311523 3961.695191524% faster All values passed!
Output for 5.4.31
Old time: 0.024473905563354 New time: 0.00082206726074219 2977.1171693736% faster All values passed!
Output for 5.4.30
Old time: 0.021085977554321 New time: 0.00052404403686523 4023.703366697% faster All values passed!
Output for 5.4.29
Old time: 0.02322793006897 New time: 0.0005340576171875 4349.3303571429% faster All values passed!
Output for 5.4.28
Old time: 0.020551919937134 New time: 0.0005488395690918 3744.6133796699% faster All values passed!
Output for 5.4.27
Old time: 0.022108793258667 New time: 0.00053787231445312 4110.4166666667% faster All values passed!
Output for 5.4.26
Old time: 0.021728038787842 New time: 0.00052499771118164 4138.6920980926% faster All values passed!
Output for 5.4.25
Old time: 0.019157886505127 New time: 0.00053000450134277 3614.6648672964% faster All values passed!
Output for 5.4.24
Old time: 0.024464130401611 New time: 0.00055813789367676 4383.1695856472% faster All values passed!
Output for 5.4.23
Old time: 0.022192001342773 New time: 0.00055980682373047 3964.2248722317% faster All values passed!
Output for 5.4.22
Old time: 0.02699613571167 New time: 0.0007779598236084 3470.1195219124% faster All values passed!
Output for 5.4.21
Old time: 0.024308919906616 New time: 0.00059700012207031 4071.8450479233% faster All values passed!
Output for 5.4.20
Old time: 0.021553993225098 New time: 0.00054097175598145 3984.3102688409% faster All values passed!
Output for 5.4.19
Old time: 0.027570962905884 New time: 0.00077295303344727 3566.9648365207% faster All values passed!
Output for 5.4.18
Old time: 0.019684791564941 New time: 0.00053191184997559 3700.761990139% faster All values passed!
Output for 5.4.17
Old time: 0.028215885162354 New time: 0.00078392028808594 3599.3309002433% faster All values passed!
Output for 5.4.16
Old time: 0.019200086593628 New time: 0.00052809715270996 3635.7110609481% faster All values passed!
Output for 5.4.15
Old time: 0.027345895767212 New time: 0.00076794624328613 3560.9127600124% faster All values passed!
Output for 5.4.14
Old time: 0.030625820159912 New time: 0.00058698654174805 5217.4654752234% faster All values passed!
Output for 5.4.13
Old time: 0.022873163223267 New time: 0.00051999092102051 4398.7620357634% faster All values passed!
Output for 5.4.12
Old time: 0.021337985992432 New time: 0.00053095817565918 4018.7696452627% faster All values passed!
Output for 5.4.11
Old time: 0.021726131439209 New time: 0.00059604644775391 3645.04% faster All values passed!
Output for 5.4.10
Old time: 0.019698143005371 New time: 0.00053095817565918 3709.9236641221% faster All values passed!
Output for 5.4.9
Old time: 0.02342414855957 New time: 0.00053000450134277 4419.6131354026% faster All values passed!
Output for 5.4.8
Old time: 0.022829055786133 New time: 0.00054001808166504 4227.4613686534% faster All values passed!
Output for 5.4.7
Old time: 0.023781061172485 New time: 0.00053596496582031 4437.0551601423% faster All values passed!
Output for 5.4.6
Old time: 0.026854991912842 New time: 0.00076794624328613 3496.9885128842% faster All values passed!
Output for 5.4.5
Old time: 0.022186040878296 New time: 0.00052213668823242 4249.0867579909% faster All values passed!
Output for 5.4.4
Old time: 0.055155992507935 New time: 0.00055098533630371 10010.42838598% faster All values passed!
Output for 5.4.3
Old time: 0.021079063415527 New time: 0.00054097175598145 3896.5182899956% faster All values passed!
Output for 5.4.2
Old time: 0.023825883865356 New time: 0.00056815147399902 4193.5795216114% faster All values passed!
Output for 5.4.1
Old time: 0.019967079162598 New time: 0.00064897537231445 3076.7083027186% faster All values passed!
Output for 5.4.0
Old time: 0.020957946777344 New time: 0.00054097175598145 3874.1295724989% faster All values passed!
Output for 5.3.29
Old time: 0.013362884521484 New time: 0.00046801567077637 2855.2215995925% faster All values passed!
Output for 5.3.28
Old time: 0.013400077819824 New time: 0.00044894218444824 2984.8114710568% faster All values passed!
Output for 5.3.27
Old time: 0.012937068939209 New time: 0.00043392181396484 2981.4285714286% faster All values passed!
Output for 5.3.26
Old time: 0.013333082199097 New time: 0.00041794776916504 3190.1312036509% faster All values passed!
Output for 5.3.25
Old time: 0.01281213760376 New time: 0.00043201446533203 2965.6732891832% faster All values passed!
Output for 5.3.24
Old time: 0.01317310333252 New time: 0.00047588348388672 2768.1362725451% faster All values passed!
Output for 5.3.23
Old time: 0.013164043426514 New time: 0.00042605400085449 3089.7593732513% faster All values passed!
Output for 5.3.22
Old time: 0.013221025466919 New time: 0.00046491622924805 2843.7435897436% faster All values passed!
Output for 5.3.21
Old time: 0.013792037963867 New time: 0.00047087669372559 2929.0126582278% faster All values passed!
Output for 5.3.20
Old time: 0.013805866241455 New time: 0.00053310394287109 2589.7137745975% faster All values passed!
Output for 5.3.19
Old time: 0.013838052749634 New time: 0.00050187110900879 2757.2921615202% faster All values passed!
Output for 5.3.18
Old time: 0.01326584815979 New time: 0.00050997734069824 2601.2622720898% faster All values passed!
Output for 5.3.17
Old time: 0.013434886932373 New time: 0.0007469654083252 1798.5955952761% faster All values passed!
Output for 5.3.16
Old time: 0.013770818710327 New time: 0.00049591064453125 2776.875% faster All values passed!
Output for 5.3.15
Old time: 0.013036012649536 New time: 0.00046300888061523 2815.4994850669% faster All values passed!
Output for 5.3.14
Old time: 0.013098955154419 New time: 0.00047492980957031 2758.0823293173% faster All values passed!
Output for 5.3.13
Old time: 0.01343297958374 New time: 0.00046396255493164 2895.2723535457% faster All values passed!
Output for 5.3.12
Old time: 0.013597011566162 New time: 0.00049805641174316 2730.0143609382% faster All values passed!
Output for 5.3.11
Old time: 0.013486862182617 New time: 0.00045585632324219 2958.5774058577% faster All values passed!
Output for 5.3.10
Old time: 0.013422012329102 New time: 0.00047397613525391 2831.7907444668% faster All values passed!
Output for 5.3.9
Old time: 0.013576030731201 New time: 0.00053501129150391 2537.5222816399% faster All values passed!
Output for 5.3.8
Old time: 0.013515949249268 New time: 0.0004889965057373 2764.0175524135% faster All values passed!
Output for 5.3.7
Old time: 0.012994050979614 New time: 0.00049185752868652 2641.8322830829% faster All values passed!
Output for 5.3.6
Old time: 0.0139000415802 New time: 0.00046205520629883 3008.3075335397% faster All values passed!
Output for 5.3.5
Old time: 0.013081789016724 New time: 0.00048708915710449 2685.7072931963% faster All values passed!
Output for 5.3.4
Old time: 0.014144897460938 New time: 0.00046300888061523 3054.9948506694% faster All values passed!
Output for 5.3.3
Old time: 0.014810085296631 New time: 0.00049495697021484 2992.1965317919% faster All values passed!
Output for 5.3.2
Old time: 0.014919996261597 New time: 0.0004570484161377 3264.4235785081% faster All values passed!
Output for 5.3.1
Old time: 0.013550996780396 New time: 0.00044107437133789 3072.2702702703% faster All values passed!
Output for 5.3.0
Old time: 0.013489961624146 New time: 0.00048208236694336 2798.2690405539% faster All values passed!
Output for 5.2.17
Old time: 0.015509128570557 New time: 0.00063586235046387 2439.0701162355% faster All values passed!
Output for 5.2.16
Old time: 0.015151023864746 New time: 0.00060606002807617 2499.9213217939% faster All values passed!
Output for 5.2.15
Old time: 0.016443014144897 New time: 0.00067901611328125 2421.5941011236% faster All values passed!
Output for 5.2.14
Old time: 0.015405178070068 New time: 0.00065302848815918 2359.0361445783% faster All values passed!
Output for 5.2.13
Old time: 0.015941858291626 New time: 0.00069808959960938 2283.6407103825% faster All values passed!
Output for 5.2.12
Old time: 0.01606011390686 New time: 0.00062108039855957 2585.8349328215% faster All values passed!
Output for 5.2.11
Old time: 0.016144037246704 New time: 0.00072216987609863 2235.4902608121% faster All values passed!
Output for 5.2.10
Old time: 0.015625 New time: 0.0006859302520752 2277.9283976364% faster All values passed!
Output for 5.2.9
Old time: 0.015600919723511 New time: 0.00074410438537598 2096.6036526754% faster All values passed!
Output for 5.2.8
Old time: 0.016378879547119 New time: 0.00073695182800293 2222.5169847946% faster All values passed!
Output for 5.2.7
Old time: 0.015808820724487 New time: 0.00071501731872559 2210.9703234411% faster All values passed!
Output for 5.2.6
Old time: 0.029222965240479 New time: 0.00066900253295898 4368.1397006415% faster All values passed!
Output for 5.2.5
Old time: 0.016660928726196 New time: 0.0007479190826416 2227.637870577% faster All values passed!
Output for 5.2.4
Old time: 0.015990972518921 New time: 0.00068807601928711 2324.0124740125% faster All values passed!
Output for 5.2.3
Old time: 0.016240835189819 New time: 0.00072693824768066 2234.1423417514% faster All values passed!
Output for 5.2.2
Old time: 0.015645027160645 New time: 0.00064206123352051 2436.6877088749% faster All values passed!
Output for 5.2.1
Old time: 0.017472982406616 New time: 0.00074291229248047 2351.9576379974% faster All values passed!
Output for 5.2.0
Old time: 0.01674485206604 New time: 0.00075888633728027 2206.5032987747% faster All values passed!
Output for 5.1.6
Old time: 0.015357971191406 New time: 0.00073599815368652 2086.6861030126% faster All values passed!
Output for 5.1.5
Old time: 0.016251087188721 New time: 0.00075697898864746 2146.8346456693% faster All values passed!
Output for 5.1.4
Old time: 0.01639199256897 New time: 0.00077486038208008 2115.4769230769% faster All values passed!
Output for 5.1.3
Old time: 0.016219139099121 New time: 0.00072503089904785 2237.0272936534% faster All values passed!
Output for 5.1.2
Old time: 0.016652822494507 New time: 0.00079989433288574 2081.8777943368% faster All values passed!
Output for 5.1.1
Old time: 0.019989967346191 New time: 0.00075602531433105 2644.087038789% faster All values passed!
Output for 5.1.0
Old time: 0.016391038894653 New time: 0.00076198577880859 2151.0951188986% faster All values passed!
Output for 5.0.5
Old time: 0.045039892196655 New time: 0.0014431476593018 3120.9482901041% faster All values passed!
Output for 5.0.4
Old time: 0.046614170074463 New time: 0.0014259815216064 3268.9182410968% faster All values passed!
Output for 5.0.3
Old time: 0.038692951202393 New time: 0.0013718605041504 2820.4727146333% faster All values passed!
Output for 5.0.2
Old time: 0.036823034286499 New time: 0.0013918876647949 2645.5464200069% faster All values passed!
Output for 5.0.1
Old time: 0.036688804626465 New time: 0.0013840198516846 2650.887166236% faster All values passed!
Output for 5.0.0
Old time: 0.036288022994995 New time: 0.0014669895172119 2473.6388753454% faster All values passed!
Output for 4.4.9
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 6.7999999999999E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 2.6999999999999E-05 251.85185185185% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.4.8
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 6.2999999999994E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 2.6000000000012E-05 242.30769230755% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.4.7
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 6.600000000001E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 2.3999999999996E-05 275.00000000009% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.4.6
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 6.3000000000007E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 2.6999999999999E-05 233.33333333337% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.4.5
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 7.0999999999988E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 3.800000000001E-05 186.84210526308% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.4.4
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 9.8999999999988E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 4.2000000000014E-05 235.71428571418% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.4.3
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 6.7999999999985E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 3.800000000001E-05 178.94736842096% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.4.2
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 5.7000000000001E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 2.5999999999998E-05 219.23076923079% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.4.1
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 8.1000000000025E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 5.9000000000003E-05 137.28813559326% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.4.0
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 7.6999999999994E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 6.8000000000012E-05 113.23529411762% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.3.11
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Old time: 6.0000000000004E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 New time: 1.2000000000012E-05 499.99999999954% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 All values passed!
Output for 4.3.10
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 6.4999999999982E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 3.8999999999956E-05 166.66666666681% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.3.9
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 7.2000000000016E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 4.7999999999992E-05 150.00000000006% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.3.8
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 7.600000000002E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 3.9000000000011E-05 194.87179487179% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.3.7
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 0.00010100000000002 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 4.2000000000042E-05 240.47619047599% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.3.6
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 7.600000000002E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 3.7999999999982E-05 200.00000000015% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.3.5
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 8.0999999999998E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 3.9000000000011E-05 207.69230769224% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.3.4
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 8.0000000000024E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 3.9999999999984E-05 200.00000000014% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.3.3
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 8.0999999999998E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 5.1999999999996E-05 155.76923076924% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.3.2
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 7.3999999999907E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 4.3000000000015E-05 172.09302325554% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.3.1
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 7.5000000000047E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 4.3000000000015E-05 174.41860465121% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!
Output for 4.3.0
Warning: Wrong parameter count for range() in /in/V53Eu on line 29 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 29 Old time: 2.9000000000001E-05 Warning: Wrong parameter count for range() in /in/V53Eu on line 35 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 35 New time: 5.000000000005E-06 579.99999999944% faster Warning: Wrong parameter count for range() in /in/V53Eu on line 43 Warning: Invalid argument supplied for foreach() in /in/V53Eu on line 43 All values passed!

preferences:
213.16 ms | 402 KiB | 325 Q