3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { public function bar() { return ""; } } $ts = microtime(true); for ($i=1; $i<=10000; $i++) { $c = new Foo(); echo $c->bar(); unset ($c); } $tt = microtime(true); $t1 = $tt-$ts; unset($ts, $tt); echo "Variable Instantiation takes {$t1} seconds\n"; $ts = microtime(true); for ($i=1; $i<=10000; $i++) { echo (new Foo())->bar(); } $tt = microtime(true); $t2 = $tt-$ts; unset($ts, $tt); echo "Magic Instantiation takes {$t2} seconds\n"; echo "\n"; if ($t1 < $t2) { echo "Variable Instantion is faster by a factor of ".(($t2*100)/$t1)."\n"; } else { echo "Magic Instantion is faster by a factor of ".(($t1*100)/$t2)."\n"; }
Output for 7.2.12
Variable Instantiation takes 0.0010030269622803 seconds Magic Instantiation takes 0.00080108642578125 seconds Magic Instantion is faster by a factor of 125.20833333333
Output for 7.2.11
Variable Instantiation takes 0.0016210079193115 seconds Magic Instantiation takes 0.0017209053039551 seconds Variable Instantion is faster by a factor of 106.16267098103
Output for 7.2.10
Variable Instantiation takes 0.00098609924316406 seconds Magic Instantiation takes 0.00078988075256348 seconds Magic Instantion is faster by a factor of 124.84153335346
Output for 7.2.9
Variable Instantiation takes 0.0010509490966797 seconds Magic Instantiation takes 0.00083494186401367 seconds Magic Instantion is faster by a factor of 125.87093089663
Output for 7.2.8
Variable Instantiation takes 0.00098800659179688 seconds Magic Instantiation takes 0.00080108642578125 seconds Magic Instantion is faster by a factor of 123.33333333333
Output for 7.2.7
Variable Instantiation takes 0.00098109245300293 seconds Magic Instantiation takes 0.00080394744873047 seconds Magic Instantion is faster by a factor of 122.03440094899
Output for 7.2.6
Variable Instantiation takes 0.0009920597076416 seconds Magic Instantiation takes 0.00079083442687988 seconds Magic Instantion is faster by a factor of 125.44467892674
Output for 7.2.5
Variable Instantiation takes 0.0010871887207031 seconds Magic Instantiation takes 0.00087690353393555 seconds Magic Instantion is faster by a factor of 123.98042414356
Output for 7.2.4
Variable Instantiation takes 0.001129150390625 seconds Magic Instantiation takes 0.00089502334594727 seconds Magic Instantion is faster by a factor of 126.15876398508
Output for 7.2.3
Variable Instantiation takes 0.0023059844970703 seconds Magic Instantiation takes 0.00080609321594238 seconds Magic Instantion is faster by a factor of 286.06921029281
Output for 7.2.2
Variable Instantiation takes 0.0009911060333252 seconds Magic Instantiation takes 0.00078701972961426 seconds Magic Instantion is faster by a factor of 125.93153589821
Output for 7.2.1
Variable Instantiation takes 0.0010950565338135 seconds Magic Instantiation takes 0.00091195106506348 seconds Magic Instantion is faster by a factor of 120.07843137255
Output for 7.2.0
Variable Instantiation takes 0.0014441013336182 seconds Magic Instantiation takes 0.00088191032409668 seconds Magic Instantion is faster by a factor of 163.74695863747
Output for 7.1.24
Variable Instantiation takes 0.001305103302002 seconds Magic Instantiation takes 0.0011210441589355 seconds Magic Instantion is faster by a factor of 116.41854529987
Output for 7.1.23
Variable Instantiation takes 0.0015959739685059 seconds Magic Instantiation takes 0.0013329982757568 seconds Magic Instantion is faster by a factor of 119.72813450188
Output for 7.1.22
Variable Instantiation takes 0.0011489391326904 seconds Magic Instantiation takes 0.00093603134155273 seconds Magic Instantion is faster by a factor of 122.74579724911
Output for 7.1.21
Variable Instantiation takes 0.0011091232299805 seconds Magic Instantiation takes 0.00092601776123047 seconds Magic Instantion is faster by a factor of 119.77342945417
Output for 7.1.20
Variable Instantiation takes 0.0012469291687012 seconds Magic Instantiation takes 0.0010139942169189 seconds Magic Instantion is faster by a factor of 122.97201975076
Output for 7.1.19
Variable Instantiation takes 0.0013039112091064 seconds Magic Instantiation takes 0.00092577934265137 seconds Magic Instantion is faster by a factor of 140.84470770023
Output for 7.1.18
Variable Instantiation takes 0.0011930465698242 seconds Magic Instantiation takes 0.00094795227050781 seconds Magic Instantion is faster by a factor of 125.85513078471
Output for 7.1.17
Variable Instantiation takes 0.0011570453643799 seconds Magic Instantiation takes 0.00092482566833496 seconds Magic Instantion is faster by a factor of 125.1095643207
Output for 7.1.16
Variable Instantiation takes 0.0025169849395752 seconds Magic Instantiation takes 0.00092291831970215 seconds Magic Instantion is faster by a factor of 272.72022733144
Output for 7.1.15
Variable Instantiation takes 0.0011098384857178 seconds Magic Instantiation takes 0.00092005729675293 seconds Magic Instantion is faster by a factor of 120.62710546774
Output for 7.1.14
Variable Instantiation takes 0.0016040802001953 seconds Magic Instantiation takes 0.0013110637664795 seconds Magic Instantion is faster by a factor of 122.3495180942
Output for 7.1.13
Variable Instantiation takes 0.0011050701141357 seconds Magic Instantiation takes 0.00092506408691406 seconds Magic Instantion is faster by a factor of 119.4587628866
Output for 7.1.12
Variable Instantiation takes 0.0022709369659424 seconds Magic Instantiation takes 0.00092887878417969 seconds Magic Instantion is faster by a factor of 244.48151950719
Output for 7.1.11
Variable Instantiation takes 0.0015668869018555 seconds Magic Instantiation takes 0.0012698173522949 seconds Magic Instantion is faster by a factor of 123.39466766804
Output for 7.1.10
Variable Instantiation takes 0.0011060237884521 seconds Magic Instantiation takes 0.00095009803771973 seconds Magic Instantion is faster by a factor of 116.41154328733
Output for 7.1.9
Variable Instantiation takes 0.0022768974304199 seconds Magic Instantiation takes 0.0012049674987793 seconds Magic Instantion is faster by a factor of 188.95924020578
Output for 7.1.8
Variable Instantiation takes 0.0024678707122803 seconds Magic Instantiation takes 0.00091910362243652 seconds Magic Instantion is faster by a factor of 268.5084306096
Output for 7.1.7
Variable Instantiation takes 0.0012030601501465 seconds Magic Instantiation takes 0.0010581016540527 seconds Magic Instantion is faster by a factor of 113.69986480397
Output for 7.1.6
Variable Instantiation takes 0.0014181137084961 seconds Magic Instantiation takes 0.00092482566833496 seconds Magic Instantion is faster by a factor of 153.33848930137
Output for 7.1.5
Variable Instantiation takes 0.0020880699157715 seconds Magic Instantiation takes 0.00096988677978516 seconds Magic Instantion is faster by a factor of 215.29006882989
Output for 7.1.4
Variable Instantiation takes 0.0015370845794678 seconds Magic Instantiation takes 0.0009310245513916 seconds Magic Instantion is faster by a factor of 165.09603072983
Output for 7.1.3
Variable Instantiation takes 0.0023958683013916 seconds Magic Instantiation takes 0.0019140243530273 seconds Magic Instantion is faster by a factor of 125.17438963627
Output for 7.1.2
Variable Instantiation takes 0.0010950565338135 seconds Magic Instantiation takes 0.00092005729675293 seconds Magic Instantion is faster by a factor of 119.02047162477
Output for 7.1.1
Variable Instantiation takes 0.0015418529510498 seconds Magic Instantiation takes 0.001378059387207 seconds Magic Instantion is faster by a factor of 111.88581314879
Output for 7.1.0
Variable Instantiation takes 0.002065896987915 seconds Magic Instantiation takes 0.0019080638885498 seconds Magic Instantion is faster by a factor of 108.27189803824
Output for 7.0.32
Variable Instantiation takes 0.0020208358764648 seconds Magic Instantiation takes 0.0016438961029053 seconds Magic Instantion is faster by a factor of 122.92965917331
Output for 7.0.31
Variable Instantiation takes 0.0023369789123535 seconds Magic Instantiation takes 0.0019710063934326 seconds Magic Instantion is faster by a factor of 118.5677996855
Output for 7.0.30
Variable Instantiation takes 0.0027689933776855 seconds Magic Instantiation takes 0.00099492073059082 seconds Magic Instantion is faster by a factor of 278.31296429427
Output for 7.0.29
Variable Instantiation takes 0.0012328624725342 seconds Magic Instantiation takes 0.0013301372528076 seconds Variable Instantion is faster by a factor of 107.89015664282
Output for 7.0.28
Variable Instantiation takes 0.0014781951904297 seconds Magic Instantiation takes 0.00096392631530762 seconds Magic Instantion is faster by a factor of 153.35147167945
Output for 7.0.27
Variable Instantiation takes 0.0016419887542725 seconds Magic Instantiation takes 0.0013618469238281 seconds Magic Instantion is faster by a factor of 120.57072829132
Output for 7.0.26
Variable Instantiation takes 0.0011429786682129 seconds Magic Instantiation takes 0.00094795227050781 seconds Magic Instantion is faster by a factor of 120.57344064386
Output for 7.0.25
Variable Instantiation takes 0.002277135848999 seconds Magic Instantiation takes 0.00097084045410156 seconds Magic Instantion is faster by a factor of 234.55304518664
Output for 7.0.24
Variable Instantiation takes 0.0011389255523682 seconds Magic Instantiation takes 0.00099492073059082 seconds Magic Instantion is faster by a factor of 114.47399952073
Output for 7.0.23
Variable Instantiation takes 0.0027029514312744 seconds Magic Instantiation takes 0.002223014831543 seconds Magic Instantion is faster by a factor of 121.58944658945
Output for 7.0.22
Variable Instantiation takes 0.0018417835235596 seconds Magic Instantiation takes 0.0017790794372559 seconds Magic Instantion is faster by a factor of 103.52452425623
Output for 7.0.21
Variable Instantiation takes 0.0028140544891357 seconds Magic Instantiation takes 0.00095701217651367 seconds Magic Instantion is faster by a factor of 294.04583956153
Output for 7.0.20
Variable Instantiation takes 0.0019171237945557 seconds Magic Instantiation takes 0.0018198490142822 seconds Magic Instantion is faster by a factor of 105.34521158129
Output for 7.0.19
Variable Instantiation takes 0.0021131038665771 seconds Magic Instantiation takes 0.0012140274047852 seconds Magic Instantion is faster by a factor of 174.05734485467
Output for 7.0.18
Variable Instantiation takes 0.0011439323425293 seconds Magic Instantiation takes 0.00094389915466309 seconds Magic Instantion is faster by a factor of 121.19222025764
Output for 7.0.17
Variable Instantiation takes 0.0026049613952637 seconds Magic Instantiation takes 0.0020890235900879 seconds Magic Instantion is faster by a factor of 124.69755763524
Output for 7.0.16
Variable Instantiation takes 0.0016579627990723 seconds Magic Instantiation takes 0.00096988677978516 seconds Magic Instantion is faster by a factor of 170.94395280236
Output for 7.0.15
Variable Instantiation takes 0.001223087310791 seconds Magic Instantiation takes 0.0010790824890137 seconds Magic Instantion is faster by a factor of 113.34511710119
Output for 7.0.14
Variable Instantiation takes 0.0015649795532227 seconds Magic Instantiation takes 0.0012989044189453 seconds Magic Instantion is faster by a factor of 120.4845814978
Output for 7.0.13
Variable Instantiation takes 0.0026519298553467 seconds Magic Instantiation takes 0.0015170574188232 seconds Magic Instantion is faster by a factor of 174.80748074807
Output for 7.0.12
Variable Instantiation takes 0.001788854598999 seconds Magic Instantiation takes 0.0015079975128174 seconds Magic Instantion is faster by a factor of 118.62450592885
Output for 7.0.11
Variable Instantiation takes 0.0020089149475098 seconds Magic Instantiation takes 0.0016720294952393 seconds Magic Instantion is faster by a factor of 120.14829602167
Output for 7.0.10
Variable Instantiation takes 0.0015380382537842 seconds Magic Instantiation takes 0.0013039112091064 seconds Magic Instantion is faster by a factor of 117.95575059426
Output for 7.0.9
Variable Instantiation takes 0.0013248920440674 seconds Magic Instantiation takes 0.0010621547698975 seconds Magic Instantion is faster by a factor of 124.73625140292
Output for 7.0.8
Variable Instantiation takes 0.0013430118560791 seconds Magic Instantiation takes 0.0009620189666748 seconds Magic Instantion is faster by a factor of 139.60346964064
Output for 7.0.7
Variable Instantiation takes 0.0012679100036621 seconds Magic Instantiation takes 0.0010538101196289 seconds Magic Instantion is faster by a factor of 120.31674208145
Output for 7.0.6
Variable Instantiation takes 0.0013010501861572 seconds Magic Instantiation takes 0.001121997833252 seconds Magic Instantion is faster by a factor of 115.95835104122
Output for 7.0.5
Variable Instantiation takes 0.001147985458374 seconds Magic Instantiation takes 0.00095295906066895 seconds Magic Instantion is faster by a factor of 120.46534901176
Output for 7.0.4
Variable Instantiation takes 0.0011940002441406 seconds Magic Instantiation takes 0.00098586082458496 seconds Magic Instantion is faster by a factor of 121.11245465538
Output for 7.0.3
Variable Instantiation takes 0.0016269683837891 seconds Magic Instantiation takes 0.00095891952514648 seconds Magic Instantion is faster by a factor of 169.66683242168
Output for 7.0.2
Variable Instantiation takes 0.0011420249938965 seconds Magic Instantiation takes 0.00095391273498535 seconds Magic Instantion is faster by a factor of 119.7200699825
Output for 7.0.1
Variable Instantiation takes 0.001349925994873 seconds Magic Instantiation takes 0.0011258125305176 seconds Magic Instantion is faster by a factor of 119.90681914443
Output for 7.0.0
Variable Instantiation takes 0.002899169921875 seconds Magic Instantiation takes 0.00095582008361816 seconds Magic Instantion is faster by a factor of 303.31753554502
Output for 5.6.38
Variable Instantiation takes 0.004694938659668 seconds Magic Instantiation takes 0.0017318725585938 seconds Magic Instantion is faster by a factor of 271.09030837004
Output for 5.6.37
Variable Instantiation takes 0.0035600662231445 seconds Magic Instantiation takes 0.0026111602783203 seconds Magic Instantion is faster by a factor of 136.3403944485
Output for 5.6.36
Variable Instantiation takes 0.0024929046630859 seconds Magic Instantiation takes 0.0017480850219727 seconds Magic Instantion is faster by a factor of 142.60774686307
Output for 5.6.35
Variable Instantiation takes 0.002471923828125 seconds Magic Instantiation takes 0.0018060207366943 seconds Magic Instantion is faster by a factor of 136.87128712871
Output for 5.6.34
Variable Instantiation takes 0.0030679702758789 seconds Magic Instantiation takes 0.0019478797912598 seconds Magic Instantion is faster by a factor of 157.50305997552
Output for 5.6.33
Variable Instantiation takes 0.0025079250335693 seconds Magic Instantiation takes 0.0017521381378174 seconds Magic Instantion is faster by a factor of 143.13512042455
Output for 5.6.32
Variable Instantiation takes 0.0028269290924072 seconds Magic Instantiation takes 0.001708984375 seconds Magic Instantion is faster by a factor of 165.41573660714
Output for 5.6.31
Variable Instantiation takes 0.0026640892028809 seconds Magic Instantiation takes 0.0017960071563721 seconds Magic Instantion is faster by a factor of 148.33399707952
Output for 5.6.30
Variable Instantiation takes 0.0024788379669189 seconds Magic Instantiation takes 0.0017058849334717 seconds Magic Instantion is faster by a factor of 145.31097134871
Output for 5.6.29
Variable Instantiation takes 0.0024969577789307 seconds Magic Instantiation takes 0.0018370151519775 seconds Magic Instantion is faster by a factor of 135.92472420506
Output for 5.6.28
Variable Instantiation takes 0.0036261081695557 seconds Magic Instantiation takes 0.001798152923584 seconds Magic Instantion is faster by a factor of 201.65738530894
Output for 5.6.27
Variable Instantiation takes 0.003262996673584 seconds Magic Instantiation takes 0.0023050308227539 seconds Magic Instantion is faster by a factor of 141.55978485726
Output for 5.6.26
Variable Instantiation takes 0.002687931060791 seconds Magic Instantiation takes 0.0018799304962158 seconds Magic Instantion is faster by a factor of 142.98034242232
Output for 5.6.25
Variable Instantiation takes 0.0025501251220703 seconds Magic Instantiation takes 0.0018339157104492 seconds Magic Instantion is faster by a factor of 139.05356214249
Output for 5.6.24
Variable Instantiation takes 0.0037140846252441 seconds Magic Instantiation takes 0.0025031566619873 seconds Magic Instantion is faster by a factor of 148.37603581293
Output for 5.6.23
Variable Instantiation takes 0.0025420188903809 seconds Magic Instantiation takes 0.0018329620361328 seconds Magic Instantion is faster by a factor of 138.6836628512
Output for 5.6.22
Variable Instantiation takes 0.0050609111785889 seconds Magic Instantiation takes 0.0033020973205566 seconds Magic Instantion is faster by a factor of 153.26353790614
Output for 5.6.21
Variable Instantiation takes 0.0033318996429443 seconds Magic Instantiation takes 0.0021920204162598 seconds Magic Instantion is faster by a factor of 152.00130519904
Output for 5.6.20
Variable Instantiation takes 0.0026059150695801 seconds Magic Instantiation takes 0.0020210742950439 seconds Magic Instantion is faster by a factor of 128.93712398254
Output for 5.6.19
Variable Instantiation takes 0.0029301643371582 seconds Magic Instantiation takes 0.002068042755127 seconds Magic Instantion is faster by a factor of 141.68780262855
Output for 5.6.18
Variable Instantiation takes 0.0033180713653564 seconds Magic Instantiation takes 0.0021779537200928 seconds Magic Instantion is faster by a factor of 152.34811165846
Output for 5.6.17
Variable Instantiation takes 0.002626895904541 seconds Magic Instantiation takes 0.0019731521606445 seconds Magic Instantion is faster by a factor of 133.13194780087
Output for 5.6.16
Variable Instantiation takes 0.0028500556945801 seconds Magic Instantiation takes 0.0020020008087158 seconds Magic Instantion is faster by a factor of 142.36036679767
Output for 5.6.15
Variable Instantiation takes 0.0025348663330078 seconds Magic Instantiation takes 0.0017399787902832 seconds Magic Instantion is faster by a factor of 145.68374897232
Output for 5.6.14
Variable Instantiation takes 0.0025620460510254 seconds Magic Instantiation takes 0.0019669532775879 seconds Magic Instantion is faster by a factor of 130.25454545455
Output for 5.6.13
Variable Instantiation takes 0.0025489330291748 seconds Magic Instantiation takes 0.0017449855804443 seconds Magic Instantion is faster by a factor of 146.07186774149
Output for 5.6.12
Variable Instantiation takes 0.0025849342346191 seconds Magic Instantiation takes 0.0017938613891602 seconds Magic Instantion is faster by a factor of 144.09888357257
Output for 5.6.11
Variable Instantiation takes 0.0027751922607422 seconds Magic Instantiation takes 0.0019831657409668 seconds Magic Instantion is faster by a factor of 139.93748497235
Output for 5.6.10
Variable Instantiation takes 0.002777099609375 seconds Magic Instantiation takes 0.0019130706787109 seconds Magic Instantion is faster by a factor of 145.16450648056
Output for 5.6.9
Variable Instantiation takes 0.0025069713592529 seconds Magic Instantiation takes 0.0017251968383789 seconds Magic Instantion is faster by a factor of 145.31509121061
Output for 5.6.8
Variable Instantiation takes 0.0025279521942139 seconds Magic Instantiation takes 0.0017659664154053 seconds Magic Instantion is faster by a factor of 143.14837316052
Output for 5.6.7
Variable Instantiation takes 0.0031929016113281 seconds Magic Instantiation takes 0.0020081996917725 seconds Magic Instantion is faster by a factor of 158.99323281491
Output for 5.6.6
Variable Instantiation takes 0.0026419162750244 seconds Magic Instantiation takes 0.0019659996032715 seconds Magic Instantion is faster by a factor of 134.38030560272
Output for 5.6.5
Variable Instantiation takes 0.0028960704803467 seconds Magic Instantiation takes 0.0018811225891113 seconds Magic Instantion is faster by a factor of 153.95437262357
Output for 5.6.4
Variable Instantiation takes 0.0024819374084473 seconds Magic Instantiation takes 0.001802921295166 seconds Magic Instantion is faster by a factor of 137.66199418143
Output for 5.6.3
Variable Instantiation takes 0.0024769306182861 seconds Magic Instantiation takes 0.0017459392547607 seconds Magic Instantion is faster by a factor of 141.86808684965
Output for 5.6.2
Variable Instantiation takes 0.0025088787078857 seconds Magic Instantiation takes 0.0019919872283936 seconds Magic Instantion is faster by a factor of 125.94853381209
Output for 5.6.1
Variable Instantiation takes 0.0028839111328125 seconds Magic Instantiation takes 0.0018811225891113 seconds Magic Instantion is faster by a factor of 153.30798479087
Output for 5.6.0
Variable Instantiation takes 0.0025081634521484 seconds Magic Instantiation takes 0.0017402172088623 seconds Magic Instantion is faster by a factor of 144.12933278531
Output for 5.5.38
Variable Instantiation takes 0.002763032913208 seconds Magic Instantiation takes 0.001953125 seconds Magic Instantion is faster by a factor of 141.46728515625
Output for 5.5.37
Variable Instantiation takes 0.0046539306640625 seconds Magic Instantiation takes 0.0028460025787354 seconds Magic Instantion is faster by a factor of 163.52517382927
Output for 5.5.36
Variable Instantiation takes 0.0029029846191406 seconds Magic Instantiation takes 0.0020859241485596 seconds Magic Instantion is faster by a factor of 139.17019087896
Output for 5.5.35
Variable Instantiation takes 0.0029928684234619 seconds Magic Instantiation takes 0.0021991729736328 seconds Magic Instantion is faster by a factor of 136.09063313096
Output for 5.5.34
Variable Instantiation takes 0.0034029483795166 seconds Magic Instantiation takes 0.0019137859344482 seconds Magic Instantion is faster by a factor of 177.81238320668
Output for 5.5.33
Variable Instantiation takes 0.0030100345611572 seconds Magic Instantiation takes 0.0019240379333496 seconds Magic Instantion is faster by a factor of 156.44361833953
Output for 5.5.32
Variable Instantiation takes 0.002910852432251 seconds Magic Instantiation takes 0.0021629333496094 seconds Magic Instantion is faster by a factor of 134.57892416226
Output for 5.5.31
Variable Instantiation takes 0.0026280879974365 seconds Magic Instantiation takes 0.0019080638885498 seconds Magic Instantion is faster by a factor of 137.7358490566
Output for 5.5.30
Variable Instantiation takes 0.0038158893585205 seconds Magic Instantiation takes 0.0026860237121582 seconds Magic Instantion is faster by a factor of 142.06461920824
Output for 5.5.29
Variable Instantiation takes 0.0026428699493408 seconds Magic Instantiation takes 0.0018839836120605 seconds Magic Instantion is faster by a factor of 140.28094153379
Output for 5.5.28
Variable Instantiation takes 0.0031790733337402 seconds Magic Instantiation takes 0.0019989013671875 seconds Magic Instantion is faster by a factor of 159.04103053435
Output for 5.5.27
Variable Instantiation takes 0.0039620399475098 seconds Magic Instantiation takes 0.0018801689147949 seconds Magic Instantion is faster by a factor of 210.72787217854
Output for 5.5.26
Variable Instantiation takes 0.0032010078430176 seconds Magic Instantiation takes 0.0023159980773926 seconds Magic Instantion is faster by a factor of 138.21288861437
Output for 5.5.25
Variable Instantiation takes 0.0028820037841797 seconds Magic Instantiation takes 0.0021090507507324 seconds Magic Instantion is faster by a factor of 136.64933303188
Output for 5.5.24
Variable Instantiation takes 0.002885103225708 seconds Magic Instantiation takes 0.0020649433135986 seconds Magic Instantion is faster by a factor of 139.71827733518
Output for 5.5.23
Variable Instantiation takes 0.0030369758605957 seconds Magic Instantiation takes 0.002173900604248 seconds Magic Instantion is faster by a factor of 139.70168896688
Output for 5.5.22
Variable Instantiation takes 0.0031900405883789 seconds Magic Instantiation takes 0.0019149780273438 seconds Magic Instantion is faster by a factor of 166.58366533865
Output for 5.5.21
Variable Instantiation takes 0.0028159618377686 seconds Magic Instantiation takes 0.0019040107727051 seconds Magic Instantion is faster by a factor of 147.89631855748
Output for 5.5.20
Variable Instantiation takes 0.002810001373291 seconds Magic Instantiation takes 0.0021369457244873 seconds Magic Instantion is faster by a factor of 131.49615084235
Output for 5.5.19
Variable Instantiation takes 0.0035519599914551 seconds Magic Instantiation takes 0.001910924911499 seconds Magic Instantion is faster by a factor of 185.87648159701
Output for 5.5.18
Variable Instantiation takes 0.0026440620422363 seconds Magic Instantiation takes 0.001920223236084 seconds Magic Instantion is faster by a factor of 137.69555500372
Output for 5.5.17
Variable Instantiation takes 0.0026140213012695 seconds Magic Instantiation takes 0.0019321441650391 seconds Magic Instantion is faster by a factor of 135.2912142152
Output for 5.5.16
Variable Instantiation takes 0.0038399696350098 seconds Magic Instantiation takes 0.0024440288543701 seconds Magic Instantion is faster by a factor of 157.11637888986
Output for 5.5.15
Variable Instantiation takes 0.0050508975982666 seconds Magic Instantiation takes 0.001924991607666 seconds Magic Instantion is faster by a factor of 262.38543472876
Output for 5.5.14
Variable Instantiation takes 0.0045289993286133 seconds Magic Instantiation takes 0.0028069019317627 seconds Magic Instantion is faster by a factor of 161.3522466661
Output for 5.5.13
Variable Instantiation takes 0.0026400089263916 seconds Magic Instantiation takes 0.0019738674163818 seconds Magic Instantion is faster by a factor of 133.74803720256
Output for 5.5.12
Variable Instantiation takes 0.0040650367736816 seconds Magic Instantiation takes 0.0029850006103516 seconds Magic Instantion is faster by a factor of 136.1821086262
Output for 5.5.11
Variable Instantiation takes 0.005558967590332 seconds Magic Instantiation takes 0.0033068656921387 seconds Magic Instantion is faster by a factor of 168.10382119683
Output for 5.5.10
Variable Instantiation takes 0.003605842590332 seconds Magic Instantiation takes 0.0026180744171143 seconds Magic Instantion is faster by a factor of 137.72880429833
Output for 5.5.9
Variable Instantiation takes 0.0049009323120117 seconds Magic Instantiation takes 0.0026369094848633 seconds Magic Instantion is faster by a factor of 185.85895117541
Output for 5.5.8
Variable Instantiation takes 0.0026659965515137 seconds Magic Instantiation takes 0.0020060539245605 seconds Magic Instantion is faster by a factor of 132.89755169955
Output for 5.5.7
Variable Instantiation takes 0.0027599334716797 seconds Magic Instantiation takes 0.0019891262054443 seconds Magic Instantion is faster by a factor of 138.75104878341
Output for 5.5.6
Variable Instantiation takes 0.0026998519897461 seconds Magic Instantiation takes 0.0019679069519043 seconds Magic Instantion is faster by a factor of 137.19408771505
Output for 5.5.5
Variable Instantiation takes 0.0027389526367188 seconds Magic Instantiation takes 0.0019679069519043 seconds Magic Instantion is faster by a factor of 139.18100314999
Output for 5.5.4
Variable Instantiation takes 0.0037200450897217 seconds Magic Instantiation takes 0.0027229785919189 seconds Magic Instantion is faster by a factor of 136.61675860257
Output for 5.5.3
Variable Instantiation takes 0.0030529499053955 seconds Magic Instantiation takes 0.0022041797637939 seconds Magic Instantion is faster by a factor of 138.50730124392
Output for 5.5.2
Variable Instantiation takes 0.0035059452056885 seconds Magic Instantiation takes 0.0025222301483154 seconds Magic Instantion is faster by a factor of 139.00179601097
Output for 5.5.1
Variable Instantiation takes 0.002791166305542 seconds Magic Instantiation takes 0.0019450187683105 seconds Magic Instantion is faster by a factor of 143.50330963471
Output for 5.5.0
Variable Instantiation takes 0.0052690505981445 seconds Magic Instantiation takes 0.003183126449585 seconds Magic Instantion is faster by a factor of 165.53067185979
Output for 5.4.45
Variable Instantiation takes 0.0028669834136963 seconds Magic Instantiation takes 0.0019619464874268 seconds Magic Instantion is faster by a factor of 146.12954186414
Output for 5.4.44
Variable Instantiation takes 0.0034351348876953 seconds Magic Instantiation takes 0.0024290084838867 seconds Magic Instantion is faster by a factor of 141.42127993718
Output for 5.4.43
Variable Instantiation takes 0.0036380290985107 seconds Magic Instantiation takes 0.00199294090271 seconds Magic Instantion is faster by a factor of 182.54575906209
Output for 5.4.42
Variable Instantiation takes 0.002701997756958 seconds Magic Instantiation takes 0.0020551681518555 seconds Magic Instantion is faster by a factor of 131.47331786543
Output for 5.4.41
Variable Instantiation takes 0.0031521320343018 seconds Magic Instantiation takes 0.00211501121521 seconds Magic Instantion is faster by a factor of 149.03618532296
Output for 5.4.40
Variable Instantiation takes 0.002938985824585 seconds Magic Instantiation takes 0.0021450519561768 seconds Magic Instantion is faster by a factor of 137.01233744582
Output for 5.4.39
Variable Instantiation takes 0.0027649402618408 seconds Magic Instantiation takes 0.0020351409912109 seconds Magic Instantion is faster by a factor of 135.85988753515
Output for 5.4.38
Variable Instantiation takes 0.0030598640441895 seconds Magic Instantiation takes 0.0021710395812988 seconds Magic Instantion is faster by a factor of 140.94003953437
Output for 5.4.37
Variable Instantiation takes 0.0027229785919189 seconds Magic Instantiation takes 0.0019729137420654 seconds Magic Instantion is faster by a factor of 138.01812688822
Output for 5.4.36
Variable Instantiation takes 0.0049760341644287 seconds Magic Instantiation takes 0.0032849311828613 seconds Magic Instantion is faster by a factor of 151.4806212803
Output for 5.4.35
Variable Instantiation takes 0.0029048919677734 seconds Magic Instantiation takes 0.0021061897277832 seconds Magic Instantion is faster by a factor of 137.92166628934
Output for 5.4.34
Variable Instantiation takes 0.0029587745666504 seconds Magic Instantiation takes 0.0019969940185547 seconds Magic Instantion is faster by a factor of 148.16141356256
Output for 5.4.33
Variable Instantiation takes 0.0032920837402344 seconds Magic Instantiation takes 0.0020279884338379 seconds Magic Instantion is faster by a factor of 162.3324711968
Output for 5.4.32
Variable Instantiation takes 0.0029599666595459 seconds Magic Instantiation takes 0.0021059513092041 seconds Magic Instantion is faster by a factor of 140.55247367825
Output for 5.4.31
Variable Instantiation takes 0.0034630298614502 seconds Magic Instantiation takes 0.0021247863769531 seconds Magic Instantion is faster by a factor of 162.98249551167
Output for 5.4.30
Variable Instantiation takes 0.0027711391448975 seconds Magic Instantiation takes 0.0019690990447998 seconds Magic Instantion is faster by a factor of 140.73132340477
Output for 5.4.29
Variable Instantiation takes 0.0040390491485596 seconds Magic Instantiation takes 0.0028970241546631 seconds Magic Instantion is faster by a factor of 139.42062381697
Output for 5.4.28
Variable Instantiation takes 0.0030109882354736 seconds Magic Instantiation takes 0.0021049976348877 seconds Magic Instantion is faster by a factor of 143.0399818779
Output for 5.4.27
Variable Instantiation takes 0.0027420520782471 seconds Magic Instantiation takes 0.0019540786743164 seconds Magic Instantion is faster by a factor of 140.32454856027
Output for 5.4.26
Variable Instantiation takes 0.0032758712768555 seconds Magic Instantiation takes 0.0020549297332764 seconds Magic Instantion is faster by a factor of 159.4152453881
Output for 5.4.25
Variable Instantiation takes 0.0044159889221191 seconds Magic Instantiation takes 0.0038738250732422 seconds Magic Instantion is faster by a factor of 113.99556868538
Output for 5.4.24
Variable Instantiation takes 0.0027649402618408 seconds Magic Instantiation takes 0.0019841194152832 seconds Magic Instantion is faster by a factor of 139.35352078827
Output for 5.4.23
Variable Instantiation takes 0.0027451515197754 seconds Magic Instantiation takes 0.0020430088043213 seconds Magic Instantion is faster by a factor of 134.36807095344
Output for 5.4.22
Variable Instantiation takes 0.003309965133667 seconds Magic Instantiation takes 0.0025050640106201 seconds Magic Instantion is faster by a factor of 132.13096031217
Output for 5.4.21
Variable Instantiation takes 0.0027179718017578 seconds Magic Instantiation takes 0.0020830631256104 seconds Magic Instantion is faster by a factor of 130.47956964633
Output for 5.4.20
Variable Instantiation takes 0.0032780170440674 seconds Magic Instantiation takes 0.0020589828491211 seconds Magic Instantion is faster by a factor of 159.20565076424
Output for 5.4.19
Variable Instantiation takes 0.0028600692749023 seconds Magic Instantiation takes 0.0021190643310547 seconds Magic Instantion is faster by a factor of 134.96849684968
Output for 5.4.18
Variable Instantiation takes 0.0046350955963135 seconds Magic Instantiation takes 0.0020310878753662 seconds Magic Instantion is faster by a factor of 228.20753609579
Output for 5.4.17
Variable Instantiation takes 0.0049300193786621 seconds Magic Instantiation takes 0.003838062286377 seconds Magic Instantion is faster by a factor of 128.45073922226
Output for 5.4.16
Variable Instantiation takes 0.0035040378570557 seconds Magic Instantiation takes 0.0020718574523926 seconds Magic Instantion is faster by a factor of 169.12543153049
Output for 5.4.15
Variable Instantiation takes 0.0045731067657471 seconds Magic Instantiation takes 0.0020291805267334 seconds Magic Instantion is faster by a factor of 225.36717189519
Output for 5.4.14
Variable Instantiation takes 0.0028111934661865 seconds Magic Instantiation takes 0.0021121501922607 seconds Magic Instantion is faster by a factor of 133.09628626256
Output for 5.4.13
Variable Instantiation takes 0.0027270317077637 seconds Magic Instantiation takes 0.001978874206543 seconds Magic Instantion is faster by a factor of 137.80722891566
Output for 5.4.12
Variable Instantiation takes 0.0033860206604004 seconds Magic Instantiation takes 0.0020020008087158 seconds Magic Instantion is faster by a factor of 169.13183279743
Output for 5.4.11
Variable Instantiation takes 0.002701997756958 seconds Magic Instantiation takes 0.0019378662109375 seconds Magic Instantion is faster by a factor of 139.43159448819
Output for 5.4.10
Variable Instantiation takes 0.0040431022644043 seconds Magic Instantiation takes 0.0030109882354736 seconds Magic Instantion is faster by a factor of 134.27824847573
Output for 5.4.9
Variable Instantiation takes 0.0027360916137695 seconds Magic Instantiation takes 0.0019369125366211 seconds Magic Instantion is faster by a factor of 141.26046282619
Output for 5.4.8
Variable Instantiation takes 0.0027101039886475 seconds Magic Instantiation takes 0.001939058303833 seconds Magic Instantion is faster by a factor of 139.76392475101
Output for 5.4.7
Variable Instantiation takes 0.0038559436798096 seconds Magic Instantiation takes 0.0028300285339355 seconds Magic Instantion is faster by a factor of 136.25105307498
Output for 5.4.6
Variable Instantiation takes 0.0045051574707031 seconds Magic Instantiation takes 0.00193190574646 seconds Magic Instantion is faster by a factor of 233.19758114279
Output for 5.4.5
Variable Instantiation takes 0.0032038688659668 seconds Magic Instantiation takes 0.0022850036621094 seconds Magic Instantion is faster by a factor of 140.21285475793
Output for 5.4.4
Variable Instantiation takes 0.0034501552581787 seconds Magic Instantiation takes 0.0019698143005371 seconds Magic Instantion is faster by a factor of 175.15129508594
Output for 5.4.3
Variable Instantiation takes 0.0033738613128662 seconds Magic Instantiation takes 0.0019960403442383 seconds Magic Instantion is faster by a factor of 169.02771141902
Output for 5.4.2
Variable Instantiation takes 0.0043809413909912 seconds Magic Instantiation takes 0.0030961036682129 seconds Magic Instantion is faster by a factor of 141.49853688588
Output for 5.4.1
Variable Instantiation takes 0.0028901100158691 seconds Magic Instantiation takes 0.0021579265594482 seconds Magic Instantion is faster by a factor of 133.92995249144
Output for 5.4.0
Variable Instantiation takes 0.0029690265655518 seconds Magic Instantiation takes 0.002126932144165 seconds Magic Instantion is faster by a factor of 139.59197399395
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29
Parse error: syntax error, unexpected T_OBJECT_OPERATOR, expecting ',' or ';' in /in/sa2QT on line 22
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_OBJECT_OPERATOR, expecting ',' or ';' in /in/sa2QT on line 22
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/sa2QT on line 3
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/sa2QT on line 3
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/sa2QT on line 3
Process exited with code 255.

preferences:
187.32 ms | 401 KiB | 283 Q