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*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.0
Old time: 0.0028591156005859 New time: 0.00021600723266602 7.5550366911274% faster All values passed!
Output for 7.3.12
Old time: 0.0030529499053955 New time: 0.00023508071899414 7.7001171417415% faster All values passed!
Output for 7.3.11
Old time: 0.0031158924102783 New time: 0.00021910667419434 7.0319075675262% faster All values passed!
Output for 7.3.10
Old time: 0.0023171901702881 New time: 0.0001518726348877 6.5541722399424% faster All values passed!
Output for 7.3.9
Old time: 0.0030090808868408 New time: 0.00022315979003906 7.4162110767768% faster All values passed!
Output for 7.3.8
Old time: 0.0044100284576416 New time: 0.00016403198242188 3.7195220846624% faster All values passed!
Output for 7.3.7
Old time: 0.0036342144012451 New time: 0.00014996528625488 4.1264842878698% faster All values passed!
Output for 7.3.6
Old time: 0.0021100044250488 New time: 0.00014209747314453 6.7344632768362% faster All values passed!
Output for 7.3.5
Old time: 0.0034129619598389 New time: 0.00020098686218262 5.8889276982187% faster All values passed!
Output for 7.3.4
Old time: 0.0022318363189697 New time: 0.00017619132995605 7.8944557205427% faster All values passed!
Output for 7.3.3
Old time: 0.0044419765472412 New time: 0.0001518726348877 3.4190327948044% faster All values passed!
Output for 7.3.2
Old time: 0.0029001235961914 New time: 0.00015711784362793 5.4176257809931% faster All values passed!
Output for 7.3.1
Old time: 0.002079963684082 New time: 0.00014996528625488 7.2099954149473% faster All values passed!
Output for 7.3.0
Old time: 0.0028600692749023 New time: 0.00020718574523926 7.2440813604535% faster All values passed!
Output for 7.2.25
Old time: 0.0031177997589111 New time: 0.00024795532226562 7.9528943947389% faster All values passed!
Output for 7.2.24
Old time: 0.0021939277648926 New time: 0.00015401840209961 7.0202129971745% faster All values passed!
Output for 7.2.23
Old time: 0.0031700134277344 New time: 0.0001530647277832 4.8285198555957% faster All values passed!
Output for 7.2.22
Old time: 0.002669095993042 New time: 0.0001988410949707 7.4497543546226% faster All values passed!
Output for 7.2.21
Old time: 0.0026469230651855 New time: 0.00014591217041016 5.5125202666186% faster All values passed!
Output for 7.2.20
Old time: 0.0021200180053711 New time: 0.00014710426330566 6.9388214125056% faster All values passed!
Output for 7.2.19
Old time: 0.0026500225067139 New time: 0.00016689300537109 6.29779577148% faster All values passed!
Output for 7.2.18
Old time: 0.0035519599914551 New time: 0.00028300285339355 7.9675124177742% faster All values passed!
Output for 7.2.17
Old time: 0.0038580894470215 New time: 0.00015807151794434 4.0971449758991% faster All values passed!
Output for 7.2.13
Old time: 0.0037188529968262 New time: 0.00028300285339355 7.6099499935889% faster All values passed!
Output for 7.2.12
Old time: 0.033265113830566 New time: 0.00040602684020996 1.2205785384593% faster All values passed!
Output for 7.2.11
Old time: 0.0026381015777588 New time: 0.00019288063049316 7.3113420695888% faster All values passed!
Output for 7.2.10
Old time: 0.0026609897613525 New time: 0.00025296211242676 9.5063166382941% faster All values passed!
Output for 7.2.9
Old time: 0.00211501121521 New time: 0.00016593933105469 7.845789651674% faster All values passed!
Output for 7.2.8
Old time: 0.040505170822144 New time: 0.00037288665771484 0.92059026081429% faster All values passed!
Output for 7.2.7
Old time: 0.0026571750640869 New time: 0.0001530647277832 5.7604306864065% faster All values passed!
Output for 7.2.6
Old time: 0.031100988388062 New time: 0.00043201446533203 1.3890698904536% faster All values passed!
Output for 7.2.5
Old time: 0.0045437812805176 New time: 0.00030684471130371 6.7530695770805% faster All values passed!
Output for 7.2.4
Old time: 0.0044121742248535 New time: 0.00031304359436035 7.094996217443% faster All values passed!
Output for 7.2.3
Old time: 0.088060855865479 New time: 0.00052499771118164 0.59617602625124% faster All values passed!
Output for 7.2.2
Old time: 0.017472982406616 New time: 0.00017309188842773 0.99062589545213% faster All values passed!
Output for 7.2.1
Old time: 0.029791831970215 New time: 0.00031900405883789 1.0707769134735% faster All values passed!
Output for 7.2.0
Old time: 0.0038871765136719 New time: 0.00016593933105469 4.2688910696762% faster All values passed!
Output for 7.1.33
Old time: 0.00372314453125 New time: 0.00022792816162109 6.1219262295082% faster All values passed!
Output for 7.1.32
Old time: 0.0044028759002686 New time: 0.00023293495178223 5.2905182216927% faster All values passed!
Output for 7.1.31
Old time: 0.0067200660705566 New time: 0.00034713745117188 5.1656850918896% faster All values passed!
Output for 7.1.30
Old time: 0.0055480003356934 New time: 0.00033783912658691 6.0893854748603% faster All values passed!
Output for 7.1.29
Old time: 0.004831075668335 New time: 0.00021815299987793 4.5156196022307% faster All values passed!
Output for 7.1.28
Old time: 0.0037620067596436 New time: 0.00021100044250488 5.6087204512327% faster All values passed!
Output for 7.1.27
Old time: 0.0043511390686035 New time: 0.00022602081298828 5.1945205479452% faster All values passed!
Output for 7.1.26
Old time: 0.0041639804840088 New time: 0.00021600723266602 5.1875178929287% faster All values passed!
Output for 7.1.25
Old time: 0.039768934249878 New time: 0.00044918060302734 1.1294760885596% faster All values passed!
Output for 7.1.7
Old time: 0.0020251274108887 New time: 7.8201293945312E-5 3.8615493289381% faster All values passed!
Output for 7.1.6
Old time: 0.0031230449676514 New time: 0.00013399124145508 4.290403847622% faster All values passed!
Output for 7.1.5
Old time: 0.0036940574645996 New time: 8.702278137207E-5 2.3557506131406% faster All values passed!
Output for 7.1.0
Old time: 0.0030579566955566 New time: 0.00017881393432617 5.8474972711679% faster All values passed!
Output for 7.0.20
Old time: 0.0025289058685303 New time: 8.7976455688477E-5 3.4788347317809% faster All values passed!
Output for 7.0.14
Old time: 0.0030641555786133 New time: 0.00017595291137695 5.7422969187675% faster All values passed!
Output for 7.0.6
Old time: 0.0017361640930176 New time: 8.8214874267578E-5 5.0810216973359% faster All values passed!
Output for 7.0.5
Old time: 0.0025770664215088 New time: 0.00014400482177734 5.5879359792765% faster All values passed!
Output for 7.0.4
Old time: 0.0022361278533936 New time: 0.00011515617370605 5.1498027508263% faster All values passed!
Output for 7.0.3
Old time: 0.0022838115692139 New time: 0.00010800361633301 4.729094895083% faster All values passed!
Output for 7.0.2
Old time: 0.0025260448455811 New time: 0.00011205673217773 4.4360547428032% faster All values passed!
Output for 7.0.1
Old time: 0.0017328262329102 New time: 7.7009201049805E-5 4.4441386901486% faster All values passed!
Output for 7.0.0
Old time: 0.0019290447235107 New time: 9.5129013061523E-5 4.9314052651094% faster All values passed!
Output for 5.6.28
Old time: 0.019685983657837 New time: 0.00057411193847656 2.9163487507418% faster All values passed!
Output for 5.6.21
Old time: 0.017503023147583 New time: 0.00053310394287109 3.0457820821925% faster All values passed!
Output for 5.6.20
Old time: 0.017902135848999 New time: 0.00055313110351562 3.0897492242332% faster All values passed!
Output for 5.6.19
Old time: 0.017142057418823 New time: 0.00049304962158203 2.8762569715851% faster All values passed!
Output for 5.6.18
Old time: 0.014159917831421 New time: 0.00037908554077148 2.6771733090872% faster All values passed!
Output for 5.6.17
Old time: 0.016408920288086 New time: 0.00049018859863281 2.9873300011624% faster All values passed!
Output for 5.6.16
Old time: 0.016515016555786 New time: 0.00049400329589844 2.9912370613117% faster All values passed!
Output for 5.6.15
Old time: 0.017838954925537 New time: 0.00054287910461426 3.0432225815936% faster All values passed!
Output for 5.6.14
Old time: 0.012351036071777 New time: 0.00036096572875977 2.9225542429156% faster All values passed!
Output for 5.6.13
Old time: 0.011777877807617 New time: 0.00035190582275391 2.9878542510121% faster All values passed!
Output for 5.6.12
Old time: 0.013957977294922 New time: 0.0004570484161377 3.2744602350369% faster All values passed!
Output for 5.6.11
Old time: 0.017124891281128 New time: 0.00050997734069824 2.977988778593% faster All values passed!
Output for 5.6.10
Old time: 0.014839887619019 New time: 0.00044894218444824 3.025239786% faster All values passed!
Output for 5.6.9
Old time: 0.015132904052734 New time: 0.00047183036804199 3.117910259642% faster All values passed!
Output for 5.6.8
Old time: 0.024781942367554 New time: 0.00083184242248535 3.3566473932829% faster All values passed!
Output for 5.5.35
Old time: 0.017326831817627 New time: 0.00052285194396973 3.0175853812918% faster All values passed!
Output for 5.5.34
Old time: 0.014694213867188 New time: 0.00048398971557617 3.293743509865% faster All values passed!
Output for 5.5.33
Old time: 0.019545078277588 New time: 0.00056600570678711 2.8958988997048% faster All values passed!
Output for 5.5.32
Old time: 0.016106843948364 New time: 0.00052595138549805 3.2653907071066% faster All values passed!
Output for 5.5.31
Old time: 0.015519142150879 New time: 0.00046110153198242 2.971179253979% faster All values passed!
Output for 5.5.30
Old time: 0.013966083526611 New time: 0.00046420097351074 3.3237734302981% faster All values passed!
Output for 5.5.29
Old time: 0.014628887176514 New time: 0.00045394897460938 3.1030998402816% faster All values passed!
Output for 5.5.28
Old time: 0.018281936645508 New time: 0.0005340576171875 2.9212310902452% faster All values passed!
Output for 5.5.27
Old time: 0.012944936752319 New time: 0.00038790702819824 2.9965926880928% faster All values passed!
Output for 5.5.26
Old time: 0.016659021377563 New time: 0.0005037784576416 3.0240579336797% faster All values passed!
Output for 5.5.25
Old time: 0.018680095672607 New time: 0.00054812431335449 2.9342693044033% faster All values passed!
Output for 5.5.24
Old time: 0.016798973083496 New time: 0.00049400329589844 2.9406755606018% faster All values passed!
Output for 5.4.45
Old time: 0.012784957885742 New time: 0.00035405158996582 2.7692824108608% faster All values passed!
Output for 5.4.44
Old time: 0.011600017547607 New time: 0.00030899047851562 2.6637069922309% faster All values passed!
Output for 5.4.43
Old time: 0.011538028717041 New time: 0.00032281875610352 2.7978675042361% faster All values passed!
Output for 5.4.42
Old time: 0.012627124786377 New time: 0.00031900405883789 2.5263396397417% faster All values passed!
Output for 5.4.41
Old time: 0.014997005462646 New time: 0.00037121772766113 2.475279005437% faster All values passed!
Output for 5.4.40
Old time: 0.01258397102356 New time: 0.00032186508178711 2.5577385801709% faster All values passed!
Output for 5.4.39
Old time: 0.012279033660889 New time: 0.00031685829162598 2.5804823113665% faster All values passed!
Output for 5.4.38
Old time: 0.013520956039429 New time: 0.0003049373626709 2.2552943873323% faster All values passed!
Output for 5.4.37
Old time: 0.017773866653442 New time: 0.00034213066101074 1.9249084494762% faster All values passed!
Output for 5.4.36
Old time: 0.013002157211304 New time: 0.00030899047851562 2.3764554873017% faster All values passed!
Output for 5.4.35
Old time: 0.013619184494019 New time: 0.00034689903259277 2.5471351294575% faster All values passed!
Output for 5.4.34
Old time: 0.015928983688354 New time: 0.00039815902709961 2.4995883911332% faster All values passed!
Output for 5.4.32
Old time: 0.013186931610107 New time: 0.00031113624572754 2.3594286747424% faster All values passed!
Output for 5.4.31
Old time: 0.011409997940063 New time: 0.00030899047851562 2.708067785277% faster All values passed!
Output for 5.4.30
Old time: 0.011559009552002 New time: 0.00030207633972168 2.6133410337857% faster All values passed!
Output for 5.4.29
Old time: 0.011795997619629 New time: 0.00032305717468262 2.7387015926914% faster All values passed!
Output for 5.4.28
Old time: 0.013842105865479 New time: 0.00036096572875977 2.6077370904957% faster All values passed!
Output for 5.4.27
Old time: 0.011471033096313 New time: 0.00031614303588867 2.7560118886787% faster All values passed!
Output for 5.4.26
Old time: 0.011672973632812 New time: 0.0003211498260498 2.7512254901961% faster All values passed!
Output for 5.4.25
Old time: 0.012334823608398 New time: 0.00030994415283203 2.5127570743776% faster All values passed!
Output for 5.4.24
Old time: 0.011852025985718 New time: 0.00033116340637207 2.7941501880871% faster All values passed!
Output for 5.4.23
Old time: 0.016003131866455 New time: 0.00049901008605957 3.1182026757248% faster All values passed!
Output for 5.4.22
Old time: 0.012372970581055 New time: 0.0003058910369873 2.4722521967011% faster All values passed!
Output for 5.4.21
Old time: 0.011358976364136 New time: 0.00029802322387695 2.6236802888147% faster All values passed!
Output for 5.4.20
Old time: 0.015274047851562 New time: 0.00037813186645508 2.4756493506494% faster All values passed!
Output for 5.4.19
Old time: 0.011837005615234 New time: 0.00032901763916016 2.7795681598453% faster All values passed!
Output for 5.4.18
Old time: 0.011862993240356 New time: 0.00031185150146484 2.6287758506341% faster All values passed!
Output for 5.4.17
Old time: 0.012491941452026 New time: 0.00031399726867676 2.5135986258231% faster All values passed!
Output for 5.4.16
Old time: 0.011845111846924 New time: 0.00033712387084961 2.8461012036552% faster All values passed!
Output for 5.4.15
Old time: 0.01280403137207 New time: 0.00034093856811523 2.6627439296887% faster All values passed!
Output for 5.4.14
Old time: 0.012081146240234 New time: 0.00049495697021484 4.096937164509% faster All values passed!
Output for 5.4.13
Old time: 0.014562845230103 New time: 0.0003659725189209 2.5130564332608% faster All values passed!
Output for 5.4.12
Old time: 0.011962175369263 New time: 0.00031399726867676 2.6249177844657% faster All values passed!
Output for 5.4.11
Old time: 0.011411905288696 New time: 0.00030899047851562 2.707615167659% faster All values passed!
Output for 5.4.10
Old time: 0.016475200653076 New time: 0.00051999092102051 3.1562038725363% faster All values passed!
Output for 5.4.9
Old time: 0.011554002761841 New time: 0.00031685829162598 2.742411423619% faster All values passed!
Output for 5.4.8
Old time: 0.011446952819824 New time: 0.00031304359436035 2.7347329834208% faster All values passed!
Output for 5.4.7
Old time: 0.011802911758423 New time: 0.00030612945556641 2.5936774063226% faster All values passed!
Output for 5.4.6
Old time: 0.01403284072876 New time: 0.00036191940307617 2.5790886540487% faster All values passed!
Output for 5.4.5
Old time: 0.016752004623413 New time: 0.00048398971557617 2.8891450692399% faster All values passed!
Output for 5.4.4
Old time: 0.011991024017334 New time: 0.00030612945556641 2.5529884280431% faster All values passed!
Output for 5.4.3
Old time: 0.018301010131836 New time: 0.00046396255493164 2.5351745700886% faster All values passed!
Output for 5.4.2
Old time: 0.011568069458008 New time: 0.00030207633972168 2.6112943116241% faster All values passed!
Output for 5.4.1
Old time: 0.011609792709351 New time: 0.00030303001403809 2.6101242427354% faster All values passed!
Output for 5.4.0
Old time: 0.012524127960205 New time: 0.00031089782714844 2.4823910146583% faster All values passed!
Output for 5.3.29
Old time: 0.022141933441162 New time: 0.00074195861816406 3.3509206417573% faster All values passed!
Output for 5.3.28
Old time: 0.013362169265747 New time: 0.0003659725189209 2.7388705504505% faster All values passed!
Output for 5.3.27
Old time: 0.016474008560181 New time: 0.00078392028808594 4.7585278666223% faster All values passed!
Output for 5.3.26
Old time: 0.01544189453125 New time: 0.00043416023254395 2.8115736166008% faster All values passed!
Output for 5.3.25
Old time: 0.018769979476929 New time: 0.00066709518432617 3.5540538824037% faster All values passed!
Output for 5.3.24
Old time: 0.013893842697144 New time: 0.00035595893859863 2.5619905619906% faster All values passed!
Output for 5.3.23
Old time: 0.012356042861938 New time: 0.00037097930908203 3.0024119633382% faster All values passed!
Output for 5.3.22
Old time: 0.013996839523315 New time: 0.00043201446533203 3.0865143849967% faster All values passed!
Output for 5.3.21
Old time: 0.012369871139526 New time: 0.0003659725189209 2.9585798816568% faster All values passed!
Output for 5.3.20
Old time: 0.018264055252075 New time: 0.00049805641174316 2.72697604595% faster All values passed!
Output for 5.3.19
Old time: 0.012103080749512 New time: 0.00035810470581055 2.9587896934836% faster All values passed!
Output for 5.3.18
Old time: 0.012505054473877 New time: 0.00036311149597168 2.9037178265014% faster All values passed!
Output for 5.3.17
Old time: 0.0121910572052 New time: 0.00035786628723145 2.9354819783701% faster All values passed!
Output for 5.3.16
Old time: 0.013570070266724 New time: 0.0004119873046875 3.0359997891667% faster All values passed!
Output for 5.3.15
Old time: 0.012264013290405 New time: 0.00038385391235352 3.1299208771555% faster All values passed!
Output for 5.3.14
Old time: 0.012723922729492 New time: 0.00036811828613281 2.893119472343% faster All values passed!
Output for 5.3.13
Old time: 0.012224912643433 New time: 0.00037002563476562 3.0268161872257% faster All values passed!
Output for 5.3.12
Old time: 0.012080907821655 New time: 0.0003662109375 3.0313196897634% faster All values passed!
Output for 5.3.11
Old time: 0.011862993240356 New time: 0.00036096572875977 3.0427879494343% faster All values passed!
Output for 5.3.10
Old time: 0.012387037277222 New time: 0.00035691261291504 2.8813396208257% faster All values passed!
Output for 5.3.9
Old time: 0.018275022506714 New time: 0.00057005882263184 3.1193330811079% faster All values passed!
Output for 5.3.8
Old time: 0.012423992156982 New time: 0.00037002563476562 2.9783151026674% faster All values passed!
Output for 5.3.7
Old time: 0.012109994888306 New time: 0.00038003921508789 3.1382277085425% faster All values passed!
Output for 5.3.6
Old time: 0.013612031936646 New time: 0.00043177604675293 3.1720175853432% faster All values passed!
Output for 5.3.5
Old time: 0.012323141098022 New time: 0.00039291381835938 3.1884226207751% faster All values passed!
Output for 5.3.4
Old time: 0.013160943984985 New time: 0.00038599967956543 2.9329178819224% faster All values passed!
Output for 5.3.3
Old time: 0.012680053710938 New time: 0.0003809928894043 3.0046630565584% faster All values passed!
Output for 5.3.2
Old time: 0.012935161590576 New time: 0.00040292739868164 3.114977697497% faster All values passed!
Output for 5.3.1
Old time: 0.012147903442383 New time: 0.00037288665771484 3.0695556602292% faster All values passed!
Output for 5.3.0
Old time: 0.01506781578064 New time: 0.00043010711669922 2.8544755454991% faster All values passed!
Output for 5.2.17
Old time: 0.013746976852417 New time: 0.00056004524230957 4.0739520283043% faster All values passed!
Output for 5.2.16
Old time: 0.018001079559326 New time: 0.00068497657775879 3.8051972133189% faster All values passed!
Output for 5.2.15
Old time: 0.013645887374878 New time: 0.00055599212646484 4.0744299816546% faster All values passed!
Output for 5.2.14
Old time: 0.016339063644409 New time: 0.00063300132751465 3.8741591396594% faster All values passed!
Output for 5.2.13
Old time: 0.01370906829834 New time: 0.00054407119750977 3.9686956521739% faster All values passed!
Output for 5.2.12
Old time: 0.014307022094727 New time: 0.00055789947509766 3.8994800693241% faster All values passed!
Output for 5.2.11
Old time: 0.013911962509155 New time: 0.00057506561279297 4.1336052509811% faster All values passed!
Output for 5.2.10
Old time: 0.014150857925415 New time: 0.00055909156799316 3.9509376105673% faster All values passed!
Output for 5.2.9
Old time: 0.013910055160522 New time: 0.00054502487182617 3.9182078398437% faster All values passed!
Output for 5.2.8
Old time: 0.01837682723999 New time: 0.00075411796569824 4.103635278549% faster All values passed!
Output for 5.2.7
Old time: 0.013684988021851 New time: 0.00055909156799316 4.0854370285197% faster All values passed!
Output for 5.2.6
Old time: 0.01592493057251 New time: 0.00060701370239258 3.8117196155343% faster All values passed!
Output for 5.2.5
Old time: 0.013944864273071 New time: 0.00054788589477539 3.9289439039819% faster All values passed!
Output for 5.2.4
Old time: 0.013801097869873 New time: 0.00054502487182617 3.9491414158864% faster All values passed!
Output for 5.2.3
Old time: 0.026830911636353 New time: 0.0010600090026855 3.9507006584501% faster All values passed!
Output for 5.2.2
Old time: 0.013649940490723 New time: 0.0005340576171875 3.91252707329% faster All values passed!
Output for 5.2.1
Old time: 0.014714956283569 New time: 0.0005638599395752 3.831883212625% faster All values passed!
Output for 5.2.0
Old time: 0.019958019256592 New time: 0.00073504447937012 3.682953052204% faster All values passed!
Output for 5.1.6
Old time: 0.013718128204346 New time: 0.00057601928710938 4.1989641628141% faster All values passed!
Output for 5.1.5
Old time: 0.013912916183472 New time: 0.00056290626525879 4.0459257989889% faster All values passed!
Output for 5.1.4
Old time: 0.013936996459961 New time: 0.00059700012207031 4.2835637060353% faster All values passed!
Output for 5.1.3
Old time: 0.013592004776001 New time: 0.00056886672973633 4.1853040747952% faster All values passed!
Output for 5.1.2
Old time: 0.016000032424927 New time: 0.00061202049255371 3.8251203266328% faster All values passed!
Output for 5.1.1
Old time: 0.016286849975586 New time: 0.00066018104553223 4.0534605925752% faster All values passed!
Output for 5.1.0
Old time: 0.013835906982422 New time: 0.0005958080291748 4.3062448304384% faster All values passed!
Output for 5.0.5
Old time: 0.030594110488892 New time: 0.0010979175567627 3.5886565721901% faster All values passed!
Output for 5.0.4
Old time: 0.030335903167725 New time: 0.0010719299316406 3.5335355789937% faster All values passed!
Output for 5.0.3
Old time: 0.03813910484314 New time: 0.0012540817260742 3.288178186751% faster All values passed!
Output for 5.0.2
Old time: 0.035638093948364 New time: 0.0010509490966797 2.948948667688% faster All values passed!
Output for 5.0.1
Old time: 0.049252033233643 New time: 0.001600980758667 3.2505881555635% faster All values passed!
Output for 5.0.0
Old time: 0.029530048370361 New time: 0.0011329650878906 3.8366516494696% faster All values passed!
Output for 4.4.9
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.6999999999989E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 4.000000000004E-06 23.529411764744% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.4.8
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.4999999999987E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 2.9999999999752E-06 19.999999999852% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.4.7
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.8999999999991E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 4.000000000004E-06 21.052631578978% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.4.6
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 2.0999999999993E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 4.000000000004E-06 19.047619047644% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.4.5
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.6000000000016E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 1.9999999999465E-06 12.499999999653% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.4.4
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 2.2999999999995E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 4.9999999999217E-06 21.739130434447% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.4.3
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.7000000000017E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 2.9999999999752E-06 17.647058823366% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.4.2
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.5999999999988E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 4.000000000004E-06 25.000000000043% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.4.1
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.9999999999999E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 4.000000000004E-06 20.000000000021% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.4.0
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.4999999999987E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 3.0000000000863E-06 20.000000000592% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.3.11
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Old time: 1.4000000000014E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 New time: 2.9999999999752E-06 21.428571428373% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 All values passed!
Output for 4.3.10
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 2.0999999999993E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 4.9999999999772E-06 23.809523809423% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.3.9
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 2.4000000000024E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 5.0000000000328E-06 20.833333333449% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.3.2, 4.3.8
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.7000000000045E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 4.000000000004E-06 23.529411764667% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.3.7
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.8000000000004E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 5.000000000005E-06 27.777777777799% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.3.6
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 2.3999999999996E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 3.000000000003E-06 12.500000000014% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.3.5
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.7000000000045E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 3.9999999999485E-06 23.529411764341% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.3.4
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.6999999999989E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 2.9999999999752E-06 17.647058823395% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.3.3
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.6000000000016E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 2.9999999999752E-06 18.749999999827% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.3.1
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.6999999999934E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 4.000000000004E-06 23.529411764821% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!
Output for 4.3.0
Warning: Wrong parameter count for range() in /in/lKdPn on line 29 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 29 Old time: 1.5999999999905E-05 Warning: Wrong parameter count for range() in /in/lKdPn on line 35 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 35 New time: 4.000000000004E-06 25.000000000173% faster Warning: Wrong parameter count for range() in /in/lKdPn on line 43 Warning: Invalid argument supplied for foreach() in /in/lKdPn on line 43 All values passed!

preferences:
196.72 ms | 402 KiB | 219 Q