3v4l.org

run code in 300+ PHP versions simultaneously
<?php function convertOld($input) { $oldMin = 0; $oldMax = 1; $newMin = 127; $newMax = 0; return ceil(((($input- $oldMin) * ($newMax - $newMin)) / ($oldMax - $oldMin)) + $newMin); } function convertNew($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; } $start = microtime(1); foreach (range(0,1,1/1000) as $input) { convertOld($input); } echo "Old time: ".(microtime(1) - $start)."\n"; $start = microtime(1); foreach (range(0,1,1/1000) as $input) { convertNew($input); } echo "New time: ".(microtime(1) - $start)."\n"; $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.00020503997802734 New time: 0.0023150444030762 All values passed!
Output for 7.4.0
Old time: 0.00025105476379395 New time: 0.0028219223022461 All values passed!
Output for 7.3.13
Old time: 0.00025582313537598 New time: 0.0030059814453125 All values passed!
Output for 7.3.12
Old time: 0.00026893615722656 New time: 0.0030519962310791 All values passed!
Output for 7.3.11
Old time: 0.00025415420532227 New time: 0.0030491352081299 All values passed!
Output for 7.3.10
Old time: 0.00018310546875 New time: 0.002079963684082 All values passed!
Output for 7.3.9
Old time: 0.0002281665802002 New time: 0.0030448436737061 All values passed!
Output for 7.3.8
Old time: 0.00030398368835449 New time: 0.0036139488220215 All values passed!
Output for 7.3.7
Old time: 0.00020289421081543 New time: 0.0024659633636475 All values passed!
Output for 7.3.6
Old time: 0.00026297569274902 New time: 0.0027430057525635 All values passed!
Output for 7.3.5
Old time: 0.00025701522827148 New time: 0.0029358863830566 All values passed!
Output for 7.3.4
Old time: 0.00027894973754883 New time: 0.0039482116699219 All values passed!
Output for 7.3.3
Old time: 0.00022292137145996 New time: 0.0027408599853516 All values passed!
Output for 7.3.2
Old time: 0.00028395652770996 New time: 0.0035920143127441 All values passed!
Output for 7.3.1
Old time: 0.0001671314239502 New time: 0.0020709037780762 All values passed!
Output for 7.3.0
Old time: 0.0002439022064209 New time: 0.0026798248291016 All values passed!
Output for 7.2.26
Old time: 0.00025582313537598 New time: 0.0030720233917236 All values passed!
Output for 7.2.25
Old time: 0.0003058910369873 New time: 0.0028760433197021 All values passed!
Output for 7.2.24
Old time: 0.00028586387634277 New time: 0.0026271343231201 All values passed!
Output for 7.2.23
Old time: 0.00030994415283203 New time: 0.003303050994873 All values passed!
Output for 7.2.22
Old time: 0.00027894973754883 New time: 0.0020959377288818 All values passed!
Output for 7.2.21
Old time: 0.00025296211242676 New time: 0.0021059513092041 All values passed!
Output for 7.2.20
Old time: 0.00039196014404297 New time: 0.00341796875 All values passed!
Output for 7.2.19
Old time: 0.00024294853210449 New time: 0.0026679039001465 All values passed!
Output for 7.2.18
Old time: 0.00018310546875 New time: 0.0020980834960938 All values passed!
Output for 7.2.17
Old time: 0.00025486946105957 New time: 0.0030031204223633 All values passed!
Output for 7.2.16
Old time: 0.00027203559875488 New time: 0.0028209686279297 All values passed!
Output for 7.2.15
Old time: 0.00016593933105469 New time: 0.0021109580993652 All values passed!
Output for 7.2.14
Old time: 0.00028109550476074 New time: 0.0034198760986328 All values passed!
Output for 7.2.13
Old time: 0.00016307830810547 New time: 0.0020890235900879 All values passed!
Output for 7.2.12
Old time: 0.00024199485778809 New time: 0.0028929710388184 All values passed!
Output for 7.2.11
Old time: 0.00016689300537109 New time: 0.0020959377288818 All values passed!
Output for 7.2.10
Old time: 0.00017309188842773 New time: 0.0020878314971924 All values passed!
Output for 7.2.9
Old time: 0.00017213821411133 New time: 0.0021178722381592 All values passed!
Output for 7.2.8
Old time: 0.00022006034851074 New time: 0.0021090507507324 All values passed!
Output for 7.2.7
Old time: 0.00025320053100586 New time: 0.0031239986419678 All values passed!
Output for 7.2.6
Old time: 0.00027680397033691 New time: 0.0031230449676514 All values passed!
Output for 7.2.5
Old time: 0.00025105476379395 New time: 0.0031290054321289 All values passed!
Output for 7.2.4
Old time: 0.00018310546875 New time: 0.0023090839385986 All values passed!
Output for 7.2.3
Old time: 0.00030994415283203 New time: 0.0028400421142578 All values passed!
Output for 7.2.2
Old time: 0.0003972053527832 New time: 0.0025100708007812 All values passed!
Output for 7.2.1
Old time: 0.00023984909057617 New time: 0.0025742053985596 All values passed!
Output for 7.2.0
Old time: 0.00029802322387695 New time: 0.002223014831543 All values passed!
Output for 7.1.33
Old time: 0.00023293495178223 New time: 0.0038280487060547 All values passed!
Output for 7.1.32
Old time: 0.00023603439331055 New time: 0.0037860870361328 All values passed!
Output for 7.1.31
Old time: 0.00028681755065918 New time: 0.0044450759887695 All values passed!
Output for 7.1.30
Old time: 0.0002439022064209 New time: 0.0036909580230713 All values passed!
Output for 7.1.29
Old time: 0.00028896331787109 New time: 0.0045239925384521 All values passed!
Output for 7.1.28
Old time: 0.00023698806762695 New time: 0.0039219856262207 All values passed!
Output for 7.1.27
Old time: 0.00036907196044922 New time: 0.0055580139160156 All values passed!
Output for 7.1.26
Old time: 0.00037407875061035 New time: 0.0059669017791748 All values passed!
Output for 7.1.25
Old time: 0.00042390823364258 New time: 0.0043919086456299 All values passed!
Output for 7.1.24
Old time: 0.00034594535827637 New time: 0.0057981014251709 All values passed!
Output for 7.1.23
Old time: 0.00045204162597656 New time: 0.0056369304656982 All values passed!
Output for 7.1.22
Old time: 0.00031113624572754 New time: 0.0050599575042725 All values passed!
Output for 7.1.21
Old time: 0.00046086311340332 New time: 0.0049219131469727 All values passed!
Output for 7.1.20
Old time: 0.00053000450134277 New time: 0.0044760704040527 All values passed!
Output for 7.1.19
Old time: 0.00036787986755371 New time: 0.0065538883209229 All values passed!
Output for 7.1.18
Old time: 0.0005497932434082 New time: 0.0059590339660645 All values passed!
Output for 7.1.17
Old time: 0.00042819976806641 New time: 0.0049118995666504 All values passed!
Output for 7.1.16
Old time: 0.00023293495178223 New time: 0.003715991973877 All values passed!
Output for 7.1.15
Old time: 0.00040888786315918 New time: 0.0068418979644775 All values passed!
Output for 7.1.14
Old time: 0.00025105476379395 New time: 0.0040810108184814 All values passed!
Output for 7.1.13
Old time: 0.00056099891662598 New time: 0.0049300193786621 All values passed!
Output for 7.1.12
Old time: 0.0003349781036377 New time: 0.0042388439178467 All values passed!
Output for 7.1.11
Old time: 0.00031900405883789 New time: 0.0049090385437012 All values passed!
Output for 7.1.10
Old time: 0.0003960132598877 New time: 0.005810022354126 All values passed!
Output for 7.1.9
Old time: 0.00034213066101074 New time: 0.0057568550109863 All values passed!
Output for 7.1.8
Old time: 0.00042319297790527 New time: 0.0067410469055176 All values passed!
Output for 7.1.7
Old time: 0.00030303001403809 New time: 0.0047590732574463 All values passed!
Output for 7.1.6
Old time: 0.00051999092102051 New time: 0.0059769153594971 All values passed!
Output for 7.1.5
Old time: 0.00036787986755371 New time: 0.0054361820220947 All values passed!
Output for 7.1.4
Old time: 0.00023913383483887 New time: 0.0036380290985107 All values passed!
Output for 7.1.3
Old time: 0.00058484077453613 New time: 0.0061490535736084 All values passed!
Output for 7.1.2
Old time: 0.00034499168395996 New time: 0.0038440227508545 All values passed!
Output for 7.1.1
Old time: 0.00030183792114258 New time: 0.0046849250793457 All values passed!
Output for 7.1.0
Old time: 0.00023412704467773 New time: 0.0035960674285889 All values passed!
Output for 7.0.33
Old time: 0.00050806999206543 New time: 0.004608154296875 All values passed!
Output for 7.0.32
Old time: 0.00037479400634766 New time: 0.0055868625640869 All values passed!
Output for 7.0.31
Old time: 0.00059294700622559 New time: 0.0046801567077637 All values passed!
Output for 7.0.30
Old time: 0.00036311149597168 New time: 0.0057342052459717 All values passed!
Output for 7.0.29
Old time: 0.00024604797363281 New time: 0.0037240982055664 All values passed!
Output for 7.0.28
Old time: 0.00057697296142578 New time: 0.006335973739624 All values passed!
Output for 7.0.27
Old time: 0.00031900405883789 New time: 0.0057108402252197 All values passed!
Output for 7.0.26
Old time: 0.00025010108947754 New time: 0.003741979598999 All values passed!
Output for 7.0.25
Old time: 0.00025296211242676 New time: 0.0043678283691406 All values passed!
Output for 7.0.24
Old time: 0.00039482116699219 New time: 0.0066587924957275 All values passed!
Output for 7.0.23
Old time: 0.00054311752319336 New time: 0.0036749839782715 All values passed!
Output for 7.0.22
Old time: 0.00043702125549316 New time: 0.0043931007385254 All values passed!
Output for 7.0.21
Old time: 0.00037479400634766 New time: 0.0054841041564941 All values passed!
Output for 7.0.20
Old time: 0.00037598609924316 New time: 0.0054118633270264 All values passed!
Output for 7.0.19
Old time: 0.00045204162597656 New time: 0.0064539909362793 All values passed!
Output for 7.0.18
Old time: 0.0005040168762207 New time: 0.0037240982055664 All values passed!
Output for 7.0.17
Old time: 0.00026702880859375 New time: 0.0039019584655762 All values passed!
Output for 7.0.16
Old time: 0.00026416778564453 New time: 0.0041649341583252 All values passed!
Output for 7.0.15
Old time: 0.00065708160400391 New time: 0.0057098865509033 All values passed!
Output for 7.0.14
Old time: 0.00024199485778809 New time: 0.0037591457366943 All values passed!
Output for 7.0.13
Old time: 0.00023007392883301 New time: 0.0037119388580322 All values passed!
Output for 7.0.12
Old time: 0.00035691261291504 New time: 0.0043048858642578 All values passed!
Output for 7.0.11
Old time: 0.00028109550476074 New time: 0.0042159557342529 All values passed!
Output for 7.0.10
Old time: 0.00055098533630371 New time: 0.0056369304656982 All values passed!
Output for 7.0.9
Old time: 0.00042295455932617 New time: 0.0047869682312012 All values passed!
Output for 7.0.8
Old time: 0.0003049373626709 New time: 0.0039911270141602 All values passed!
Output for 7.0.7
Old time: 0.00061297416687012 New time: 0.0055689811706543 All values passed!
Output for 7.0.6
Old time: 0.00046491622924805 New time: 0.0068240165710449 All values passed!
Output for 7.0.5
Old time: 0.00034308433532715 New time: 0.0053031444549561 All values passed!
Output for 7.0.4
Old time: 0.00024986267089844 New time: 0.0036079883575439 All values passed!
Output for 7.0.3
Old time: 0.00054192543029785 New time: 0.005774974822998 All values passed!
Output for 7.0.2
Old time: 0.00034904479980469 New time: 0.0057210922241211 All values passed!
Output for 7.0.1
Old time: 0.00021910667419434 New time: 0.0038549900054932 All values passed!
Output for 7.0.0
Old time: 0.00030398368835449 New time: 0.0053269863128662 All values passed!
Output for 5.6.40
Old time: 0.0010859966278076 New time: 0.021044015884399 All values passed!
Output for 5.6.39
Old time: 0.0013601779937744 New time: 0.020875930786133 All values passed!
Output for 5.6.38
Old time: 0.00078010559082031 New time: 0.021289110183716 All values passed!
Output for 5.6.37
Old time: 0.0013279914855957 New time: 0.023107051849365 All values passed!
Output for 5.6.36
Old time: 0.0012431144714355 New time: 0.02108907699585 All values passed!
Output for 5.6.35
Old time: 0.001262903213501 New time: 0.018377065658569 All values passed!
Output for 5.6.34
Old time: 0.00078010559082031 New time: 0.020415067672729 All values passed!
Output for 5.6.33
Old time: 0.00061416625976562 New time: 0.018393039703369 All values passed!
Output for 5.6.32
Old time: 0.00089597702026367 New time: 0.026758909225464 All values passed!
Output for 5.6.31
Old time: 0.00097894668579102 New time: 0.019606113433838 All values passed!
Output for 5.6.30
Old time: 0.00062417984008789 New time: 0.018894910812378 All values passed!
Output for 5.6.29
Old time: 0.0010480880737305 New time: 0.020082950592041 All values passed!
Output for 5.6.28
Old time: 0.00062298774719238 New time: 0.01803994178772 All values passed!
Output for 5.6.27
Old time: 0.00063395500183105 New time: 0.018456220626831 All values passed!
Output for 5.6.26
Old time: 0.00073885917663574 New time: 0.025016069412231 All values passed!
Output for 5.6.25
Old time: 0.00068998336791992 New time: 0.019426107406616 All values passed!
Output for 5.6.24
Old time: 0.00097823143005371 New time: 0.026306867599487 All values passed!
Output for 5.6.23
Old time: 0.0009000301361084 New time: 0.026386976242065 All values passed!
Output for 5.6.22
Old time: 0.0012059211730957 New time: 0.021456003189087 All values passed!
Output for 5.6.21
Old time: 0.00064611434936523 New time: 0.018415927886963 All values passed!
Output for 5.6.20
Old time: 0.00090718269348145 New time: 0.025458812713623 All values passed!
Output for 5.6.19
Old time: 0.0012080669403076 New time: 0.019315004348755 All values passed!
Output for 5.6.18
Old time: 0.00062084197998047 New time: 0.017595052719116 All values passed!
Output for 5.6.17
Old time: 0.0013649463653564 New time: 0.018587112426758 All values passed!
Output for 5.6.16
Old time: 0.00093817710876465 New time: 0.021608114242554 All values passed!
Output for 5.6.15
Old time: 0.0010590553283691 New time: 0.021661996841431 All values passed!
Output for 5.6.14
Old time: 0.00098204612731934 New time: 0.021291017532349 All values passed!
Output for 5.6.13
Old time: 0.00069308280944824 New time: 0.018928050994873 All values passed!
Output for 5.6.12
Old time: 0.00090909004211426 New time: 0.026660919189453 All values passed!
Output for 5.6.11
Old time: 0.0014479160308838 New time: 0.01816987991333 All values passed!
Output for 5.6.10
Old time: 0.0014660358428955 New time: 0.023553848266602 All values passed!
Output for 5.6.9
Old time: 0.0008699893951416 New time: 0.025948047637939 All values passed!
Output for 5.6.8
Old time: 0.0013651847839355 New time: 0.019582986831665 All values passed!
Output for 5.6.7
Old time: 0.0010039806365967 New time: 0.022037029266357 All values passed!
Output for 5.6.6
Old time: 0.00089192390441895 New time: 0.022048950195312 All values passed!
Output for 5.6.5
Old time: 0.00061297416687012 New time: 0.017552852630615 All values passed!
Output for 5.6.4
Old time: 0.00059890747070312 New time: 0.01767110824585 All values passed!
Output for 5.6.3
Old time: 0.0012109279632568 New time: 0.019982099533081 All values passed!
Output for 5.6.2
Old time: 0.00088095664978027 New time: 0.025841951370239 All values passed!
Output for 5.6.1
Old time: 0.0008690357208252 New time: 0.025823831558228 All values passed!
Output for 5.6.0
Old time: 0.00060200691223145 New time: 0.017593145370483 All values passed!
Output for 5.5.38
Old time: 0.00090789794921875 New time: 0.027500152587891 All values passed!
Output for 5.5.37
Old time: 0.00091314315795898 New time: 0.021439790725708 All values passed!
Output for 5.5.36
Old time: 0.00094795227050781 New time: 0.020561218261719 All values passed!
Output for 5.5.35
Old time: 0.00091218948364258 New time: 0.026358842849731 All values passed!
Output for 5.5.34
Old time: 0.0009160041809082 New time: 0.027123928070068 All values passed!
Output for 5.5.33
Old time: 0.00097298622131348 New time: 0.018563985824585 All values passed!
Output for 5.5.32
Old time: 0.0009000301361084 New time: 0.020298004150391 All values passed!
Output for 5.5.31
Old time: 0.00089883804321289 New time: 0.026371002197266 All values passed!
Output for 5.5.30
Old time: 0.00083613395690918 New time: 0.021468877792358 All values passed!
Output for 5.5.29
Old time: 0.00092196464538574 New time: 0.027081966400146 All values passed!
Output for 5.5.28
Old time: 0.0007939338684082 New time: 0.019430875778198 All values passed!
Output for 5.5.27
Old time: 0.0013129711151123 New time: 0.025195121765137 All values passed!
Output for 5.5.26
Old time: 0.00060796737670898 New time: 0.018145084381104 All values passed!
Output for 5.5.25
Old time: 0.00063109397888184 New time: 0.018918037414551 All values passed!
Output for 5.5.24
Old time: 0.0006568431854248 New time: 0.018830060958862 All values passed!
Output for 5.5.23
Old time: 0.00091290473937988 New time: 0.026104927062988 All values passed!
Output for 5.5.22
Old time: 0.00089788436889648 New time: 0.026048183441162 All values passed!
Output for 5.5.21
Old time: 0.00089001655578613 New time: 0.020752906799316 All values passed!
Output for 5.5.20
Old time: 0.00076103210449219 New time: 0.018096923828125 All values passed!
Output for 5.5.19
Old time: 0.00098204612731934 New time: 0.019986152648926 All values passed!
Output for 5.5.18
Old time: 0.00072813034057617 New time: 0.019227981567383 All values passed!
Output for 5.5.17
Old time: 0.00063896179199219 New time: 0.01813817024231 All values passed!
Output for 5.5.16
Old time: 0.0011081695556641 New time: 0.023464202880859 All values passed!
Output for 5.5.15
Old time: 0.001201868057251 New time: 0.02720308303833 All values passed!
Output for 5.5.14
Old time: 0.00090980529785156 New time: 0.0261390209198 All values passed!
Output for 5.5.13
Old time: 0.0010771751403809 New time: 0.021408081054688 All values passed!
Output for 5.5.12
Old time: 0.00062203407287598 New time: 0.01792311668396 All values passed!
Output for 5.5.11
Old time: 0.0009009838104248 New time: 0.022594213485718 All values passed!
Output for 5.5.10
Old time: 0.00091290473937988 New time: 0.026506900787354 All values passed!
Output for 5.5.9
Old time: 0.00077104568481445 New time: 0.019572973251343 All values passed!
Output for 5.5.8
Old time: 0.00083804130554199 New time: 0.018471002578735 All values passed!
Output for 5.5.7
Old time: 0.0010111331939697 New time: 0.025712966918945 All values passed!
Output for 5.5.6
Old time: 0.00081110000610352 New time: 0.02022123336792 All values passed!
Output for 5.5.5
Old time: 0.00089287757873535 New time: 0.026387929916382 All values passed!
Output for 5.5.4
Old time: 0.00088405609130859 New time: 0.026172876358032 All values passed!
Output for 5.5.3
Old time: 0.00077295303344727 New time: 0.020591020584106 All values passed!
Output for 5.5.2
Old time: 0.00098705291748047 New time: 0.019260883331299 All values passed!
Output for 5.5.1
Old time: 0.00088000297546387 New time: 0.026741981506348 All values passed!
Output for 5.5.0
Old time: 0.00093603134155273 New time: 0.026327848434448 All values passed!
Output for 5.4.45
Old time: 0.00081014633178711 New time: 0.02311110496521 All values passed!
Output for 5.4.44
Old time: 0.00090384483337402 New time: 0.040453910827637 All values passed!
Output for 5.4.43
Old time: 0.00090408325195312 New time: 0.023911952972412 All values passed!
Output for 5.4.42
Old time: 0.0012369155883789 New time: 0.025818109512329 All values passed!
Output for 5.4.41
Old time: 0.00061511993408203 New time: 0.022166967391968 All values passed!
Output for 5.4.40
Old time: 0.0012831687927246 New time: 0.022840023040771 All values passed!
Output for 5.4.39
Old time: 0.00096297264099121 New time: 0.024790048599243 All values passed!
Output for 5.4.38
Old time: 0.00093603134155273 New time: 0.027782917022705 All values passed!
Output for 5.4.37
Old time: 0.00090289115905762 New time: 0.026782035827637 All values passed!
Output for 5.4.36
Old time: 0.0018339157104492 New time: 0.018601894378662 All values passed!
Output for 5.4.35
Old time: 0.00092196464538574 New time: 0.026596069335938 All values passed!
Output for 5.4.34
Old time: 0.00092697143554688 New time: 0.026983022689819 All values passed!
Output for 5.4.33
Old time: 0.0011370182037354 New time: 0.022215127944946 All values passed!
Output for 5.4.32
Old time: 0.0012450218200684 New time: 0.028133869171143 All values passed!
Output for 5.4.31
Old time: 0.00091791152954102 New time: 0.02695894241333 All values passed!
Output for 5.4.30
Old time: 0.0012381076812744 New time: 0.02119517326355 All values passed!
Output for 5.4.29
Old time: 0.00061202049255371 New time: 0.01908802986145 All values passed!
Output for 5.4.28
Old time: 0.00068402290344238 New time: 0.019428968429565 All values passed!
Output for 5.4.27
Old time: 0.00177001953125 New time: 0.01995587348938 All values passed!
Output for 5.4.26
Old time: 0.00092196464538574 New time: 0.027151823043823 All values passed!
Output for 5.4.25
Old time: 0.00089597702026367 New time: 0.026801824569702 All values passed!
Output for 5.4.24
Old time: 0.00090599060058594 New time: 0.02724814414978 All values passed!
Output for 5.4.23
Old time: 0.00092196464538574 New time: 0.026466131210327 All values passed!
Output for 5.4.22
Old time: 0.0007331371307373 New time: 0.020359039306641 All values passed!
Output for 5.4.21
Old time: 0.00092101097106934 New time: 0.026923179626465 All values passed!
Output for 5.4.20
Old time: 0.0012130737304688 New time: 0.022139072418213 All values passed!
Output for 5.4.19
Old time: 0.0006248950958252 New time: 0.018757104873657 All values passed!
Output for 5.4.18
Old time: 0.0008399486541748 New time: 0.021229028701782 All values passed!
Output for 5.4.17
Old time: 0.00089693069458008 New time: 0.027292966842651 All values passed!
Output for 5.4.16
Old time: 0.0017240047454834 New time: 0.020679950714111 All values passed!
Output for 5.4.15
Old time: 0.0009148120880127 New time: 0.027065992355347 All values passed!
Output for 5.4.14
Old time: 0.00063300132751465 New time: 0.02068305015564 All values passed!
Output for 5.4.13
Old time: 0.00092482566833496 New time: 0.027225971221924 All values passed!
Output for 5.4.12
Old time: 0.00071406364440918 New time: 0.025083065032959 All values passed!
Output for 5.4.11
Old time: 0.0010130405426025 New time: 0.025556087493896 All values passed!
Output for 5.4.10
Old time: 0.0010061264038086 New time: 0.021764039993286 All values passed!
Output for 5.4.9
Old time: 0.00095605850219727 New time: 0.019542932510376 All values passed!
Output for 5.4.8
Old time: 0.00092697143554688 New time: 0.028090953826904 All values passed!
Output for 5.4.7
Old time: 0.001317024230957 New time: 0.021795988082886 All values passed!
Output for 5.4.6
Old time: 0.0011429786682129 New time: 0.022582054138184 All values passed!
Output for 5.4.5
Old time: 0.0014669895172119 New time: 0.022891998291016 All values passed!
Output for 5.4.4
Old time: 0.0012011528015137 New time: 0.019550085067749 All values passed!
Output for 5.4.3
Old time: 0.0017948150634766 New time: 0.018665790557861 All values passed!
Output for 5.4.2
Old time: 0.00090503692626953 New time: 0.026854991912842 All values passed!
Output for 5.4.1
Old time: 0.00071477890014648 New time: 0.023847818374634 All values passed!
Output for 5.4.0
Old time: 0.00091195106506348 New time: 0.02680492401123 All values passed!
Output for 5.3.29
Old time: 0.00051307678222656 New time: 0.013215065002441 All values passed!
Output for 5.3.28
Old time: 0.0005180835723877 New time: 0.013275861740112 All values passed!
Output for 5.3.27
Old time: 0.00052595138549805 New time: 0.013190031051636 All values passed!
Output for 5.3.26
Old time: 0.00052690505981445 New time: 0.013091087341309 All values passed!
Output for 5.3.25
Old time: 0.00052690505981445 New time: 0.013239145278931 All values passed!
Output for 5.3.24
Old time: 0.00049805641174316 New time: 0.012996912002563 All values passed!
Output for 5.3.23
Old time: 0.00079894065856934 New time: 0.013518095016479 All values passed!
Output for 5.3.22
Old time: 0.00051498413085938 New time: 0.013438940048218 All values passed!
Output for 5.3.21
Old time: 0.00057196617126465 New time: 0.013345956802368 All values passed!
Output for 5.3.20
Old time: 0.00048589706420898 New time: 0.016438961029053 All values passed!
Output for 5.3.19
Old time: 0.00057291984558105 New time: 0.01384711265564 All values passed!
Output for 5.3.18
Old time: 0.00051593780517578 New time: 0.013222932815552 All values passed!
Output for 5.3.17
Old time: 0.00053620338439941 New time: 0.013242959976196 All values passed!
Output for 5.3.16
Old time: 0.0005028247833252 New time: 0.013173818588257 All values passed!
Output for 5.3.15
Old time: 0.00048398971557617 New time: 0.013503074645996 All values passed!
Output for 5.3.14
Old time: 0.00051593780517578 New time: 0.013437986373901 All values passed!
Output for 5.3.13
Old time: 0.00050020217895508 New time: 0.013437986373901 All values passed!
Output for 5.3.12
Old time: 0.00052499771118164 New time: 0.013281106948853 All values passed!
Output for 5.3.11
Old time: 0.00051689147949219 New time: 0.01327109336853 All values passed!
Output for 5.3.10
Old time: 0.00050115585327148 New time: 0.013225793838501 All values passed!
Output for 5.3.9
Old time: 0.0005040168762207 New time: 0.013110876083374 All values passed!
Output for 5.3.8
Old time: 0.00050091743469238 New time: 0.013086080551147 All values passed!
Output for 5.3.7
Old time: 0.00050592422485352 New time: 0.012954950332642 All values passed!
Output for 5.3.6
Old time: 0.00053310394287109 New time: 0.013501882553101 All values passed!
Output for 5.3.5
Old time: 0.00070905685424805 New time: 0.013118028640747 All values passed!
Output for 5.3.4
Old time: 0.00052595138549805 New time: 0.01432991027832 All values passed!
Output for 5.3.3
Old time: 0.00048017501831055 New time: 0.014387130737305 All values passed!
Output for 5.3.2
Old time: 0.00050115585327148 New time: 0.014554977416992 All values passed!
Output for 5.3.1
Old time: 0.00049805641174316 New time: 0.014100074768066 All values passed!
Output for 5.3.0
Old time: 0.00053811073303223 New time: 0.013381004333496 All values passed!
Output for 5.2.17
Old time: 0.00072383880615234 New time: 0.016041040420532 All values passed!
Output for 5.2.16
Old time: 0.00071620941162109 New time: 0.015893936157227 All values passed!
Output for 5.2.15
Old time: 0.00071597099304199 New time: 0.015816926956177 All values passed!
Output for 5.2.14
Old time: 0.00072813034057617 New time: 0.015894174575806 All values passed!
Output for 5.2.13
Old time: 0.00072002410888672 New time: 0.015578031539917 All values passed!
Output for 5.2.12
Old time: 0.00072884559631348 New time: 0.016024112701416 All values passed!
Output for 5.2.11
Old time: 0.0013217926025391 New time: 0.018304109573364 All values passed!
Output for 5.2.10
Old time: 0.00075292587280273 New time: 0.016114950180054 All values passed!
Output for 5.2.9
Old time: 0.00074100494384766 New time: 0.015401124954224 All values passed!
Output for 5.2.8
Old time: 0.00076985359191895 New time: 0.016339063644409 All values passed!
Output for 5.2.7
Old time: 0.0012459754943848 New time: 0.017410039901733 All values passed!
Output for 5.2.6
Old time: 0.00067496299743652 New time: 0.01520299911499 All values passed!
Output for 5.2.5
Old time: 0.00076007843017578 New time: 0.015516042709351 All values passed!
Output for 5.2.4
Old time: 0.00078296661376953 New time: 0.016067981719971 All values passed!
Output for 5.2.3
Old time: 0.00075197219848633 New time: 0.015757083892822 All values passed!
Output for 5.2.2
Old time: 0.00077486038208008 New time: 0.015644073486328 All values passed!
Output for 5.2.1
Old time: 0.00070786476135254 New time: 0.017170906066895 All values passed!
Output for 5.2.0
Old time: 0.00069713592529297 New time: 0.015858888626099 All values passed!
Output for 5.1.6
Old time: 0.00074481964111328 New time: 0.015474081039429 All values passed!
Output for 5.1.5
Old time: 0.00078010559082031 New time: 0.015956878662109 All values passed!
Output for 5.1.4
Old time: 0.00072097778320312 New time: 0.01537013053894 All values passed!
Output for 5.1.3
Old time: 0.00069999694824219 New time: 0.015585899353027 All values passed!
Output for 5.1.2
Old time: 0.00075101852416992 New time: 0.016443014144897 All values passed!
Output for 5.1.1
Old time: 0.00073409080505371 New time: 0.016160011291504 All values passed!
Output for 5.1.0
Old time: 0.00072789192199707 New time: 0.030880212783813 All values passed!
Output for 5.0.5
Old time: 0.0014481544494629 New time: 0.038477897644043 All values passed!
Output for 5.0.4
Old time: 0.001410961151123 New time: 0.037847995758057 All values passed!
Output for 5.0.3
Old time: 0.0014021396636963 New time: 0.038456916809082 All values passed!
Output for 5.0.2
Old time: 0.0015058517456055 New time: 0.037780046463013 All values passed!
Output for 5.0.1
Old time: 0.0014050006866455 New time: 0.03580904006958 All values passed!
Output for 5.0.0
Old time: 0.001507043838501 New time: 0.058193922042847 All values passed!
Output for 4.4.9
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 7.4000000000018E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 4.4999999999989E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.4.8
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 9.4999999999984E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 4.2000000000014E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.4.7
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 8.600000000003E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 3.6000000000036E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.4.6
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 6.8999999999986E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 2.599999999997E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.4.5
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 7.0999999999988E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 5.299999999997E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.4.4
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 7.9999999999969E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 4.2000000000042E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.4.3
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 7.3000000000045E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 4.1999999999986E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.4.2
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 6.5000000000037E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 6.4000000000008E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.4.1
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 7.2000000000016E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 3.9000000000011E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.4.0
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 6.4000000000008E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 2.599999999997E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.3.11
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Old time: 6.1000000000033E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 New time: 1.9999999999964E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 All values passed!
Output for 4.3.10
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 6.8999999999986E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 5.3999999999998E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.3.9
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 7.1000000000043E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 4.2000000000042E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.3.8
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 8.3000000000055E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 4.0999999999958E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.3.7
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 7.5000000000047E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 4.1000000000069E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.3.6
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 7.5999999999965E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 4.1999999999986E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.3.5
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 9.300000000001E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 3.6999999999954E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.3.4
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 7.299999999999E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 2.6000000000082E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.3.3
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 7.4000000000018E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 3.1000000000003E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.3.2
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 8.6999999999948E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 4.1999999999986E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.3.1
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 7.1999999999961E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 3.0000000000086E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!
Output for 4.3.0
Warning: Wrong parameter count for range() in /in/IsiAl on line 28 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 28 Old time: 0.00012299999999998 Warning: Wrong parameter count for range() in /in/IsiAl on line 32 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 32 New time: 7.4999999999936E-05 Warning: Wrong parameter count for range() in /in/IsiAl on line 36 Warning: Invalid argument supplied for foreach() in /in/IsiAl on line 36 All values passed!

preferences:
181.39 ms | 402 KiB | 325 Q