3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string1 = 'aaaaaaaaaaaaaaaaaaaa'; $string2 = 'bbbbbbbbbbbbbbbbbbbb'; $string3 = 'cccccccccccccccccccc'; $string4 = 'dddddddddddddddddddd'; $string5 = 'eeeeeeeeeeeeeeeeeeee'; $time1 = microtime(true); for ($k = 0; $k<10000; $k++) { $concatTest1 = $string1 . $string2 . $string3 . $string4 . $string5; } $time2 = microtime(true); $testDuration1 = $time2 - $time1; echo "Test 1 took $testDuration1 Seconds"; $time3 = microtime(true); for ($m = 0; $m<10000; $m++) { $concatTest2 = "{$string1}{$string2}{$string3}{$string4}{$string5}"; } $time4 = microtime(true); $testDuration2 = $time4 - $time3; echo "Test 2 took $testDuration2 Seconds"; $time5 = microtime(true); for ($p = 0; $p<10000; $p++) { $concatTest3 = implode('', array($string1, $string2, $string3, $string4, $string5)); } $time6 = microtime(true); $testDuration3 = $time6 - $time5; echo "Test 3 took $testDuration3 Seconds";
Output for 7.3.1
Test 1 took 0.023159027099609 SecondsTest 2 took 0.002032995223999 SecondsTest 3 took 0.0045721530914307 Seconds
Output for 7.3.0
Test 1 took 0.0015959739685059 SecondsTest 2 took 0.0010888576507568 SecondsTest 3 took 0.0034849643707275 Seconds
Output for 7.2.13
Test 1 took 0.0030181407928467 SecondsTest 2 took 0.0021131038665771 SecondsTest 3 took 0.043555021286011 Seconds
Output for 7.2.12
Test 1 took 0.027683019638062 SecondsTest 2 took 0.0012118816375732 SecondsTest 3 took 0.0029997825622559 Seconds
Output for 7.2.11
Test 1 took 0.028735876083374 SecondsTest 2 took 0.0021522045135498 SecondsTest 3 took 0.0050339698791504 Seconds
Output for 7.2.10
Test 1 took 0.0031948089599609 SecondsTest 2 took 0.0033528804779053 SecondsTest 3 took 0.0055840015411377 Seconds
Output for 7.2.9
Test 1 took 0.11744618415833 SecondsTest 2 took 0.0018408298492432 SecondsTest 3 took 0.0028800964355469 Seconds
Output for 7.2.8
Test 1 took 0.080334901809692 SecondsTest 2 took 0.0020110607147217 SecondsTest 3 took 0.0039958953857422 Seconds
Output for 7.2.7
Test 1 took 0.0020480155944824 SecondsTest 2 took 0.0013828277587891 SecondsTest 3 took 0.0030391216278076 Seconds
Output for 7.2.6
Test 1 took 0.001971960067749 SecondsTest 2 took 0.0014002323150635 SecondsTest 3 took 0.003507137298584 Seconds
Output for 7.2.5
Test 1 took 0.0034148693084717 SecondsTest 2 took 0.0020821094512939 SecondsTest 3 took 0.0033190250396729 Seconds
Output for 7.2.4
Test 1 took 0.18984293937683 SecondsTest 2 took 0.0015428066253662 SecondsTest 3 took 0.002871036529541 Seconds
Output for 7.2.3
Test 1 took 0.043627977371216 SecondsTest 2 took 0.0011799335479736 SecondsTest 3 took 0.0034661293029785 Seconds
Output for 7.2.2
Test 1 took 0.0028581619262695 SecondsTest 2 took 0.0017049312591553 SecondsTest 3 took 0.0040171146392822 Seconds
Output for 7.2.1
Test 1 took 0.023729085922241 SecondsTest 2 took 0.0023961067199707 SecondsTest 3 took 0.0064940452575684 Seconds
Output for 7.2.0
Test 1 took 0.020009994506836 SecondsTest 2 took 0.0012049674987793 SecondsTest 3 took 0.0035190582275391 Seconds
Output for 7.1.25
Test 1 took 0.033660888671875 SecondsTest 2 took 0.0027561187744141 SecondsTest 3 took 0.0060560703277588 Seconds
Output for 7.1.7
Test 1 took 0.0012938976287842 SecondsTest 2 took 0.00061702728271484 SecondsTest 3 took 0.0017020702362061 Seconds
Output for 7.1.6
Test 1 took 0.0028069019317627 SecondsTest 2 took 0.0012438297271729 SecondsTest 3 took 0.0041358470916748 Seconds
Output for 7.1.5
Test 1 took 0.0015859603881836 SecondsTest 2 took 0.00076889991760254 SecondsTest 3 took 0.0023078918457031 Seconds
Output for 7.1.0
Test 1 took 0.0019989013671875 SecondsTest 2 took 0.0012359619140625 SecondsTest 3 took 0.0031919479370117 Seconds
Output for 7.0.20
Test 1 took 0.0011441707611084 SecondsTest 2 took 0.0005180835723877 SecondsTest 3 took 0.0015978813171387 Seconds
Output for 7.0.14
Test 1 took 0.0021328926086426 SecondsTest 2 took 0.0013010501861572 SecondsTest 3 took 0.0031018257141113 Seconds
Output for 7.0.11
Test 1 took 0.0015749931335449 SecondsTest 2 took 0.00066900253295898 SecondsTest 3 took 0.0020358562469482 Seconds
Output for 7.0.10
Test 1 took 0.0017080307006836 SecondsTest 2 took 0.00080394744873047 SecondsTest 3 took 0.0023741722106934 Seconds
Output for 7.0.9
Test 1 took 0.001633882522583 SecondsTest 2 took 0.00084209442138672 SecondsTest 3 took 0.0022921562194824 Seconds
Output for 7.0.8
Test 1 took 0.0015649795532227 SecondsTest 2 took 0.00070095062255859 SecondsTest 3 took 0.0021798610687256 Seconds
Output for 7.0.7
Test 1 took 0.0016300678253174 SecondsTest 2 took 0.00072193145751953 SecondsTest 3 took 0.0021569728851318 Seconds
Output for 7.0.6
Test 1 took 0.0019049644470215 SecondsTest 2 took 0.00085186958312988 SecondsTest 3 took 0.0025191307067871 Seconds
Output for 7.0.5
Test 1 took 0.0016520023345947 SecondsTest 2 took 0.00080490112304688 SecondsTest 3 took 0.0023097991943359 Seconds
Output for 7.0.4
Test 1 took 0.0015580654144287 SecondsTest 2 took 0.0007479190826416 SecondsTest 3 took 0.0022199153900146 Seconds
Output for 7.0.3
Test 1 took 0.0017409324645996 SecondsTest 2 took 0.00082588195800781 SecondsTest 3 took 0.0025730133056641 Seconds
Output for 7.0.2
Test 1 took 0.0017051696777344 SecondsTest 2 took 0.00079894065856934 SecondsTest 3 took 0.0025157928466797 Seconds
Output for 7.0.1
Test 1 took 0.0013771057128906 SecondsTest 2 took 0.00069594383239746 SecondsTest 3 took 0.0019798278808594 Seconds
Output for 7.0.0
Test 1 took 0.0015850067138672 SecondsTest 2 took 0.0007469654083252 SecondsTest 3 took 0.0021650791168213 Seconds
Output for 5.6.28
Test 1 took 0.0029489994049072 SecondsTest 2 took 0.003525972366333 SecondsTest 3 took 0.0067141056060791 Seconds
Output for 5.6.26
Test 1 took 0.0018179416656494 SecondsTest 2 took 0.001924991607666 SecondsTest 3 took 0.0059828758239746 Seconds
Output for 5.6.25
Test 1 took 0.0014059543609619 SecondsTest 2 took 0.0014669895172119 SecondsTest 3 took 0.0049569606781006 Seconds
Output for 5.6.24
Test 1 took 0.0016369819641113 SecondsTest 2 took 0.0015289783477783 SecondsTest 3 took 0.0048658847808838 Seconds
Output for 5.6.23
Test 1 took 0.0016248226165771 SecondsTest 2 took 0.0016629695892334 SecondsTest 3 took 0.0051810741424561 Seconds
Output for 5.6.22
Test 1 took 0.0020630359649658 SecondsTest 2 took 0.0019810199737549 SecondsTest 3 took 0.0062501430511475 Seconds
Output for 5.6.21
Test 1 took 0.00199294090271 SecondsTest 2 took 0.0019810199737549 SecondsTest 3 took 0.0061700344085693 Seconds
Output for 5.6.20
Test 1 took 0.002079963684082 SecondsTest 2 took 0.0019550323486328 SecondsTest 3 took 0.0060720443725586 Seconds
Output for 5.6.19
Test 1 took 0.0018069744110107 SecondsTest 2 took 0.0017950534820557 SecondsTest 3 took 0.0053298473358154 Seconds
Output for 5.6.18
Test 1 took 0.0017879009246826 SecondsTest 2 took 0.0017280578613281 SecondsTest 3 took 0.0053789615631104 Seconds
Output for 5.6.17
Test 1 took 0.0016520023345947 SecondsTest 2 took 0.001317024230957 SecondsTest 3 took 0.004619836807251 Seconds
Output for 5.6.16
Test 1 took 0.0019311904907227 SecondsTest 2 took 0.0022211074829102 SecondsTest 3 took 0.0067360401153564 Seconds
Output for 5.6.15
Test 1 took 0.0019669532775879 SecondsTest 2 took 0.0018458366394043 SecondsTest 3 took 0.0057251453399658 Seconds
Output for 5.6.14
Test 1 took 0.0016548633575439 SecondsTest 2 took 0.0016059875488281 SecondsTest 3 took 0.0047380924224854 Seconds
Output for 5.6.13
Test 1 took 0.0022239685058594 SecondsTest 2 took 0.0021481513977051 SecondsTest 3 took 0.0061848163604736 Seconds
Output for 5.6.12
Test 1 took 0.0015811920166016 SecondsTest 2 took 0.0016908645629883 SecondsTest 3 took 0.0050921440124512 Seconds
Output for 5.6.11
Test 1 took 0.0019059181213379 SecondsTest 2 took 0.0018908977508545 SecondsTest 3 took 0.0059139728546143 Seconds
Output for 5.6.10
Test 1 took 0.002007007598877 SecondsTest 2 took 0.0020489692687988 SecondsTest 3 took 0.0061869621276855 Seconds
Output for 5.6.9
Test 1 took 0.0015420913696289 SecondsTest 2 took 0.0011839866638184 SecondsTest 3 took 0.0037369728088379 Seconds
Output for 5.6.8
Test 1 took 0.0011360645294189 SecondsTest 2 took 0.0011789798736572 SecondsTest 3 took 0.0040810108184814 Seconds
Output for 5.6.7
Test 1 took 0.0012369155883789 SecondsTest 2 took 0.0012128353118896 SecondsTest 3 took 0.0042080879211426 Seconds
Output for 5.6.6
Test 1 took 0.0011229515075684 SecondsTest 2 took 0.001215934753418 SecondsTest 3 took 0.0039031505584717 Seconds
Output for 5.6.5
Test 1 took 0.0011119842529297 SecondsTest 2 took 0.0012078285217285 SecondsTest 3 took 0.0038161277770996 Seconds
Output for 5.6.4
Test 1 took 0.0011401176452637 SecondsTest 2 took 0.0012807846069336 SecondsTest 3 took 0.0038130283355713 Seconds
Output for 5.6.3
Test 1 took 0.0014350414276123 SecondsTest 2 took 0.0011909008026123 SecondsTest 3 took 0.0037820339202881 Seconds
Output for 5.6.2
Test 1 took 0.0014960765838623 SecondsTest 2 took 0.0015900135040283 SecondsTest 3 took 0.0050270557403564 Seconds
Output for 5.6.1
Test 1 took 0.0012679100036621 SecondsTest 2 took 0.0012991428375244 SecondsTest 3 took 0.0040378570556641 Seconds
Output for 5.6.0
Test 1 took 0.0011229515075684 SecondsTest 2 took 0.0012309551239014 SecondsTest 3 took 0.0038487911224365 Seconds
Output for 5.5.38
Test 1 took 0.0017998218536377 SecondsTest 2 took 0.0018241405487061 SecondsTest 3 took 0.0056900978088379 Seconds
Output for 5.5.37
Test 1 took 0.0019998550415039 SecondsTest 2 took 0.0019569396972656 SecondsTest 3 took 0.0063920021057129 Seconds
Output for 5.5.36
Test 1 took 0.0016911029815674 SecondsTest 2 took 0.0017569065093994 SecondsTest 3 took 0.0058789253234863 Seconds
Output for 5.5.35
Test 1 took 0.0019009113311768 SecondsTest 2 took 0.0018680095672607 SecondsTest 3 took 0.0052969455718994 Seconds
Output for 5.5.34
Test 1 took 0.0019919872283936 SecondsTest 2 took 0.0019340515136719 SecondsTest 3 took 0.0067160129547119 Seconds
Output for 5.5.33
Test 1 took 0.0019989013671875 SecondsTest 2 took 0.0020999908447266 SecondsTest 3 took 0.005856990814209 Seconds
Output for 5.5.32
Test 1 took 0.0019149780273438 SecondsTest 2 took 0.0020709037780762 SecondsTest 3 took 0.006195068359375 Seconds
Output for 5.5.31
Test 1 took 0.0013809204101562 SecondsTest 2 took 0.0013878345489502 SecondsTest 3 took 0.0042068958282471 Seconds
Output for 5.5.30
Test 1 took 0.0019679069519043 SecondsTest 2 took 0.0018329620361328 SecondsTest 3 took 0.0060379505157471 Seconds
Output for 5.5.29
Test 1 took 0.0019040107727051 SecondsTest 2 took 0.0018939971923828 SecondsTest 3 took 0.0058231353759766 Seconds
Output for 5.5.28
Test 1 took 0.0017352104187012 SecondsTest 2 took 0.0017640590667725 SecondsTest 3 took 0.0058000087738037 Seconds
Output for 5.5.27
Test 1 took 0.0020179748535156 SecondsTest 2 took 0.0019328594207764 SecondsTest 3 took 0.0064032077789307 Seconds
Output for 5.5.26
Test 1 took 0.002108097076416 SecondsTest 2 took 0.0022759437561035 SecondsTest 3 took 0.0075819492340088 Seconds
Output for 5.5.25
Test 1 took 0.0014379024505615 SecondsTest 2 took 0.0014078617095947 SecondsTest 3 took 0.0045490264892578 Seconds
Output for 5.5.24
Test 1 took 0.0015301704406738 SecondsTest 2 took 0.0013749599456787 SecondsTest 3 took 0.0044050216674805 Seconds
Output for 5.5.23
Test 1 took 0.0014340877532959 SecondsTest 2 took 0.0011930465698242 SecondsTest 3 took 0.0038738250732422 Seconds
Output for 5.5.22
Test 1 took 0.001121997833252 SecondsTest 2 took 0.0011799335479736 SecondsTest 3 took 0.0038430690765381 Seconds
Output for 5.5.21
Test 1 took 0.0013129711151123 SecondsTest 2 took 0.0013389587402344 SecondsTest 3 took 0.0046610832214355 Seconds
Output for 5.5.20
Test 1 took 0.0015020370483398 SecondsTest 2 took 0.0011789798736572 SecondsTest 3 took 0.0038650035858154 Seconds
Output for 5.5.19
Test 1 took 0.0011348724365234 SecondsTest 2 took 0.0011711120605469 SecondsTest 3 took 0.0038979053497314 Seconds
Output for 5.5.18
Test 1 took 0.0019950866699219 SecondsTest 2 took 0.0020499229431152 SecondsTest 3 took 0.0069260597229004 Seconds
Output for 5.5.16
Test 1 took 0.0013718605041504 SecondsTest 2 took 0.0014619827270508 SecondsTest 3 took 0.0047800540924072 Seconds
Output for 5.5.15
Test 1 took 0.0010859966278076 SecondsTest 2 took 0.0011110305786133 SecondsTest 3 took 0.0039710998535156 Seconds
Output for 5.5.14
Test 1 took 0.0011310577392578 SecondsTest 2 took 0.0012738704681396 SecondsTest 3 took 0.0039951801300049 Seconds
Output for 5.5.13
Test 1 took 0.001194953918457 SecondsTest 2 took 0.0011870861053467 SecondsTest 3 took 0.0038199424743652 Seconds
Output for 5.5.12
Test 1 took 0.0010321140289307 SecondsTest 2 took 0.00099587440490723 SecondsTest 3 took 0.0034079551696777 Seconds
Output for 5.5.11
Test 1 took 0.001086950302124 SecondsTest 2 took 0.0011029243469238 SecondsTest 3 took 0.0034909248352051 Seconds
Output for 5.5.10
Test 1 took 0.0012891292572021 SecondsTest 2 took 0.0014541149139404 SecondsTest 3 took 0.0038409233093262 Seconds
Output for 5.5.9
Test 1 took 0.0013220310211182 SecondsTest 2 took 0.0013670921325684 SecondsTest 3 took 0.0043461322784424 Seconds
Output for 5.5.8
Test 1 took 0.0013830661773682 SecondsTest 2 took 0.0014021396636963 SecondsTest 3 took 0.0045909881591797 Seconds
Output for 5.5.7
Test 1 took 0.00093293190002441 SecondsTest 2 took 0.00097084045410156 SecondsTest 3 took 0.0032088756561279 Seconds
Output for 5.5.6
Test 1 took 0.0013411045074463 SecondsTest 2 took 0.0011711120605469 SecondsTest 3 took 0.0043048858642578 Seconds
Output for 5.5.5
Test 1 took 0.0023660659790039 SecondsTest 2 took 0.0025360584259033 SecondsTest 3 took 0.0048282146453857 Seconds
Output for 5.5.4
Test 1 took 0.0010998249053955 SecondsTest 2 took 0.0014770030975342 SecondsTest 3 took 0.0039498805999756 Seconds
Output for 5.5.3
Test 1 took 0.0011529922485352 SecondsTest 2 took 0.0012240409851074 SecondsTest 3 took 0.0038690567016602 Seconds
Output for 5.5.2
Test 1 took 0.0015878677368164 SecondsTest 2 took 0.0016930103302002 SecondsTest 3 took 0.0052890777587891 Seconds
Output for 5.5.1
Test 1 took 0.001694917678833 SecondsTest 2 took 0.0018501281738281 SecondsTest 3 took 0.0045101642608643 Seconds
Output for 5.5.0
Test 1 took 0.0017879009246826 SecondsTest 2 took 0.001741886138916 SecondsTest 3 took 0.0057699680328369 Seconds
Output for 5.4.45
Test 1 took 0.0016710758209229 SecondsTest 2 took 0.0016698837280273 SecondsTest 3 took 0.0053160190582275 Seconds
Output for 5.4.44
Test 1 took 0.0018250942230225 SecondsTest 2 took 0.0017809867858887 SecondsTest 3 took 0.0057768821716309 Seconds
Output for 5.4.43
Test 1 took 0.0015690326690674 SecondsTest 2 took 0.0017819404602051 SecondsTest 3 took 0.0056569576263428 Seconds
Output for 5.4.42
Test 1 took 0.0015401840209961 SecondsTest 2 took 0.0014290809631348 SecondsTest 3 took 0.0046629905700684 Seconds
Output for 5.4.41
Test 1 took 0.0016820430755615 SecondsTest 2 took 0.0023751258850098 SecondsTest 3 took 0.0055999755859375 Seconds
Output for 5.4.40
Test 1 took 0.001384973526001 SecondsTest 2 took 0.0017540454864502 SecondsTest 3 took 0.0051469802856445 Seconds
Output for 5.4.39
Test 1 took 0.0011348724365234 SecondsTest 2 took 0.0012609958648682 SecondsTest 3 took 0.0039138793945312 Seconds
Output for 5.4.38
Test 1 took 0.0011289119720459 SecondsTest 2 took 0.001183032989502 SecondsTest 3 took 0.0039281845092773 Seconds
Output for 5.4.37
Test 1 took 0.0011179447174072 SecondsTest 2 took 0.001305103302002 SecondsTest 3 took 0.0039060115814209 Seconds
Output for 5.4.36
Test 1 took 0.0012810230255127 SecondsTest 2 took 0.0013720989227295 SecondsTest 3 took 0.0045199394226074 Seconds
Output for 5.4.35
Test 1 took 0.001248836517334 SecondsTest 2 took 0.0013680458068848 SecondsTest 3 took 0.0040769577026367 Seconds
Output for 5.4.34
Test 1 took 0.0011088848114014 SecondsTest 2 took 0.0011770725250244 SecondsTest 3 took 0.0040428638458252 Seconds
Output for 5.4.32
Test 1 took 0.0011320114135742 SecondsTest 2 took 0.0011961460113525 SecondsTest 3 took 0.0038561820983887 Seconds
Output for 5.4.31
Test 1 took 0.0011188983917236 SecondsTest 2 took 0.0011799335479736 SecondsTest 3 took 0.003856897354126 Seconds
Output for 5.4.30
Test 1 took 0.0010850429534912 SecondsTest 2 took 0.0011370182037354 SecondsTest 3 took 0.0037369728088379 Seconds
Output for 5.4.29
Test 1 took 0.0011990070343018 SecondsTest 2 took 0.0011711120605469 SecondsTest 3 took 0.0038909912109375 Seconds
Output for 5.4.28
Test 1 took 0.0012001991271973 SecondsTest 2 took 0.0012149810791016 SecondsTest 3 took 0.0037879943847656 Seconds
Output for 5.4.27
Test 1 took 0.0011370182037354 SecondsTest 2 took 0.0011801719665527 SecondsTest 3 took 0.0038008689880371 Seconds
Output for 5.4.26
Test 1 took 0.00094795227050781 SecondsTest 2 took 0.0011229515075684 SecondsTest 3 took 0.0035400390625 Seconds
Output for 5.4.25
Test 1 took 0.00091385841369629 SecondsTest 2 took 0.00096917152404785 SecondsTest 3 took 0.003201961517334 Seconds
Output for 5.4.24
Test 1 took 0.0011589527130127 SecondsTest 2 took 0.0012331008911133 SecondsTest 3 took 0.0039019584655762 Seconds
Output for 5.4.23
Test 1 took 0.0011310577392578 SecondsTest 2 took 0.0011630058288574 SecondsTest 3 took 0.0038678646087646 Seconds
Output for 5.4.22
Test 1 took 0.0011451244354248 SecondsTest 2 took 0.0012009143829346 SecondsTest 3 took 0.0041038990020752 Seconds
Output for 5.4.21
Test 1 took 0.001121997833252 SecondsTest 2 took 0.0013670921325684 SecondsTest 3 took 0.0035738945007324 Seconds
Output for 5.4.20
Test 1 took 0.00091981887817383 SecondsTest 2 took 0.00096702575683594 SecondsTest 3 took 0.0031979084014893 Seconds
Output for 5.4.19
Test 1 took 0.0017950534820557 SecondsTest 2 took 0.0018839836120605 SecondsTest 3 took 0.0061328411102295 Seconds
Output for 5.4.18
Test 1 took 0.0019381046295166 SecondsTest 2 took 0.0020551681518555 SecondsTest 3 took 0.0065450668334961 Seconds
Output for 5.4.17
Test 1 took 0.0016679763793945 SecondsTest 2 took 0.0018768310546875 SecondsTest 3 took 0.0060091018676758 Seconds
Output for 5.4.16
Test 1 took 0.001910924911499 SecondsTest 2 took 0.0018868446350098 SecondsTest 3 took 0.0051009654998779 Seconds
Output for 5.4.15
Test 1 took 0.001471996307373 SecondsTest 2 took 0.0015528202056885 SecondsTest 3 took 0.005263090133667 Seconds
Output for 5.4.14
Test 1 took 0.0015499591827393 SecondsTest 2 took 0.0015528202056885 SecondsTest 3 took 0.0050761699676514 Seconds
Output for 5.4.13
Test 1 took 0.0018038749694824 SecondsTest 2 took 0.0018620491027832 SecondsTest 3 took 0.0058889389038086 Seconds
Output for 5.4.12
Test 1 took 0.0026030540466309 SecondsTest 2 took 0.0028290748596191 SecondsTest 3 took 0.005856990814209 Seconds
Output for 5.4.11
Test 1 took 0.0016951560974121 SecondsTest 2 took 0.0017621517181396 SecondsTest 3 took 0.0045919418334961 Seconds
Output for 5.4.10
Test 1 took 0.0021510124206543 SecondsTest 2 took 0.0022621154785156 SecondsTest 3 took 0.0066909790039062 Seconds
Output for 5.4.9
Test 1 took 0.0014891624450684 SecondsTest 2 took 0.0018298625946045 SecondsTest 3 took 0.0057270526885986 Seconds
Output for 5.4.8
Test 1 took 0.0014679431915283 SecondsTest 2 took 0.0014808177947998 SecondsTest 3 took 0.0048542022705078 Seconds
Output for 5.4.7
Test 1 took 0.001878023147583 SecondsTest 2 took 0.0019059181213379 SecondsTest 3 took 0.0063369274139404 Seconds
Output for 5.4.6
Test 1 took 0.0019419193267822 SecondsTest 2 took 0.0019102096557617 SecondsTest 3 took 0.0063619613647461 Seconds
Output for 5.4.5
Test 1 took 0.0013928413391113 SecondsTest 2 took 0.0013339519500732 SecondsTest 3 took 0.004716157913208 Seconds
Output for 5.4.4
Test 1 took 0.0013148784637451 SecondsTest 2 took 0.0013978481292725 SecondsTest 3 took 0.0044751167297363 Seconds
Output for 5.4.3
Test 1 took 0.0017530918121338 SecondsTest 2 took 0.0019321441650391 SecondsTest 3 took 0.0051579475402832 Seconds
Output for 5.4.2
Test 1 took 0.0018658638000488 SecondsTest 2 took 0.0019659996032715 SecondsTest 3 took 0.0063600540161133 Seconds
Output for 5.4.1
Test 1 took 0.0017480850219727 SecondsTest 2 took 0.0017621517181396 SecondsTest 3 took 0.0057840347290039 Seconds
Output for 5.4.0
Test 1 took 0.0019981861114502 SecondsTest 2 took 0.0019431114196777 SecondsTest 3 took 0.0063450336456299 Seconds
Output for 5.3.29
Test 1 took 0.0012779235839844 SecondsTest 2 took 0.0011410713195801 SecondsTest 3 took 0.0039098262786865 Seconds
Output for 5.3.28
Test 1 took 0.0012590885162354 SecondsTest 2 took 0.0013279914855957 SecondsTest 3 took 0.0041489601135254 Seconds
Output for 5.3.27
Test 1 took 0.0021090507507324 SecondsTest 2 took 0.0019910335540771 SecondsTest 3 took 0.0066161155700684 Seconds
Output for 5.3.26
Test 1 took 0.0020859241485596 SecondsTest 2 took 0.0021209716796875 SecondsTest 3 took 0.0065751075744629 Seconds
Output for 5.3.25
Test 1 took 0.0016031265258789 SecondsTest 2 took 0.0016260147094727 SecondsTest 3 took 0.0056028366088867 Seconds
Output for 5.3.24
Test 1 took 0.0013000965118408 SecondsTest 2 took 0.0013120174407959 SecondsTest 3 took 0.0041799545288086 Seconds
Output for 5.3.23
Test 1 took 0.0025920867919922 SecondsTest 2 took 0.0037670135498047 SecondsTest 3 took 0.012814998626709 Seconds
Output for 5.3.22
Test 1 took 0.0022289752960205 SecondsTest 2 took 0.0016078948974609 SecondsTest 3 took 0.0051920413970947 Seconds
Output for 5.3.21
Test 1 took 0.0021810531616211 SecondsTest 2 took 0.0019798278808594 SecondsTest 3 took 0.0063819885253906 Seconds
Output for 5.3.20
Test 1 took 0.0017170906066895 SecondsTest 2 took 0.0017850399017334 SecondsTest 3 took 0.0061721801757812 Seconds
Output for 5.3.19
Test 1 took 0.0017900466918945 SecondsTest 2 took 0.0014810562133789 SecondsTest 3 took 0.0048339366912842 Seconds
Output for 5.3.18
Test 1 took 0.0016119480133057 SecondsTest 2 took 0.0013120174407959 SecondsTest 3 took 0.0041110515594482 Seconds
Output for 5.3.17
Test 1 took 0.0030021667480469 SecondsTest 2 took 0.0019218921661377 SecondsTest 3 took 0.0060200691223145 Seconds
Output for 5.3.16
Test 1 took 0.0016500949859619 SecondsTest 2 took 0.0018138885498047 SecondsTest 3 took 0.005774974822998 Seconds
Output for 5.3.15
Test 1 took 0.0018429756164551 SecondsTest 2 took 0.0017509460449219 SecondsTest 3 took 0.005730152130127 Seconds
Output for 5.3.14
Test 1 took 0.001708984375 SecondsTest 2 took 0.0016398429870605 SecondsTest 3 took 0.0054149627685547 Seconds
Output for 5.3.13
Test 1 took 0.0016679763793945 SecondsTest 2 took 0.0016999244689941 SecondsTest 3 took 0.0054399967193604 Seconds
Output for 5.3.12
Test 1 took 0.0020949840545654 SecondsTest 2 took 0.0021059513092041 SecondsTest 3 took 0.0051112174987793 Seconds
Output for 5.3.11
Test 1 took 0.0019681453704834 SecondsTest 2 took 0.0019659996032715 SecondsTest 3 took 0.0065209865570068 Seconds
Output for 5.3.10
Test 1 took 0.0021119117736816 SecondsTest 2 took 0.0019989013671875 SecondsTest 3 took 0.0063381195068359 Seconds
Output for 5.3.9
Test 1 took 0.001816987991333 SecondsTest 2 took 0.0017459392547607 SecondsTest 3 took 0.0056421756744385 Seconds
Output for 5.3.8
Test 1 took 0.0022029876708984 SecondsTest 2 took 0.002190113067627 SecondsTest 3 took 0.0069458484649658 Seconds
Output for 5.3.7
Test 1 took 0.0018939971923828 SecondsTest 2 took 0.001957893371582 SecondsTest 3 took 0.0062131881713867 Seconds
Output for 5.3.6
Test 1 took 0.0015230178833008 SecondsTest 2 took 0.0013260841369629 SecondsTest 3 took 0.0043518543243408 Seconds
Output for 5.3.5
Test 1 took 0.0018870830535889 SecondsTest 2 took 0.0021359920501709 SecondsTest 3 took 0.0063409805297852 Seconds
Output for 5.3.4
Test 1 took 0.0017728805541992 SecondsTest 2 took 0.001917839050293 SecondsTest 3 took 0.0070509910583496 Seconds
Output for 5.3.3
Test 1 took 0.0015249252319336 SecondsTest 2 took 0.0015649795532227 SecondsTest 3 took 0.0050089359283447 Seconds
Output for 5.3.2
Test 1 took 0.0017199516296387 SecondsTest 2 took 0.001755952835083 SecondsTest 3 took 0.0057570934295654 Seconds
Output for 5.3.1
Test 1 took 0.0013971328735352 SecondsTest 2 took 0.0015120506286621 SecondsTest 3 took 0.0048439502716064 Seconds
Output for 5.3.0
Test 1 took 0.0013091564178467 SecondsTest 2 took 0.0013191699981689 SecondsTest 3 took 0.0043601989746094 Seconds
Output for 5.2.17
Test 1 took 0.0021300315856934 SecondsTest 2 took 0.0023500919342041 SecondsTest 3 took 0.0070929527282715 Seconds
Output for 5.2.16
Test 1 took 0.0022838115692139 SecondsTest 2 took 0.0024528503417969 SecondsTest 3 took 0.00679612159729 Seconds
Output for 5.2.15
Test 1 took 0.0023069381713867 SecondsTest 2 took 0.0023767948150635 SecondsTest 3 took 0.0065422058105469 Seconds
Output for 5.2.14
Test 1 took 0.002626895904541 SecondsTest 2 took 0.0027580261230469 SecondsTest 3 took 0.0077991485595703 Seconds
Output for 5.2.13
Test 1 took 0.0016789436340332 SecondsTest 2 took 0.0018589496612549 SecondsTest 3 took 0.0050098896026611 Seconds
Output for 5.2.12
Test 1 took 0.0020780563354492 SecondsTest 2 took 0.002202033996582 SecondsTest 3 took 0.0059881210327148 Seconds
Output for 5.2.11
Test 1 took 0.0018939971923828 SecondsTest 2 took 0.001939058303833 SecondsTest 3 took 0.005324125289917 Seconds
Output for 5.2.10
Test 1 took 0.0025320053100586 SecondsTest 2 took 0.0026450157165527 SecondsTest 3 took 0.0074260234832764 Seconds
Output for 5.2.9
Test 1 took 0.0027379989624023 SecondsTest 2 took 0.0027890205383301 SecondsTest 3 took 0.0075159072875977 Seconds
Output for 5.2.8
Test 1 took 0.0023479461669922 SecondsTest 2 took 0.0024919509887695 SecondsTest 3 took 0.0067539215087891 Seconds
Output for 5.2.7
Test 1 took 0.0024170875549316 SecondsTest 2 took 0.0026559829711914 SecondsTest 3 took 0.0069828033447266 Seconds
Output for 5.2.6
Test 1 took 0.0027670860290527 SecondsTest 2 took 0.0028650760650635 SecondsTest 3 took 0.0076479911804199 Seconds
Output for 5.2.5
Test 1 took 0.0026669502258301 SecondsTest 2 took 0.0026631355285645 SecondsTest 3 took 0.0075168609619141 Seconds
Output for 5.2.4
Test 1 took 0.0021710395812988 SecondsTest 2 took 0.0021488666534424 SecondsTest 3 took 0.0065479278564453 Seconds
Output for 5.2.3
Test 1 took 0.002507209777832 SecondsTest 2 took 0.0030128955841064 SecondsTest 3 took 0.0067780017852783 Seconds
Output for 5.2.2
Test 1 took 0.0023708343505859 SecondsTest 2 took 0.002701997756958 SecondsTest 3 took 0.0071029663085938 Seconds
Output for 5.2.1
Test 1 took 0.0024158954620361 SecondsTest 2 took 0.00341796875 SecondsTest 3 took 0.0093410015106201 Seconds
Output for 5.2.0
Test 1 took 0.0025789737701416 SecondsTest 2 took 0.002924919128418 SecondsTest 3 took 0.00819993019104 Seconds
Output for 5.1.6
Test 1 took 0.0047769546508789 SecondsTest 2 took 0.0068631172180176 SecondsTest 3 took 0.0081629753112793 Seconds
Output for 5.1.5
Test 1 took 0.0043909549713135 SecondsTest 2 took 0.0066819190979004 SecondsTest 3 took 0.0088169574737549 Seconds
Output for 5.1.4
Test 1 took 0.0034210681915283 SecondsTest 2 took 0.0054490566253662 SecondsTest 3 took 0.0069639682769775 Seconds
Output for 5.1.3
Test 1 took 0.0042920112609863 SecondsTest 2 took 0.0063109397888184 SecondsTest 3 took 0.0087399482727051 Seconds
Output for 5.1.2
Test 1 took 0.0038859844207764 SecondsTest 2 took 0.0057690143585205 SecondsTest 3 took 0.0080740451812744 Seconds
Output for 5.1.1
Test 1 took 0.0034809112548828 SecondsTest 2 took 0.0051240921020508 SecondsTest 3 took 0.0070390701293945 Seconds
Output for 5.1.0
Test 1 took 0.0035820007324219 SecondsTest 2 took 0.0052978992462158 SecondsTest 3 took 0.0071001052856445 Seconds
Output for 5.0.5
Test 1 took 0.0088441371917725 SecondsTest 2 took 0.015058994293213 SecondsTest 3 took 0.011754035949707 Seconds
Output for 5.0.4
Test 1 took 0.0073981285095215 SecondsTest 2 took 0.014811992645264 SecondsTest 3 took 0.011565923690796 Seconds
Output for 5.0.3
Test 1 took 0.0083260536193848 SecondsTest 2 took 0.016397953033447 SecondsTest 3 took 0.012565135955811 Seconds
Output for 5.0.2
Test 1 took 0.0062651634216309 SecondsTest 2 took 0.011296987533569 SecondsTest 3 took 0.0104079246521 Seconds
Output for 5.0.1
Test 1 took 0.0078480243682861 SecondsTest 2 took 0.012464046478271 SecondsTest 3 took 0.01012396812439 Seconds
Output for 5.0.0
Test 1 took 0.0059151649475098 SecondsTest 2 took 0.012225866317749 SecondsTest 3 took 0.0094480514526367 Seconds
Output for 4.4.9
Test 1 took 0.009116 SecondsTest 2 took 0.017618 SecondsTest 3 took 0.015449 Seconds
Output for 4.4.8
Test 1 took 0.009139 SecondsTest 2 took 0.017699 SecondsTest 3 took 0.01546 Seconds
Output for 4.4.7
Test 1 took 0.00849 SecondsTest 2 took 0.015883 SecondsTest 3 took 0.014501 Seconds
Output for 4.4.6
Test 1 took 0.009066 SecondsTest 2 took 0.017013 SecondsTest 3 took 0.014899 Seconds
Output for 4.4.5
Test 1 took 0.00911 SecondsTest 2 took 0.017402 SecondsTest 3 took 0.015247 Seconds
Output for 4.4.4
Test 1 took 0.007705 SecondsTest 2 took 0.015005 SecondsTest 3 took 0.013894 Seconds
Output for 4.4.3
Test 1 took 0.008629 SecondsTest 2 took 0.015972 SecondsTest 3 took 0.012923 Seconds
Output for 4.4.2
Test 1 took 0.009577 SecondsTest 2 took 0.017246 SecondsTest 3 took 0.013619 Seconds
Output for 4.4.1
Test 1 took 0.009198 SecondsTest 2 took 0.016007 SecondsTest 3 took 0.013915 Seconds
Output for 4.4.0
Test 1 took 0.008547 SecondsTest 2 took 0.015675 SecondsTest 3 took 0.013677 Seconds
Output for 4.3.11
Test 1 took 0.007266 SecondsTest 2 took 0.014006 SecondsTest 3 took 0.011892 Seconds
Output for 4.3.10
Test 1 took 0.0094 SecondsTest 2 took 0.017309 SecondsTest 3 took 0.014898 Seconds
Output for 4.3.9
Test 1 took 0.009032 SecondsTest 2 took 0.017683 SecondsTest 3 took 0.015356 Seconds
Output for 4.3.8
Test 1 took 0.00849 SecondsTest 2 took 0.013832 SecondsTest 3 took 0.012176 Seconds
Output for 4.3.7
Test 1 took 0.009194 SecondsTest 2 took 0.016087 SecondsTest 3 took 0.014846 Seconds
Output for 4.3.6
Test 1 took 0.00938 SecondsTest 2 took 0.015717 SecondsTest 3 took 0.013791 Seconds
Output for 4.3.5
Test 1 took 0.005987 SecondsTest 2 took 0.012521 SecondsTest 3 took 0.009072 Seconds
Output for 4.3.4
Test 1 took 0.008509 SecondsTest 2 took 0.016257 SecondsTest 3 took 0.014188 Seconds
Output for 4.3.3
Test 1 took 0.00783 SecondsTest 2 took 0.015415 SecondsTest 3 took 0.01314 Seconds
Output for 4.3.2
Test 1 took 0.009039 SecondsTest 2 took 0.016313 SecondsTest 3 took 0.014509 Seconds
Output for 4.3.1
Test 1 took 0.008902 SecondsTest 2 took 0.016753 SecondsTest 3 took 0.011374 Seconds
Output for 4.3.0
Test 1 took 0.007449 SecondsTest 2 took 0.014782 SecondsTest 3 took 0.010351 Seconds

preferences:
160.45 ms | 401 KiB | 234 Q