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<1000000; $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<1000000; $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<1000000; $p++) { $concatTest3 = implode('', array($string1, $string2, $string3, $string4, $string5)); } $time6 = microtime(true); $testDuration3 = $time6 - $time5; echo "Test 3 took $testDuration3 Seconds";
Output for 7.4.1
Test 1 took 0.16996216773987 SecondsTest 2 took 0.11014795303345 SecondsTest 3 took 0.25727605819702 Seconds
Output for 7.4.0
Test 1 took 0.22681784629822 SecondsTest 2 took 0.15051198005676 SecondsTest 3 took 0.36429595947266 Seconds
Output for 7.3.13
Test 1 took 0.241947889328 SecondsTest 2 took 0.14717793464661 SecondsTest 3 took 0.3262050151825 Seconds
Output for 7.3.12
Test 1 took 0.2310049533844 SecondsTest 2 took 0.14475893974304 SecondsTest 3 took 0.34526705741882 Seconds
Output for 7.3.11
Test 1 took 0.18226289749146 SecondsTest 2 took 0.12936210632324 SecondsTest 3 took 0.2490029335022 Seconds
Output for 7.3.10
Test 1 took 0.18505811691284 SecondsTest 2 took 0.12189507484436 SecondsTest 3 took 0.3660888671875 Seconds
Output for 7.3.9
Test 1 took 0.19882607460022 SecondsTest 2 took 0.15168499946594 SecondsTest 3 took 0.35742616653442 Seconds
Output for 7.3.8
Test 1 took 0.23536610603333 SecondsTest 2 took 0.13676309585571 SecondsTest 3 took 0.33453917503357 Seconds
Output for 7.3.7
Test 1 took 0.15485191345215 SecondsTest 2 took 0.12047100067139 SecondsTest 3 took 0.35871720314026 Seconds
Output for 7.3.6
Test 1 took 0.22143411636353 SecondsTest 2 took 0.14183688163757 SecondsTest 3 took 0.28291797637939 Seconds
Output for 7.3.5
Test 1 took 0.23860216140747 SecondsTest 2 took 0.14093995094299 SecondsTest 3 took 0.27234101295471 Seconds
Output for 7.3.4
Test 1 took 0.19748306274414 SecondsTest 2 took 0.13854908943176 SecondsTest 3 took 0.34949398040771 Seconds
Output for 7.3.3
Test 1 took 0.23257517814636 SecondsTest 2 took 0.13819313049316 SecondsTest 3 took 0.31634998321533 Seconds
Output for 7.3.2
Test 1 took 0.22204303741455 SecondsTest 2 took 0.13985800743103 SecondsTest 3 took 0.26763987541199 Seconds
Output for 7.3.1
Test 1 took 0.15953898429871 SecondsTest 2 took 0.10221004486084 SecondsTest 3 took 0.34347295761108 Seconds
Output for 7.3.0
Test 1 took 0.20554900169373 SecondsTest 2 took 0.13742995262146 SecondsTest 3 took 0.35243582725525 Seconds
Output for 7.2.26
Test 1 took 0.27227783203125 SecondsTest 2 took 0.16081118583679 SecondsTest 3 took 0.38882899284363 Seconds
Output for 7.2.25
Test 1 took 0.24954295158386 SecondsTest 2 took 0.16734290122986 SecondsTest 3 took 0.39113187789917 Seconds
Output for 7.2.24
Test 1 took 0.27606010437012 SecondsTest 2 took 0.15045404434204 SecondsTest 3 took 0.33099102973938 Seconds
Output for 7.2.23
Test 1 took 0.17882299423218 SecondsTest 2 took 0.11765599250793 SecondsTest 3 took 0.43802905082703 Seconds
Output for 7.2.22
Test 1 took 0.18563103675842 SecondsTest 2 took 0.11116099357605 SecondsTest 3 took 0.29003810882568 Seconds
Output for 7.2.21
Test 1 took 0.17284417152405 SecondsTest 2 took 0.14090991020203 SecondsTest 3 took 0.44169211387634 Seconds
Output for 7.2.20
Test 1 took 0.16989183425903 SecondsTest 2 took 0.12655591964722 SecondsTest 3 took 0.4281120300293 Seconds
Output for 7.2.19
Test 1 took 0.19694995880127 SecondsTest 2 took 0.10877203941345 SecondsTest 3 took 0.28307604789734 Seconds
Output for 7.2.18
Test 1 took 0.17637586593628 SecondsTest 2 took 0.15021300315857 SecondsTest 3 took 0.43657398223877 Seconds
Output for 7.2.17
Test 1 took 0.1743278503418 SecondsTest 2 took 0.10965514183044 SecondsTest 3 took 0.44181895256042 Seconds
Output for 7.2.16
Test 1 took 0.17193198204041 SecondsTest 2 took 0.10510897636414 SecondsTest 3 took 0.2938928604126 Seconds
Output for 7.2.15
Test 1 took 0.17269682884216 SecondsTest 2 took 0.1166570186615 SecondsTest 3 took 0.32118511199951 Seconds
Output for 7.2.14
Test 1 took 0.1865758895874 SecondsTest 2 took 0.14221620559692 SecondsTest 3 took 0.47099781036377 Seconds
Output for 7.2.13
Test 1 took 0.27092695236206 SecondsTest 2 took 0.154629945755 SecondsTest 3 took 0.36590194702148 Seconds
Output for 7.2.12
Test 1 took 0.19590902328491 SecondsTest 2 took 0.12243413925171 SecondsTest 3 took 0.34218692779541 Seconds
Output for 7.2.11
Test 1 took 0.20603680610657 SecondsTest 2 took 0.15415382385254 SecondsTest 3 took 0.43246412277222 Seconds
Output for 7.2.10
Test 1 took 0.26083993911743 SecondsTest 2 took 0.16084814071655 SecondsTest 3 took 0.43247294425964 Seconds
Output for 7.2.9
Test 1 took 0.26800298690796 SecondsTest 2 took 0.12648391723633 SecondsTest 3 took 0.4125599861145 Seconds
Output for 7.2.8
Test 1 took 0.20642185211182 SecondsTest 2 took 0.11841487884521 SecondsTest 3 took 0.30738997459412 Seconds
Output for 7.2.7
Test 1 took 0.26068305969238 SecondsTest 2 took 0.156898021698 SecondsTest 3 took 0.29321503639221 Seconds
Output for 7.2.6
Test 1 took 0.17437195777893 SecondsTest 2 took 0.12372303009033 SecondsTest 3 took 0.30347299575806 Seconds
Output for 7.2.5
Test 1 took 0.2587730884552 SecondsTest 2 took 0.15050601959229 SecondsTest 3 took 0.42883706092834 Seconds
Output for 7.2.4
Test 1 took 0.24703097343445 SecondsTest 2 took 0.14676094055176 SecondsTest 3 took 0.37018418312073 Seconds
Output for 7.2.3
Test 1 took 0.21767997741699 SecondsTest 2 took 0.14799904823303 SecondsTest 3 took 0.43345785140991 Seconds
Output for 7.2.2
Test 1 took 0.18201398849487 SecondsTest 2 took 0.12349891662598 SecondsTest 3 took 0.29102087020874 Seconds
Output for 7.2.1
Test 1 took 0.25307011604309 SecondsTest 2 took 0.14331078529358 SecondsTest 3 took 0.43952798843384 Seconds
Output for 7.2.0
Test 1 took 0.16931295394897 SecondsTest 2 took 0.14943695068359 SecondsTest 3 took 0.4290509223938 Seconds
Output for 7.1.33
Test 1 took 0.23205304145813 SecondsTest 2 took 0.15950489044189 SecondsTest 3 took 0.36608004570007 Seconds
Output for 7.1.32
Test 1 took 0.22427201271057 SecondsTest 2 took 0.18894195556641 SecondsTest 3 took 0.37025117874146 Seconds
Output for 7.1.31
Test 1 took 0.26883316040039 SecondsTest 2 took 0.1466920375824 SecondsTest 3 took 0.3914749622345 Seconds
Output for 7.1.30
Test 1 took 0.28894591331482 SecondsTest 2 took 0.17102980613708 SecondsTest 3 took 0.37661099433899 Seconds
Output for 7.1.29
Test 1 took 0.22339296340942 SecondsTest 2 took 0.16299796104431 SecondsTest 3 took 0.36872696876526 Seconds
Output for 7.1.28
Test 1 took 0.3075008392334 SecondsTest 2 took 0.18349480628967 SecondsTest 3 took 0.37861514091492 Seconds
Output for 7.1.27
Test 1 took 0.22934412956238 SecondsTest 2 took 0.15517497062683 SecondsTest 3 took 0.36897802352905 Seconds
Output for 7.1.26
Test 1 took 0.21638202667236 SecondsTest 2 took 0.14696311950684 SecondsTest 3 took 0.375981092453 Seconds
Output for 7.1.25
Test 1 took 0.29329204559326 SecondsTest 2 took 0.14931702613831 SecondsTest 3 took 0.36940717697144 Seconds
Output for 7.1.24
Test 1 took 0.28267908096313 SecondsTest 2 took 0.15073704719543 SecondsTest 3 took 0.48899507522583 Seconds
Output for 7.1.23
Test 1 took 0.29473090171814 SecondsTest 2 took 0.18110704421997 SecondsTest 3 took 0.46491098403931 Seconds
Output for 7.1.22
Test 1 took 0.23370099067688 SecondsTest 2 took 0.16523003578186 SecondsTest 3 took 0.37013983726501 Seconds
Output for 7.1.21
Test 1 took 0.28162407875061 SecondsTest 2 took 0.16025185585022 SecondsTest 3 took 0.37161087989807 Seconds
Output for 7.1.20
Test 1 took 0.25654602050781 SecondsTest 2 took 0.18297815322876 SecondsTest 3 took 0.41009116172791 Seconds
Output for 7.1.19
Test 1 took 0.28387808799744 SecondsTest 2 took 0.16396999359131 SecondsTest 3 took 0.36179113388062 Seconds
Output for 7.1.18
Test 1 took 0.25572800636292 SecondsTest 2 took 0.18693804740906 SecondsTest 3 took 0.4933009147644 Seconds
Output for 7.1.17
Test 1 took 0.26220083236694 SecondsTest 2 took 0.15822315216064 SecondsTest 3 took 0.36948084831238 Seconds
Output for 7.1.16
Test 1 took 0.23347115516663 SecondsTest 2 took 0.15297293663025 SecondsTest 3 took 0.36242294311523 Seconds
Output for 7.1.15
Test 1 took 0.23993110656738 SecondsTest 2 took 0.1542501449585 SecondsTest 3 took 0.38474297523499 Seconds
Output for 7.1.14
Test 1 took 0.22888708114624 SecondsTest 2 took 0.14770007133484 SecondsTest 3 took 0.34287405014038 Seconds
Output for 7.1.13
Test 1 took 0.24496579170227 SecondsTest 2 took 0.15637707710266 SecondsTest 3 took 0.37201404571533 Seconds
Output for 7.1.12
Test 1 took 0.22925901412964 SecondsTest 2 took 0.15474081039429 SecondsTest 3 took 0.36877202987671 Seconds
Output for 7.1.11
Test 1 took 0.26264500617981 SecondsTest 2 took 0.15723395347595 SecondsTest 3 took 0.37802505493164 Seconds
Output for 7.1.10
Test 1 took 0.2946629524231 SecondsTest 2 took 0.1820969581604 SecondsTest 3 took 0.42003917694092 Seconds
Output for 7.1.9
Test 1 took 0.30135917663574 SecondsTest 2 took 0.18446207046509 SecondsTest 3 took 0.45751214027405 Seconds
Output for 7.1.8
Test 1 took 0.2892918586731 SecondsTest 2 took 0.18379521369934 SecondsTest 3 took 0.49622297286987 Seconds
Output for 7.1.7
Test 1 took 0.23052787780762 SecondsTest 2 took 0.18601512908936 SecondsTest 3 took 0.44931101799011 Seconds
Output for 7.1.6
Test 1 took 0.21651387214661 SecondsTest 2 took 0.15334010124207 SecondsTest 3 took 0.36228799819946 Seconds
Output for 7.1.5
Test 1 took 0.28553414344788 SecondsTest 2 took 0.16576886177063 SecondsTest 3 took 0.49097108840942 Seconds
Output for 7.1.4
Test 1 took 0.28985786437988 SecondsTest 2 took 0.18050503730774 SecondsTest 3 took 0.49166107177734 Seconds
Output for 7.1.3
Test 1 took 0.29009222984314 SecondsTest 2 took 0.18571805953979 SecondsTest 3 took 0.45656490325928 Seconds
Output for 7.1.2
Test 1 took 0.24333381652832 SecondsTest 2 took 0.18727707862854 SecondsTest 3 took 0.49411702156067 Seconds
Output for 7.1.1
Test 1 took 0.29797601699829 SecondsTest 2 took 0.16696810722351 SecondsTest 3 took 0.37556481361389 Seconds
Output for 7.1.0
Test 1 took 0.22550296783447 SecondsTest 2 took 0.15861916542053 SecondsTest 3 took 0.36880016326904 Seconds
Output for 7.0.33
Test 1 took 0.29721403121948 SecondsTest 2 took 0.18393802642822 SecondsTest 3 took 0.44190287590027 Seconds
Output for 7.0.32
Test 1 took 0.30092000961304 SecondsTest 2 took 0.18969297409058 SecondsTest 3 took 0.46135210990906 Seconds
Output for 7.0.31
Test 1 took 0.29610800743103 SecondsTest 2 took 0.19113993644714 SecondsTest 3 took 0.49769997596741 Seconds
Output for 7.0.30
Test 1 took 0.24156785011292 SecondsTest 2 took 0.14920282363892 SecondsTest 3 took 0.34345197677612 Seconds
Output for 7.0.29
Test 1 took 0.28109097480774 SecondsTest 2 took 0.18554902076721 SecondsTest 3 took 0.37338089942932 Seconds
Output for 7.0.28
Test 1 took 0.2912769317627 SecondsTest 2 took 0.1821551322937 SecondsTest 3 took 0.41804194450378 Seconds
Output for 7.0.27
Test 1 took 0.28448390960693 SecondsTest 2 took 0.18136692047119 SecondsTest 3 took 0.49410796165466 Seconds
Output for 7.0.26
Test 1 took 0.29378008842468 SecondsTest 2 took 0.18476700782776 SecondsTest 3 took 0.42683506011963 Seconds
Output for 7.0.25
Test 1 took 0.22882199287415 SecondsTest 2 took 0.18680095672607 SecondsTest 3 took 0.4983081817627 Seconds
Output for 7.0.24
Test 1 took 0.29100608825684 SecondsTest 2 took 0.18575096130371 SecondsTest 3 took 0.50106596946716 Seconds
Output for 7.0.23
Test 1 took 0.2471649646759 SecondsTest 2 took 0.16157007217407 SecondsTest 3 took 0.39696407318115 Seconds
Output for 7.0.22
Test 1 took 0.30545902252197 SecondsTest 2 took 0.19168210029602 SecondsTest 3 took 0.46461296081543 Seconds
Output for 7.0.21
Test 1 took 0.2312068939209 SecondsTest 2 took 0.14778208732605 SecondsTest 3 took 0.47260999679565 Seconds
Output for 7.0.20
Test 1 took 0.24100708961487 SecondsTest 2 took 0.16382193565369 SecondsTest 3 took 0.37359285354614 Seconds
Output for 7.0.19
Test 1 took 0.24259305000305 SecondsTest 2 took 0.15909481048584 SecondsTest 3 took 0.3546998500824 Seconds
Output for 7.0.18
Test 1 took 0.27368402481079 SecondsTest 2 took 0.19156908988953 SecondsTest 3 took 0.37571501731873 Seconds
Output for 7.0.17
Test 1 took 0.30058193206787 SecondsTest 2 took 0.16962814331055 SecondsTest 3 took 0.45591711997986 Seconds
Output for 7.0.16
Test 1 took 0.28997397422791 SecondsTest 2 took 0.18432593345642 SecondsTest 3 took 0.36491107940674 Seconds
Output for 7.0.15
Test 1 took 0.26058411598206 SecondsTest 2 took 0.18768787384033 SecondsTest 3 took 0.504399061203 Seconds
Output for 7.0.14
Test 1 took 0.29788899421692 SecondsTest 2 took 0.18191695213318 SecondsTest 3 took 0.45385003089905 Seconds
Output for 7.0.13
Test 1 took 0.22730612754822 SecondsTest 2 took 0.18715786933899 SecondsTest 3 took 0.50290012359619 Seconds
Output for 7.0.12
Test 1 took 0.29317712783813 SecondsTest 2 took 0.18577408790588 SecondsTest 3 took 0.43443012237549 Seconds
Output for 7.0.11
Test 1 took 0.29065489768982 SecondsTest 2 took 0.1812961101532 SecondsTest 3 took 0.49304223060608 Seconds
Output for 7.0.10
Test 1 took 0.28056907653809 SecondsTest 2 took 0.1810359954834 SecondsTest 3 took 0.47502589225769 Seconds
Output for 7.0.9
Test 1 took 0.30008506774902 SecondsTest 2 took 0.18142008781433 SecondsTest 3 took 0.49215483665466 Seconds
Output for 7.0.8
Test 1 took 0.28549408912659 SecondsTest 2 took 0.17509198188782 SecondsTest 3 took 0.42198300361633 Seconds
Output for 7.0.7
Test 1 took 0.29325413703918 SecondsTest 2 took 0.16607785224915 SecondsTest 3 took 0.34595012664795 Seconds
Output for 7.0.6
Test 1 took 0.30033183097839 SecondsTest 2 took 0.18464803695679 SecondsTest 3 took 0.51094794273376 Seconds
Output for 7.0.5
Test 1 took 0.22590589523315 SecondsTest 2 took 0.14613103866577 SecondsTest 3 took 0.37554001808167 Seconds
Output for 7.0.4
Test 1 took 0.24819493293762 SecondsTest 2 took 0.18389797210693 SecondsTest 3 took 0.49183177947998 Seconds
Output for 7.0.3
Test 1 took 0.26639199256897 SecondsTest 2 took 0.1919949054718 SecondsTest 3 took 0.49606204032898 Seconds
Output for 7.0.2
Test 1 took 0.27449703216553 SecondsTest 2 took 0.18468499183655 SecondsTest 3 took 0.49727892875671 Seconds
Output for 7.0.1
Test 1 took 0.28292894363403 SecondsTest 2 took 0.16651701927185 SecondsTest 3 took 0.50517201423645 Seconds
Output for 7.0.0
Test 1 took 0.29204607009888 SecondsTest 2 took 0.181401014328 SecondsTest 3 took 0.47939300537109 Seconds
Output for 5.6.40
Test 1 took 0.31849408149719 SecondsTest 2 took 0.30365705490112 SecondsTest 3 took 0.74879693984985 Seconds
Output for 5.6.39
Test 1 took 0.30015110969543 SecondsTest 2 took 0.29143381118774 SecondsTest 3 took 0.90368103981018 Seconds
Output for 5.6.38
Test 1 took 0.32131791114807 SecondsTest 2 took 0.29407095909119 SecondsTest 3 took 0.69135093688965 Seconds
Output for 5.6.37
Test 1 took 0.38172507286072 SecondsTest 2 took 0.37758183479309 SecondsTest 3 took 0.93678903579712 Seconds
Output for 5.6.36
Test 1 took 0.31883001327515 SecondsTest 2 took 0.38265800476074 SecondsTest 3 took 0.94960904121399 Seconds
Output for 5.6.35
Test 1 took 0.31220316886902 SecondsTest 2 took 0.32409906387329 SecondsTest 3 took 0.97482204437256 Seconds
Output for 5.6.34
Test 1 took 0.3770170211792 SecondsTest 2 took 0.37183690071106 SecondsTest 3 took 0.70943403244019 Seconds
Output for 5.6.33
Test 1 took 0.39107394218445 SecondsTest 2 took 0.37693214416504 SecondsTest 3 took 0.7475790977478 Seconds
Output for 5.6.32
Test 1 took 0.31189393997192 SecondsTest 2 took 0.31754279136658 SecondsTest 3 took 0.73534798622131 Seconds
Output for 5.6.31
Test 1 took 0.37411212921143 SecondsTest 2 took 0.38452196121216 SecondsTest 3 took 0.95547485351562 Seconds
Output for 5.6.30
Test 1 took 0.33896613121033 SecondsTest 2 took 0.38851094245911 SecondsTest 3 took 0.89162492752075 Seconds
Output for 5.6.29
Test 1 took 0.3705461025238 SecondsTest 2 took 0.37727403640747 SecondsTest 3 took 0.81429290771484 Seconds
Output for 5.6.28
Test 1 took 0.375972032547 SecondsTest 2 took 0.37709498405457 SecondsTest 3 took 0.96842193603516 Seconds
Output for 5.6.27
Test 1 took 0.33298182487488 SecondsTest 2 took 0.38803100585938 SecondsTest 3 took 0.96573996543884 Seconds
Output for 5.6.26
Test 1 took 0.35342597961426 SecondsTest 2 took 0.30626893043518 SecondsTest 3 took 0.73407006263733 Seconds
Output for 5.6.25
Test 1 took 0.34058809280396 SecondsTest 2 took 0.37561392784119 SecondsTest 3 took 0.9338219165802 Seconds
Output for 5.6.24
Test 1 took 0.32511210441589 SecondsTest 2 took 0.33431005477905 SecondsTest 3 took 0.72310495376587 Seconds
Output for 5.6.23
Test 1 took 0.34004402160645 SecondsTest 2 took 0.28777599334717 SecondsTest 3 took 0.82243919372559 Seconds
Output for 5.6.22
Test 1 took 0.33814096450806 SecondsTest 2 took 0.35291314125061 SecondsTest 3 took 0.94942092895508 Seconds
Output for 5.6.21
Test 1 took 0.37980508804321 SecondsTest 2 took 0.32834315299988 SecondsTest 3 took 0.75652384757996 Seconds
Output for 5.6.20
Test 1 took 0.39544820785522 SecondsTest 2 took 0.34016108512878 SecondsTest 3 took 0.68830609321594 Seconds
Output for 5.6.19
Test 1 took 0.30452990531921 SecondsTest 2 took 0.32201600074768 SecondsTest 3 took 0.86117601394653 Seconds
Output for 5.6.18
Test 1 took 0.38545823097229 SecondsTest 2 took 0.37288403511047 SecondsTest 3 took 0.95663595199585 Seconds
Output for 5.6.17
Test 1 took 0.299565076828 SecondsTest 2 took 0.30047917366028 SecondsTest 3 took 0.83520913124084 Seconds
Output for 5.6.16
Test 1 took 0.38054609298706 SecondsTest 2 took 0.3674259185791 SecondsTest 3 took 0.99033904075623 Seconds
Output for 5.6.15
Test 1 took 0.367103099823 SecondsTest 2 took 0.32469296455383 SecondsTest 3 took 0.72523188591003 Seconds
Output for 5.6.14
Test 1 took 0.40117287635803 SecondsTest 2 took 0.38234806060791 SecondsTest 3 took 1.0139439105988 Seconds
Output for 5.6.13
Test 1 took 0.35155487060547 SecondsTest 2 took 0.38066506385803 SecondsTest 3 took 1.0030970573425 Seconds
Output for 5.6.12
Test 1 took 0.37902593612671 SecondsTest 2 took 0.39159989356995 SecondsTest 3 took 0.95877885818481 Seconds
Output for 5.6.11
Test 1 took 0.38023900985718 SecondsTest 2 took 0.39417481422424 SecondsTest 3 took 0.90076684951782 Seconds
Output for 5.6.10
Test 1 took 0.37247490882874 SecondsTest 2 took 0.38610601425171 SecondsTest 3 took 0.96900200843811 Seconds
Output for 5.6.9
Test 1 took 0.35638499259949 SecondsTest 2 took 0.31474995613098 SecondsTest 3 took 0.72705483436584 Seconds
Output for 5.6.8
Test 1 took 0.35698413848877 SecondsTest 2 took 0.32446193695068 SecondsTest 3 took 0.99146795272827 Seconds
Output for 5.6.7
Test 1 took 0.37065005302429 SecondsTest 2 took 0.37962007522583 SecondsTest 3 took 0.95449900627136 Seconds
Output for 5.6.6
Test 1 took 0.3789758682251 SecondsTest 2 took 0.39549684524536 SecondsTest 3 took 0.76423001289368 Seconds
Output for 5.6.5
Test 1 took 0.37572813034058 SecondsTest 2 took 0.3646240234375 SecondsTest 3 took 0.9869430065155 Seconds
Output for 5.6.4
Test 1 took 0.31215882301331 SecondsTest 2 took 0.30187702178955 SecondsTest 3 took 0.82327580451965 Seconds
Output for 5.6.3
Test 1 took 0.35872101783752 SecondsTest 2 took 0.36620092391968 SecondsTest 3 took 0.96738409996033 Seconds
Output for 5.6.2
Test 1 took 0.3683021068573 SecondsTest 2 took 0.31757712364197 SecondsTest 3 took 0.67315196990967 Seconds
Output for 5.6.1
Test 1 took 0.30715489387512 SecondsTest 2 took 0.31077289581299 SecondsTest 3 took 0.72727513313293 Seconds
Output for 5.6.0
Test 1 took 0.35733890533447 SecondsTest 2 took 0.34738802909851 SecondsTest 3 took 0.69324994087219 Seconds
Output for 5.5.38
Test 1 took 0.29926705360413 SecondsTest 2 took 0.31872320175171 SecondsTest 3 took 0.89961099624634 Seconds
Output for 5.5.37
Test 1 took 0.35291981697083 SecondsTest 2 took 0.32760787010193 SecondsTest 3 took 0.78530216217041 Seconds
Output for 5.5.36
Test 1 took 0.31451201438904 SecondsTest 2 took 0.30968403816223 SecondsTest 3 took 0.73155617713928 Seconds
Output for 5.5.35
Test 1 took 0.36817002296448 SecondsTest 2 took 0.36783218383789 SecondsTest 3 took 0.73012804985046 Seconds
Output for 5.5.34
Test 1 took 0.36401295661926 SecondsTest 2 took 0.3650279045105 SecondsTest 3 took 1.0187420845032 Seconds
Output for 5.5.33
Test 1 took 0.36399412155151 SecondsTest 2 took 0.3818941116333 SecondsTest 3 took 0.75225400924683 Seconds
Output for 5.5.32
Test 1 took 0.36658906936646 SecondsTest 2 took 0.38586592674255 SecondsTest 3 took 0.98246002197266 Seconds
Output for 5.5.31
Test 1 took 0.3177809715271 SecondsTest 2 took 0.31887912750244 SecondsTest 3 took 0.73562002182007 Seconds
Output for 5.5.30
Test 1 took 0.36147308349609 SecondsTest 2 took 0.39861392974854 SecondsTest 3 took 0.85937404632568 Seconds
Output for 5.5.29
Test 1 took 0.32338500022888 SecondsTest 2 took 0.29248285293579 SecondsTest 3 took 0.69496917724609 Seconds
Output for 5.5.28
Test 1 took 0.3301830291748 SecondsTest 2 took 0.3257040977478 SecondsTest 3 took 0.9700620174408 Seconds
Output for 5.5.27
Test 1 took 0.3640079498291 SecondsTest 2 took 0.35234189033508 SecondsTest 3 took 1.0090260505676 Seconds
Output for 5.5.26
Test 1 took 0.32870888710022 SecondsTest 2 took 0.37976002693176 SecondsTest 3 took 1.017678976059 Seconds
Output for 5.5.25
Test 1 took 0.37086486816406 SecondsTest 2 took 0.3601930141449 SecondsTest 3 took 0.78086400032043 Seconds
Output for 5.5.24
Test 1 took 0.35000681877136 SecondsTest 2 took 0.35305595397949 SecondsTest 3 took 0.71341896057129 Seconds
Output for 5.5.23
Test 1 took 0.31168794631958 SecondsTest 2 took 0.31609416007996 SecondsTest 3 took 0.87481808662415 Seconds
Output for 5.5.22
Test 1 took 0.34535789489746 SecondsTest 2 took 0.39650106430054 SecondsTest 3 took 0.86778807640076 Seconds
Output for 5.5.21
Test 1 took 0.35100483894348 SecondsTest 2 took 0.34885311126709 SecondsTest 3 took 0.75381803512573 Seconds
Output for 5.5.20
Test 1 took 0.351891040802 SecondsTest 2 took 0.327064037323 SecondsTest 3 took 0.74058699607849 Seconds
Output for 5.5.19
Test 1 took 0.37130308151245 SecondsTest 2 took 0.40196704864502 SecondsTest 3 took 0.95579409599304 Seconds
Output for 5.5.18
Test 1 took 0.35624504089355 SecondsTest 2 took 0.38927698135376 SecondsTest 3 took 0.93204116821289 Seconds
Output for 5.5.17
Test 1 took 0.35457801818848 SecondsTest 2 took 0.38649201393127 SecondsTest 3 took 0.73827695846558 Seconds
Output for 5.5.16
Test 1 took 0.36141705513 SecondsTest 2 took 0.37340998649597 SecondsTest 3 took 0.8529269695282 Seconds
Output for 5.5.15
Test 1 took 0.35538792610168 SecondsTest 2 took 0.39063501358032 SecondsTest 3 took 0.92690300941467 Seconds
Output for 5.5.14
Test 1 took 0.36202597618103 SecondsTest 2 took 0.38301396369934 SecondsTest 3 took 0.85885214805603 Seconds
Output for 5.5.13
Test 1 took 0.38801884651184 SecondsTest 2 took 0.35612297058105 SecondsTest 3 took 0.90161418914795 Seconds
Output for 5.5.12
Test 1 took 0.33002495765686 SecondsTest 2 took 0.36624193191528 SecondsTest 3 took 1.0198380947113 Seconds
Output for 5.5.11
Test 1 took 0.36375594139099 SecondsTest 2 took 0.32267904281616 SecondsTest 3 took 0.81104898452759 Seconds
Output for 5.5.10
Test 1 took 0.36367583274841 SecondsTest 2 took 0.34943699836731 SecondsTest 3 took 0.71703910827637 Seconds
Output for 5.5.9
Test 1 took 0.32293891906738 SecondsTest 2 took 0.32323408126831 SecondsTest 3 took 1.0223360061646 Seconds
Output for 5.5.8
Test 1 took 0.3465850353241 SecondsTest 2 took 0.33033084869385 SecondsTest 3 took 1.0169529914856 Seconds
Output for 5.5.7
Test 1 took 0.30601716041565 SecondsTest 2 took 0.31260895729065 SecondsTest 3 took 0.74719095230103 Seconds
Output for 5.5.6
Test 1 took 0.36698722839355 SecondsTest 2 took 0.36063885688782 SecondsTest 3 took 0.94516205787659 Seconds
Output for 5.5.5
Test 1 took 0.37057399749756 SecondsTest 2 took 0.38119602203369 SecondsTest 3 took 0.79515814781189 Seconds
Output for 5.5.4
Test 1 took 0.35258388519287 SecondsTest 2 took 0.39518189430237 SecondsTest 3 took 1.0241549015045 Seconds
Output for 5.5.3
Test 1 took 0.36651206016541 SecondsTest 2 took 0.32617521286011 SecondsTest 3 took 0.9506778717041 Seconds
Output for 5.5.2
Test 1 took 0.32099509239197 SecondsTest 2 took 0.39719009399414 SecondsTest 3 took 0.71747803688049 Seconds
Output for 5.5.1
Test 1 took 0.37104296684265 SecondsTest 2 took 0.34008693695068 SecondsTest 3 took 0.7352831363678 Seconds
Output for 5.5.0
Test 1 took 0.35910296440125 SecondsTest 2 took 0.32959198951721 SecondsTest 3 took 0.69790410995483 Seconds
Output for 5.4.45
Test 1 took 0.38228511810303 SecondsTest 2 took 0.386883020401 SecondsTest 3 took 0.98496389389038 Seconds
Output for 5.4.44
Test 1 took 0.31406712532043 SecondsTest 2 took 0.31668400764465 SecondsTest 3 took 0.72702217102051 Seconds
Output for 5.4.43
Test 1 took 0.37883496284485 SecondsTest 2 took 0.37139201164246 SecondsTest 3 took 1.025454044342 Seconds
Output for 5.4.42
Test 1 took 0.37424802780151 SecondsTest 2 took 0.36818599700928 SecondsTest 3 took 0.98648691177368 Seconds
Output for 5.4.41
Test 1 took 0.38794779777527 SecondsTest 2 took 0.367192029953 SecondsTest 3 took 1.0301988124847 Seconds
Output for 5.4.40
Test 1 took 0.31589889526367 SecondsTest 2 took 0.31913185119629 SecondsTest 3 took 0.7423460483551 Seconds
Output for 5.4.39
Test 1 took 0.37392592430115 SecondsTest 2 took 0.36987090110779 SecondsTest 3 took 1.0152249336243 Seconds
Output for 5.4.38
Test 1 took 0.36353588104248 SecondsTest 2 took 0.38139605522156 SecondsTest 3 took 0.87865400314331 Seconds
Output for 5.4.37
Test 1 took 0.33235096931458 SecondsTest 2 took 0.30235409736633 SecondsTest 3 took 0.90932297706604 Seconds
Output for 5.4.36
Test 1 took 0.35229182243347 SecondsTest 2 took 0.36643385887146 SecondsTest 3 took 1.0276470184326 Seconds
Output for 5.4.35
Test 1 took 0.32528305053711 SecondsTest 2 took 0.31771898269653 SecondsTest 3 took 0.79784607887268 Seconds
Output for 5.4.34
Test 1 took 0.31036114692688 SecondsTest 2 took 0.33186101913452 SecondsTest 3 took 0.98032999038696 Seconds
Output for 5.4.33
Test 1 took 0.33523797988892 SecondsTest 2 took 0.38988184928894 SecondsTest 3 took 0.98024296760559 Seconds
Output for 5.4.32
Test 1 took 0.36875987052917 SecondsTest 2 took 0.31206583976746 SecondsTest 3 took 1.0198650360107 Seconds
Output for 5.4.31
Test 1 took 0.31642985343933 SecondsTest 2 took 0.32325005531311 SecondsTest 3 took 0.74523711204529 Seconds
Output for 5.4.30
Test 1 took 0.36181402206421 SecondsTest 2 took 0.35435795783997 SecondsTest 3 took 0.79816007614136 Seconds
Output for 5.4.29
Test 1 took 0.34150505065918 SecondsTest 2 took 0.38002777099609 SecondsTest 3 took 1.0259649753571 Seconds
Output for 5.4.28
Test 1 took 0.38083815574646 SecondsTest 2 took 0.38733983039856 SecondsTest 3 took 0.96241688728333 Seconds
Output for 5.4.27
Test 1 took 0.35342907905579 SecondsTest 2 took 0.39238905906677 SecondsTest 3 took 0.76489305496216 Seconds
Output for 5.4.26
Test 1 took 0.37051200866699 SecondsTest 2 took 0.39183497428894 SecondsTest 3 took 0.87396001815796 Seconds
Output for 5.4.25
Test 1 took 0.35394906997681 SecondsTest 2 took 0.37688684463501 SecondsTest 3 took 0.86084294319153 Seconds
Output for 5.4.24
Test 1 took 0.36205887794495 SecondsTest 2 took 0.35412001609802 SecondsTest 3 took 1.0173370838165 Seconds
Output for 5.4.23
Test 1 took 0.32939791679382 SecondsTest 2 took 0.35346698760986 SecondsTest 3 took 0.98714685440063 Seconds
Output for 5.4.22
Test 1 took 0.37367701530457 SecondsTest 2 took 0.38487505912781 SecondsTest 3 took 0.98251414299011 Seconds
Output for 5.4.21
Test 1 took 0.36372303962708 SecondsTest 2 took 0.35856080055237 SecondsTest 3 took 0.68905401229858 Seconds
Output for 5.4.20
Test 1 took 0.3586049079895 SecondsTest 2 took 0.35773015022278 SecondsTest 3 took 1.0060639381409 Seconds
Output for 5.4.19
Test 1 took 0.36104106903076 SecondsTest 2 took 0.38701295852661 SecondsTest 3 took 0.95494985580444 Seconds
Output for 5.4.18
Test 1 took 0.36723494529724 SecondsTest 2 took 0.38835000991821 SecondsTest 3 took 0.85745406150818 Seconds
Output for 5.4.17
Test 1 took 0.36447811126709 SecondsTest 2 took 0.36537098884583 SecondsTest 3 took 0.96283888816833 Seconds
Output for 5.4.16
Test 1 took 0.35343408584595 SecondsTest 2 took 0.39167594909668 SecondsTest 3 took 1.0435721874237 Seconds
Output for 5.4.15
Test 1 took 0.3593168258667 SecondsTest 2 took 0.38929510116577 SecondsTest 3 took 1.0003960132599 Seconds
Output for 5.4.14
Test 1 took 0.35984301567078 SecondsTest 2 took 0.32867193222046 SecondsTest 3 took 0.75088810920715 Seconds
Output for 5.4.13
Test 1 took 0.38009190559387 SecondsTest 2 took 0.39124584197998 SecondsTest 3 took 0.91443681716919 Seconds
Output for 5.4.12
Test 1 took 0.38965010643005 SecondsTest 2 took 0.34351420402527 SecondsTest 3 took 1.0126378536224 Seconds
Output for 5.4.11
Test 1 took 0.30972814559937 SecondsTest 2 took 0.30084800720215 SecondsTest 3 took 0.73773503303528 Seconds
Output for 5.4.10
Test 1 took 0.37756609916687 SecondsTest 2 took 0.39388704299927 SecondsTest 3 took 0.99562287330627 Seconds
Output for 5.4.9
Test 1 took 0.37212991714478 SecondsTest 2 took 0.32301998138428 SecondsTest 3 took 0.71239113807678 Seconds
Output for 5.4.8
Test 1 took 0.30615782737732 SecondsTest 2 took 0.30768394470215 SecondsTest 3 took 0.98736810684204 Seconds
Output for 5.4.7
Test 1 took 0.3839008808136 SecondsTest 2 took 0.32472801208496 SecondsTest 3 took 0.91528987884521 Seconds
Output for 5.4.6
Test 1 took 0.31467795372009 SecondsTest 2 took 0.38728594779968 SecondsTest 3 took 0.88814401626587 Seconds
Output for 5.4.5
Test 1 took 0.29940605163574 SecondsTest 2 took 0.29421305656433 SecondsTest 3 took 0.94521617889404 Seconds
Output for 5.4.4
Test 1 took 0.36763000488281 SecondsTest 2 took 0.37966299057007 SecondsTest 3 took 0.9425048828125 Seconds
Output for 5.4.3
Test 1 took 0.29454302787781 SecondsTest 2 took 0.32100701332092 SecondsTest 3 took 1.0136549472809 Seconds
Output for 5.4.2
Test 1 took 0.35635113716125 SecondsTest 2 took 0.36626791954041 SecondsTest 3 took 0.7679660320282 Seconds
Output for 5.4.1
Test 1 took 0.36301302909851 SecondsTest 2 took 0.3329770565033 SecondsTest 3 took 0.72571802139282 Seconds
Output for 5.4.0
Test 1 took 0.37127494812012 SecondsTest 2 took 0.39349699020386 SecondsTest 3 took 0.80571889877319 Seconds
Output for 5.3.29
Test 1 took 0.31176018714905 SecondsTest 2 took 0.38864922523499 SecondsTest 3 took 1.0869808197021 Seconds
Output for 5.3.28
Test 1 took 0.30662703514099 SecondsTest 2 took 0.31765580177307 SecondsTest 3 took 0.9518461227417 Seconds
Output for 5.3.27
Test 1 took 0.33352899551392 SecondsTest 2 took 0.33816909790039 SecondsTest 3 took 0.84032893180847 Seconds
Output for 5.3.26
Test 1 took 0.32499599456787 SecondsTest 2 took 0.36763095855713 SecondsTest 3 took 1.0726120471954 Seconds
Output for 5.3.25
Test 1 took 0.31789898872375 SecondsTest 2 took 0.33813405036926 SecondsTest 3 took 1.0639519691467 Seconds
Output for 5.3.24
Test 1 took 0.34193921089172 SecondsTest 2 took 0.34067797660828 SecondsTest 3 took 0.82143688201904 Seconds
Output for 5.3.23
Test 1 took 0.3793671131134 SecondsTest 2 took 0.3515841960907 SecondsTest 3 took 0.90882897377014 Seconds
Output for 5.3.22
Test 1 took 0.33976817131042 SecondsTest 2 took 0.39651799201965 SecondsTest 3 took 1.1042530536652 Seconds
Output for 5.3.21
Test 1 took 0.35464119911194 SecondsTest 2 took 0.39808797836304 SecondsTest 3 took 0.94855189323425 Seconds
Output for 5.3.20
Test 1 took 0.37982201576233 SecondsTest 2 took 0.39452815055847 SecondsTest 3 took 0.98184585571289 Seconds
Output for 5.3.19
Test 1 took 0.38304305076599 SecondsTest 2 took 0.40039896965027 SecondsTest 3 took 0.89088606834412 Seconds
Output for 5.3.18
Test 1 took 0.38191819190979 SecondsTest 2 took 0.3883228302002 SecondsTest 3 took 1.0388660430908 Seconds
Output for 5.3.17
Test 1 took 0.29212403297424 SecondsTest 2 took 0.31631898880005 SecondsTest 3 took 0.85605192184448 Seconds
Output for 5.3.16
Test 1 took 0.31671118736267 SecondsTest 2 took 0.32134413719177 SecondsTest 3 took 0.80223298072815 Seconds
Output for 5.3.15
Test 1 took 0.37981009483337 SecondsTest 2 took 0.40638494491577 SecondsTest 3 took 1.0219910144806 Seconds
Output for 5.3.14
Test 1 took 0.38100719451904 SecondsTest 2 took 0.39795088768005 SecondsTest 3 took 1.0228781700134 Seconds
Output for 5.3.13
Test 1 took 0.36912608146667 SecondsTest 2 took 0.38755106925964 SecondsTest 3 took 1.092050075531 Seconds
Output for 5.3.12
Test 1 took 0.31065511703491 SecondsTest 2 took 0.32691287994385 SecondsTest 3 took 0.80369186401367 Seconds
Output for 5.3.11
Test 1 took 0.30848503112793 SecondsTest 2 took 0.37420296669006 SecondsTest 3 took 1.0519878864288 Seconds
Output for 5.3.10
Test 1 took 0.39189910888672 SecondsTest 2 took 0.40157604217529 SecondsTest 3 took 0.92551684379578 Seconds
Output for 5.3.9
Test 1 took 0.37982606887817 SecondsTest 2 took 0.36063599586487 SecondsTest 3 took 0.9517560005188 Seconds
Output for 5.3.8
Test 1 took 0.33486413955688 SecondsTest 2 took 0.38651990890503 SecondsTest 3 took 1.0818150043488 Seconds
Output for 5.3.7
Test 1 took 0.31962704658508 SecondsTest 2 took 0.32411885261536 SecondsTest 3 took 0.77100086212158 Seconds
Output for 5.3.6
Test 1 took 0.38524317741394 SecondsTest 2 took 0.37882089614868 SecondsTest 3 took 0.7927770614624 Seconds
Output for 5.3.5
Test 1 took 0.38961219787598 SecondsTest 2 took 0.39784407615662 SecondsTest 3 took 1.0089769363403 Seconds
Output for 5.3.4
Test 1 took 0.37530517578125 SecondsTest 2 took 0.39595103263855 SecondsTest 3 took 0.91174411773682 Seconds
Output for 5.3.3
Test 1 took 0.37147116661072 SecondsTest 2 took 0.38295984268188 SecondsTest 3 took 0.84455800056458 Seconds
Output for 5.3.2
Test 1 took 0.33812808990479 SecondsTest 2 took 0.41090893745422 SecondsTest 3 took 0.92293000221252 Seconds
Output for 5.3.1
Test 1 took 0.31861305236816 SecondsTest 2 took 0.32507586479187 SecondsTest 3 took 0.81205415725708 Seconds
Output for 5.3.0
Test 1 took 0.37710213661194 SecondsTest 2 took 0.39535689353943 SecondsTest 3 took 0.77614212036133 Seconds

preferences:
232.39 ms | 401 KiB | 272 Q