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";
Output for 7.4.1
Variable Instantiation takes 0.001305103302002 seconds Magic Instantiation takes 0.0011429786682129 seconds
Output for 7.4.0
Variable Instantiation takes 0.0014300346374512 seconds Magic Instantiation takes 0.0010380744934082 seconds
Output for 7.3.13
Variable Instantiation takes 0.0014770030975342 seconds Magic Instantiation takes 0.0013308525085449 seconds
Output for 7.3.12
Variable Instantiation takes 0.001784086227417 seconds Magic Instantiation takes 0.0011470317840576 seconds
Output for 7.3.11
Variable Instantiation takes 0.0014739036560059 seconds Magic Instantiation takes 0.0012991428375244 seconds
Output for 7.3.10
Variable Instantiation takes 0.0014660358428955 seconds Magic Instantiation takes 0.0012118816375732 seconds
Output for 7.3.9
Variable Instantiation takes 0.0014848709106445 seconds Magic Instantiation takes 0.001284122467041 seconds
Output for 7.3.8
Variable Instantiation takes 0.00085616111755371 seconds Magic Instantiation takes 0.00075197219848633 seconds
Output for 7.3.7
Variable Instantiation takes 0.0015878677368164 seconds Magic Instantiation takes 0.0011858940124512 seconds
Output for 7.3.6
Variable Instantiation takes 0.00096988677978516 seconds Magic Instantiation takes 0.00084114074707031 seconds
Output for 7.3.5
Variable Instantiation takes 0.0011200904846191 seconds Magic Instantiation takes 0.00095510482788086 seconds
Output for 7.3.4
Variable Instantiation takes 0.0008690357208252 seconds Magic Instantiation takes 0.00072312355041504 seconds
Output for 7.3.3
Variable Instantiation takes 0.0011839866638184 seconds Magic Instantiation takes 0.0010159015655518 seconds
Output for 7.3.2
Variable Instantiation takes 0.0010979175567627 seconds Magic Instantiation takes 0.0010230541229248 seconds
Output for 7.3.1
Variable Instantiation takes 0.00087308883666992 seconds Magic Instantiation takes 0.00073099136352539 seconds
Output for 7.3.0
Variable Instantiation takes 0.0012049674987793 seconds Magic Instantiation takes 0.0010380744934082 seconds
Output for 7.2.26
Variable Instantiation takes 0.0011870861053467 seconds Magic Instantiation takes 0.0010621547698975 seconds
Output for 7.2.25
Variable Instantiation takes 0.0016398429870605 seconds Magic Instantiation takes 0.0012819766998291 seconds
Output for 7.2.24
Variable Instantiation takes 0.0010340213775635 seconds Magic Instantiation takes 0.00081300735473633 seconds
Output for 7.2.23
Variable Instantiation takes 0.0013070106506348 seconds Magic Instantiation takes 0.00098395347595215 seconds
Output for 7.2.22
Variable Instantiation takes 0.0015840530395508 seconds Magic Instantiation takes 0.0012850761413574 seconds
Output for 7.2.21
Variable Instantiation takes 0.0010490417480469 seconds Magic Instantiation takes 0.00082707405090332 seconds
Output for 7.2.20
Variable Instantiation takes 0.0010309219360352 seconds Magic Instantiation takes 0.00078487396240234 seconds
Output for 7.2.19
Variable Instantiation takes 0.0014998912811279 seconds Magic Instantiation takes 0.0012118816375732 seconds
Output for 7.2.18
Variable Instantiation takes 0.00160813331604 seconds Magic Instantiation takes 0.001284122467041 seconds
Output for 7.2.17
Variable Instantiation takes 0.0010421276092529 seconds Magic Instantiation takes 0.00082492828369141 seconds
Output for 7.2.16
Variable Instantiation takes 0.0012569427490234 seconds Magic Instantiation takes 0.00097799301147461 seconds
Output for 7.2.15
Variable Instantiation takes 0.0019690990447998 seconds Magic Instantiation takes 0.00097799301147461 seconds
Output for 7.2.14
Variable Instantiation takes 0.0014841556549072 seconds Magic Instantiation takes 0.00079703330993652 seconds
Output for 7.2.13
Variable Instantiation takes 0.0011141300201416 seconds Magic Instantiation takes 0.00090980529785156 seconds
Output for 7.2.12
Variable Instantiation takes 0.0018899440765381 seconds Magic Instantiation takes 0.00078797340393066 seconds
Output for 7.2.11
Variable Instantiation takes 0.0012309551239014 seconds Magic Instantiation takes 0.00098705291748047 seconds
Output for 7.2.10
Variable Instantiation takes 0.0016109943389893 seconds Magic Instantiation takes 0.00080585479736328 seconds
Output for 7.2.9
Variable Instantiation takes 0.001209020614624 seconds Magic Instantiation takes 0.00088119506835938 seconds
Output for 7.2.8
Variable Instantiation takes 0.0010089874267578 seconds Magic Instantiation takes 0.00080609321594238 seconds
Output for 7.2.7
Variable Instantiation takes 0.0016679763793945 seconds Magic Instantiation takes 0.0013020038604736 seconds
Output for 7.2.6
Variable Instantiation takes 0.0010068416595459 seconds Magic Instantiation takes 0.00083303451538086 seconds
Output for 7.2.5
Variable Instantiation takes 0.0012280941009521 seconds Magic Instantiation takes 0.00096702575683594 seconds
Output for 7.2.4
Variable Instantiation takes 0.0012359619140625 seconds Magic Instantiation takes 0.00078678131103516 seconds
Output for 7.2.3
Variable Instantiation takes 0.0010268688201904 seconds Magic Instantiation takes 0.0007929801940918 seconds
Output for 7.2.2
Variable Instantiation takes 0.0012729167938232 seconds Magic Instantiation takes 0.0012321472167969 seconds
Output for 7.2.1
Variable Instantiation takes 0.0010550022125244 seconds Magic Instantiation takes 0.00081300735473633 seconds
Output for 7.2.0
Variable Instantiation takes 0.0010409355163574 seconds Magic Instantiation takes 0.0008242130279541 seconds
Output for 7.1.33
Variable Instantiation takes 0.0034971237182617 seconds Magic Instantiation takes 0.0018248558044434 seconds
Output for 7.1.32
Variable Instantiation takes 0.0044560432434082 seconds Magic Instantiation takes 0.0018420219421387 seconds
Output for 7.1.31
Variable Instantiation takes 0.0024950504302979 seconds Magic Instantiation takes 0.0018060207366943 seconds
Output for 7.1.30
Variable Instantiation takes 0.0045390129089355 seconds Magic Instantiation takes 0.0024700164794922 seconds
Output for 7.1.29
Variable Instantiation takes 0.0022690296173096 seconds Magic Instantiation takes 0.0018479824066162 seconds
Output for 7.1.28
Variable Instantiation takes 0.0044469833374023 seconds Magic Instantiation takes 0.0021491050720215 seconds
Output for 7.1.27
Variable Instantiation takes 0.002302885055542 seconds Magic Instantiation takes 0.0018320083618164 seconds
Output for 7.1.26
Variable Instantiation takes 0.0030710697174072 seconds Magic Instantiation takes 0.0020148754119873 seconds
Output for 7.1.25
Variable Instantiation takes 0.0027339458465576 seconds Magic Instantiation takes 0.0018301010131836 seconds
Output for 7.1.24
Variable Instantiation takes 0.0024111270904541 seconds Magic Instantiation takes 0.0020349025726318 seconds
Output for 7.1.23
Variable Instantiation takes 0.0027840137481689 seconds Magic Instantiation takes 0.0020160675048828 seconds
Output for 7.1.22
Variable Instantiation takes 0.0028338432312012 seconds Magic Instantiation takes 0.0024709701538086 seconds
Output for 7.1.21
Variable Instantiation takes 0.0035037994384766 seconds Magic Instantiation takes 0.0017910003662109 seconds
Output for 7.1.20
Variable Instantiation takes 0.0021700859069824 seconds Magic Instantiation takes 0.0017750263214111 seconds
Output for 7.1.19
Variable Instantiation takes 0.0037930011749268 seconds Magic Instantiation takes 0.0032761096954346 seconds
Output for 7.1.18
Variable Instantiation takes 0.0032341480255127 seconds Magic Instantiation takes 0.0017518997192383 seconds
Output for 7.1.17
Variable Instantiation takes 0.0024969577789307 seconds Magic Instantiation takes 0.0018310546875 seconds
Output for 7.1.16
Variable Instantiation takes 0.0048069953918457 seconds Magic Instantiation takes 0.0020139217376709 seconds
Output for 7.1.15
Variable Instantiation takes 0.0023529529571533 seconds Magic Instantiation takes 0.002871036529541 seconds
Output for 7.1.14
Variable Instantiation takes 0.0028140544891357 seconds Magic Instantiation takes 0.0020358562469482 seconds
Output for 7.1.13
Variable Instantiation takes 0.0033078193664551 seconds Magic Instantiation takes 0.0027050971984863 seconds
Output for 7.1.12
Variable Instantiation takes 0.0021488666534424 seconds Magic Instantiation takes 0.0017919540405273 seconds
Output for 7.1.11
Variable Instantiation takes 0.0022499561309814 seconds Magic Instantiation takes 0.0017409324645996 seconds
Output for 7.1.10
Variable Instantiation takes 0.0022780895233154 seconds Magic Instantiation takes 0.0022978782653809 seconds
Output for 7.1.9
Variable Instantiation takes 0.0031471252441406 seconds Magic Instantiation takes 0.0018041133880615 seconds
Output for 7.1.8
Variable Instantiation takes 0.0021049976348877 seconds Magic Instantiation takes 0.0019509792327881 seconds
Output for 7.1.7
Variable Instantiation takes 0.0025498867034912 seconds Magic Instantiation takes 0.0021069049835205 seconds
Output for 7.1.6
Variable Instantiation takes 0.0026030540466309 seconds Magic Instantiation takes 0.0017631053924561 seconds
Output for 7.1.5
Variable Instantiation takes 0.002957820892334 seconds Magic Instantiation takes 0.0017900466918945 seconds
Output for 7.1.4
Variable Instantiation takes 0.002244234085083 seconds Magic Instantiation takes 0.0018119812011719 seconds
Output for 7.1.3
Variable Instantiation takes 0.0022971630096436 seconds Magic Instantiation takes 0.0019001960754395 seconds
Output for 7.1.2
Variable Instantiation takes 0.0022938251495361 seconds Magic Instantiation takes 0.0018310546875 seconds
Output for 7.1.1
Variable Instantiation takes 0.0021538734436035 seconds Magic Instantiation takes 0.0017859935760498 seconds
Output for 7.1.0
Variable Instantiation takes 0.00282883644104 seconds Magic Instantiation takes 0.0024080276489258 seconds
Output for 7.0.33
Variable Instantiation takes 0.0022010803222656 seconds Magic Instantiation takes 0.0018301010131836 seconds
Output for 7.0.32
Variable Instantiation takes 0.0026390552520752 seconds Magic Instantiation takes 0.0023479461669922 seconds
Output for 7.0.31
Variable Instantiation takes 0.0026659965515137 seconds Magic Instantiation takes 0.0020670890808105 seconds
Output for 7.0.30
Variable Instantiation takes 0.0028588771820068 seconds Magic Instantiation takes 0.0023758411407471 seconds
Output for 7.0.29
Variable Instantiation takes 0.0031960010528564 seconds Magic Instantiation takes 0.0028219223022461 seconds
Output for 7.0.28
Variable Instantiation takes 0.0023400783538818 seconds Magic Instantiation takes 0.0019299983978271 seconds
Output for 7.0.27
Variable Instantiation takes 0.0041730403900146 seconds Magic Instantiation takes 0.0028049945831299 seconds
Output for 7.0.26
Variable Instantiation takes 0.0022101402282715 seconds Magic Instantiation takes 0.0018079280853271 seconds
Output for 7.0.25
Variable Instantiation takes 0.0028131008148193 seconds Magic Instantiation takes 0.0019881725311279 seconds
Output for 7.0.24
Variable Instantiation takes 0.0040829181671143 seconds Magic Instantiation takes 0.0018370151519775 seconds
Output for 7.0.23
Variable Instantiation takes 0.0023939609527588 seconds Magic Instantiation takes 0.0019478797912598 seconds
Output for 7.0.22
Variable Instantiation takes 0.0033719539642334 seconds Magic Instantiation takes 0.0018000602722168 seconds
Output for 7.0.21
Variable Instantiation takes 0.0024170875549316 seconds Magic Instantiation takes 0.0019991397857666 seconds
Output for 7.0.20
Variable Instantiation takes 0.002439022064209 seconds Magic Instantiation takes 0.0017910003662109 seconds
Output for 7.0.19
Variable Instantiation takes 0.0029971599578857 seconds Magic Instantiation takes 0.0020210742950439 seconds
Output for 7.0.18
Variable Instantiation takes 0.003425121307373 seconds Magic Instantiation takes 0.0017621517181396 seconds
Output for 7.0.17
Variable Instantiation takes 0.0021469593048096 seconds Magic Instantiation takes 0.0017869472503662 seconds
Output for 7.0.16
Variable Instantiation takes 0.0021247863769531 seconds Magic Instantiation takes 0.0017540454864502 seconds
Output for 7.0.15
Variable Instantiation takes 0.0043950080871582 seconds Magic Instantiation takes 0.0018641948699951 seconds
Output for 7.0.14
Variable Instantiation takes 0.0021700859069824 seconds Magic Instantiation takes 0.0018000602722168 seconds
Output for 7.0.13
Variable Instantiation takes 0.0025429725646973 seconds Magic Instantiation takes 0.0021669864654541 seconds
Output for 7.0.12
Variable Instantiation takes 0.0022850036621094 seconds Magic Instantiation takes 0.0020310878753662 seconds
Output for 7.0.11
Variable Instantiation takes 0.0022239685058594 seconds Magic Instantiation takes 0.0018799304962158 seconds
Output for 7.0.10
Variable Instantiation takes 0.0035400390625 seconds Magic Instantiation takes 0.0026869773864746 seconds
Output for 7.0.9
Variable Instantiation takes 0.0029520988464355 seconds Magic Instantiation takes 0.0025019645690918 seconds
Output for 7.0.8
Variable Instantiation takes 0.0022139549255371 seconds Magic Instantiation takes 0.001863956451416 seconds
Output for 7.0.7
Variable Instantiation takes 0.0022568702697754 seconds Magic Instantiation takes 0.0018651485443115 seconds
Output for 7.0.6
Variable Instantiation takes 0.0032048225402832 seconds Magic Instantiation takes 0.0018179416656494 seconds
Output for 7.0.5
Variable Instantiation takes 0.0043551921844482 seconds Magic Instantiation takes 0.0028040409088135 seconds
Output for 7.0.4
Variable Instantiation takes 0.002824068069458 seconds Magic Instantiation takes 0.0018770694732666 seconds
Output for 7.0.3
Variable Instantiation takes 0.0046770572662354 seconds Magic Instantiation takes 0.0022640228271484 seconds
Output for 7.0.2
Variable Instantiation takes 0.0021960735321045 seconds Magic Instantiation takes 0.00177001953125 seconds
Output for 7.0.1
Variable Instantiation takes 0.002187967300415 seconds Magic Instantiation takes 0.0017850399017334 seconds
Output for 7.0.0
Variable Instantiation takes 0.0035350322723389 seconds Magic Instantiation takes 0.0042328834533691 seconds
Output for 5.6.40
Variable Instantiation takes 0.005490779876709 seconds Magic Instantiation takes 0.0037429332733154 seconds
Output for 5.6.39
Variable Instantiation takes 0.0050101280212402 seconds Magic Instantiation takes 0.0037310123443604 seconds
Output for 5.6.38
Variable Instantiation takes 0.0045621395111084 seconds Magic Instantiation takes 0.0033929347991943 seconds
Output for 5.6.37
Variable Instantiation takes 0.004594087600708 seconds Magic Instantiation takes 0.0034198760986328 seconds
Output for 5.6.36
Variable Instantiation takes 0.0045409202575684 seconds Magic Instantiation takes 0.0033810138702393 seconds
Output for 5.6.35
Variable Instantiation takes 0.0071449279785156 seconds Magic Instantiation takes 0.0033760070800781 seconds
Output for 5.6.34
Variable Instantiation takes 0.0073227882385254 seconds Magic Instantiation takes 0.003399133682251 seconds
Output for 5.6.33
Variable Instantiation takes 0.0057549476623535 seconds Magic Instantiation takes 0.0033619403839111 seconds
Output for 5.6.32
Variable Instantiation takes 0.0064959526062012 seconds Magic Instantiation takes 0.0033309459686279 seconds
Output for 5.6.31
Variable Instantiation takes 0.0060329437255859 seconds Magic Instantiation takes 0.0043611526489258 seconds
Output for 5.6.30
Variable Instantiation takes 0.00537109375 seconds Magic Instantiation takes 0.0041749477386475 seconds
Output for 5.6.29
Variable Instantiation takes 0.0061109066009521 seconds Magic Instantiation takes 0.0033841133117676 seconds
Output for 5.6.28
Variable Instantiation takes 0.0069291591644287 seconds Magic Instantiation takes 0.0033919811248779 seconds
Output for 5.6.27
Variable Instantiation takes 0.0046830177307129 seconds Magic Instantiation takes 0.0033500194549561 seconds
Output for 5.6.26
Variable Instantiation takes 0.0068058967590332 seconds Magic Instantiation takes 0.0033488273620605 seconds
Output for 5.6.25
Variable Instantiation takes 0.0055069923400879 seconds Magic Instantiation takes 0.0039780139923096 seconds
Output for 5.6.24
Variable Instantiation takes 0.005565881729126 seconds Magic Instantiation takes 0.0041191577911377 seconds
Output for 5.6.23
Variable Instantiation takes 0.0058090686798096 seconds Magic Instantiation takes 0.0042648315429688 seconds
Output for 5.6.22
Variable Instantiation takes 0.005856990814209 seconds Magic Instantiation takes 0.0043859481811523 seconds
Output for 5.6.21
Variable Instantiation takes 0.0046420097351074 seconds Magic Instantiation takes 0.0034089088439941 seconds
Output for 5.6.20
Variable Instantiation takes 0.0064899921417236 seconds Magic Instantiation takes 0.0034699440002441 seconds
Output for 5.6.19
Variable Instantiation takes 0.0069911479949951 seconds Magic Instantiation takes 0.0051259994506836 seconds
Output for 5.6.18
Variable Instantiation takes 0.0052051544189453 seconds Magic Instantiation takes 0.0034260749816895 seconds
Output for 5.6.17
Variable Instantiation takes 0.0054469108581543 seconds Magic Instantiation takes 0.0033841133117676 seconds
Output for 5.6.16
Variable Instantiation takes 0.0048007965087891 seconds Magic Instantiation takes 0.0033559799194336 seconds
Output for 5.6.15
Variable Instantiation takes 0.0046331882476807 seconds Magic Instantiation takes 0.0033359527587891 seconds
Output for 5.6.14
Variable Instantiation takes 0.0079140663146973 seconds Magic Instantiation takes 0.0036098957061768 seconds
Output for 5.6.13
Variable Instantiation takes 0.0045490264892578 seconds Magic Instantiation takes 0.0033328533172607 seconds
Output for 5.6.12
Variable Instantiation takes 0.0046889781951904 seconds Magic Instantiation takes 0.0033919811248779 seconds
Output for 5.6.11
Variable Instantiation takes 0.0045430660247803 seconds Magic Instantiation takes 0.0034139156341553 seconds
Output for 5.6.10
Variable Instantiation takes 0.0074381828308105 seconds Magic Instantiation takes 0.0033869743347168 seconds
Output for 5.6.9
Variable Instantiation takes 0.0060958862304688 seconds Magic Instantiation takes 0.0036709308624268 seconds
Output for 5.6.8
Variable Instantiation takes 0.005856990814209 seconds Magic Instantiation takes 0.0049278736114502 seconds
Output for 5.6.7
Variable Instantiation takes 0.0056328773498535 seconds Magic Instantiation takes 0.0041289329528809 seconds
Output for 5.6.6
Variable Instantiation takes 0.0048680305480957 seconds Magic Instantiation takes 0.0034880638122559 seconds
Output for 5.6.5
Variable Instantiation takes 0.0071039199829102 seconds Magic Instantiation takes 0.0033400058746338 seconds
Output for 5.6.4
Variable Instantiation takes 0.0054078102111816 seconds Magic Instantiation takes 0.0039808750152588 seconds
Output for 5.6.3
Variable Instantiation takes 0.0069568157196045 seconds Magic Instantiation takes 0.0036299228668213 seconds
Output for 5.6.2
Variable Instantiation takes 0.0066208839416504 seconds Magic Instantiation takes 0.0041091442108154 seconds
Output for 5.6.1
Variable Instantiation takes 0.0053400993347168 seconds Magic Instantiation takes 0.0033819675445557 seconds
Output for 5.6.0
Variable Instantiation takes 0.0068490505218506 seconds Magic Instantiation takes 0.0039520263671875 seconds
Output for 5.5.38
Variable Instantiation takes 0.0054290294647217 seconds Magic Instantiation takes 0.0040791034698486 seconds
Output for 5.5.37
Variable Instantiation takes 0.0047690868377686 seconds Magic Instantiation takes 0.0035889148712158 seconds
Output for 5.5.36
Variable Instantiation takes 0.0051589012145996 seconds Magic Instantiation takes 0.0038318634033203 seconds
Output for 5.5.35
Variable Instantiation takes 0.0072250366210938 seconds Magic Instantiation takes 0.0035629272460938 seconds
Output for 5.5.34
Variable Instantiation takes 0.0046238899230957 seconds Magic Instantiation takes 0.0036370754241943 seconds
Output for 5.5.33
Variable Instantiation takes 0.0070888996124268 seconds Magic Instantiation takes 0.00531005859375 seconds
Output for 5.5.32
Variable Instantiation takes 0.0048861503601074 seconds Magic Instantiation takes 0.0036399364471436 seconds
Output for 5.5.31
Variable Instantiation takes 0.0047080516815186 seconds Magic Instantiation takes 0.0035369396209717 seconds
Output for 5.5.30
Variable Instantiation takes 0.0046050548553467 seconds Magic Instantiation takes 0.0035760402679443 seconds
Output for 5.5.29
Variable Instantiation takes 0.0076789855957031 seconds Magic Instantiation takes 0.0038590431213379 seconds
Output for 5.5.28
Variable Instantiation takes 0.01692795753479 seconds Magic Instantiation takes 0.0054700374603271 seconds
Output for 5.5.27
Variable Instantiation takes 0.0046169757843018 seconds Magic Instantiation takes 0.0035591125488281 seconds
Output for 5.5.26
Variable Instantiation takes 0.0055019855499268 seconds Magic Instantiation takes 0.0038619041442871 seconds
Output for 5.5.25
Variable Instantiation takes 0.0046219825744629 seconds Magic Instantiation takes 0.0035288333892822 seconds
Output for 5.5.24
Variable Instantiation takes 0.0069851875305176 seconds Magic Instantiation takes 0.007072925567627 seconds
Output for 5.5.23
Variable Instantiation takes 0.024876117706299 seconds Magic Instantiation takes 0.0056190490722656 seconds
Output for 5.5.22
Variable Instantiation takes 0.0055789947509766 seconds Magic Instantiation takes 0.0040450096130371 seconds
Output for 5.5.21
Variable Instantiation takes 0.0071370601654053 seconds Magic Instantiation takes 0.0040969848632812 seconds
Output for 5.5.20
Variable Instantiation takes 0.004755973815918 seconds Magic Instantiation takes 0.0036499500274658 seconds
Output for 5.5.19
Variable Instantiation takes 0.0046300888061523 seconds Magic Instantiation takes 0.0035781860351562 seconds
Output for 5.5.18
Variable Instantiation takes 0.0045969486236572 seconds Magic Instantiation takes 0.0035099983215332 seconds
Output for 5.5.17
Variable Instantiation takes 0.0046141147613525 seconds Magic Instantiation takes 0.0035490989685059 seconds
Output for 5.5.16
Variable Instantiation takes 0.0050549507141113 seconds Magic Instantiation takes 0.0041170120239258 seconds
Output for 5.5.15
Variable Instantiation takes 0.0072121620178223 seconds Magic Instantiation takes 0.003558874130249 seconds
Output for 5.5.14
Variable Instantiation takes 0.0065648555755615 seconds Magic Instantiation takes 0.0036211013793945 seconds
Output for 5.5.13
Variable Instantiation takes 0.0052800178527832 seconds Magic Instantiation takes 0.0040440559387207 seconds
Output for 5.5.12
Variable Instantiation takes 0.0046811103820801 seconds Magic Instantiation takes 0.0035879611968994 seconds
Output for 5.5.11
Variable Instantiation takes 0.0053229331970215 seconds Magic Instantiation takes 0.0040621757507324 seconds
Output for 5.5.10
Variable Instantiation takes 0.0046539306640625 seconds Magic Instantiation takes 0.0036778450012207 seconds
Output for 5.5.9
Variable Instantiation takes 0.0046582221984863 seconds Magic Instantiation takes 0.0037012100219727 seconds
Output for 5.5.8
Variable Instantiation takes 0.0047612190246582 seconds Magic Instantiation takes 0.0037620067596436 seconds
Output for 5.5.7
Variable Instantiation takes 0.0046610832214355 seconds Magic Instantiation takes 0.0035278797149658 seconds
Output for 5.5.6
Variable Instantiation takes 0.0070538520812988 seconds Magic Instantiation takes 0.0042891502380371 seconds
Output for 5.5.5
Variable Instantiation takes 0.0056519508361816 seconds Magic Instantiation takes 0.0040709972381592 seconds
Output for 5.5.4
Variable Instantiation takes 0.0071971416473389 seconds Magic Instantiation takes 0.0037651062011719 seconds
Output for 5.5.3
Variable Instantiation takes 0.0076441764831543 seconds Magic Instantiation takes 0.0037069320678711 seconds
Output for 5.5.2
Variable Instantiation takes 0.0057299137115479 seconds Magic Instantiation takes 0.0035409927368164 seconds
Output for 5.5.1
Variable Instantiation takes 0.0059149265289307 seconds Magic Instantiation takes 0.0043308734893799 seconds
Output for 5.5.0
Variable Instantiation takes 0.0059258937835693 seconds Magic Instantiation takes 0.0045480728149414 seconds
Output for 5.4.45
Variable Instantiation takes 0.01880407333374 seconds Magic Instantiation takes 0.0055551528930664 seconds
Output for 5.4.44
Variable Instantiation takes 0.0077700614929199 seconds Magic Instantiation takes 0.0039808750152588 seconds
Output for 5.4.43
Variable Instantiation takes 0.008756160736084 seconds Magic Instantiation takes 0.0036880970001221 seconds
Output for 5.4.42
Variable Instantiation takes 0.0060319900512695 seconds Magic Instantiation takes 0.0037269592285156 seconds
Output for 5.4.41
Variable Instantiation takes 0.0069971084594727 seconds Magic Instantiation takes 0.0049080848693848 seconds
Output for 5.4.40
Variable Instantiation takes 0.0092411041259766 seconds Magic Instantiation takes 0.003931999206543 seconds
Output for 5.4.39
Variable Instantiation takes 0.0064342021942139 seconds Magic Instantiation takes 0.0047249794006348 seconds
Output for 5.4.38
Variable Instantiation takes 0.0071048736572266 seconds Magic Instantiation takes 0.0053801536560059 seconds
Output for 5.4.37
Variable Instantiation takes 0.0066509246826172 seconds Magic Instantiation takes 0.0040550231933594 seconds
Output for 5.4.36
Variable Instantiation takes 0.0080580711364746 seconds Magic Instantiation takes 0.0054640769958496 seconds
Output for 5.4.35
Variable Instantiation takes 0.0080890655517578 seconds Magic Instantiation takes 0.0054628849029541 seconds
Output for 5.4.34
Variable Instantiation takes 0.0047800540924072 seconds Magic Instantiation takes 0.0039198398590088 seconds
Output for 5.4.33
Variable Instantiation takes 0.0047130584716797 seconds Magic Instantiation takes 0.0037109851837158 seconds
Output for 5.4.32
Variable Instantiation takes 0.0060238838195801 seconds Magic Instantiation takes 0.0043239593505859 seconds
Output for 5.4.31
Variable Instantiation takes 0.0092670917510986 seconds Magic Instantiation takes 0.0036489963531494 seconds
Output for 5.4.30
Variable Instantiation takes 0.0064501762390137 seconds Magic Instantiation takes 0.0041859149932861 seconds
Output for 5.4.29
Variable Instantiation takes 0.0058739185333252 seconds Magic Instantiation takes 0.0042791366577148 seconds
Output for 5.4.28
Variable Instantiation takes 0.0052738189697266 seconds Magic Instantiation takes 0.0041651725769043 seconds
Output for 5.4.27
Variable Instantiation takes 0.0094640254974365 seconds Magic Instantiation takes 0.0036361217498779 seconds
Output for 5.4.26
Variable Instantiation takes 0.0065779685974121 seconds Magic Instantiation takes 0.0050020217895508 seconds
Output for 5.4.25
Variable Instantiation takes 0.0058169364929199 seconds Magic Instantiation takes 0.0037121772766113 seconds
Output for 5.4.24
Variable Instantiation takes 0.0070888996124268 seconds Magic Instantiation takes 0.0053751468658447 seconds
Output for 5.4.23
Variable Instantiation takes 0.0085790157318115 seconds Magic Instantiation takes 0.0037851333618164 seconds
Output for 5.4.22
Variable Instantiation takes 0.0093269348144531 seconds Magic Instantiation takes 0.003870964050293 seconds
Output for 5.4.21
Variable Instantiation takes 0.0052890777587891 seconds Magic Instantiation takes 0.0040671825408936 seconds
Output for 5.4.20
Variable Instantiation takes 0.0086510181427002 seconds Magic Instantiation takes 0.0037918090820312 seconds
Output for 5.4.19
Variable Instantiation takes 0.005640983581543 seconds Magic Instantiation takes 0.0038688182830811 seconds
Output for 5.4.18
Variable Instantiation takes 0.0086300373077393 seconds Magic Instantiation takes 0.0038399696350098 seconds
Output for 5.4.17
Variable Instantiation takes 0.004845142364502 seconds Magic Instantiation takes 0.0036609172821045 seconds
Output for 5.4.16
Variable Instantiation takes 0.0069839954376221 seconds Magic Instantiation takes 0.0054309368133545 seconds
Output for 5.4.15
Variable Instantiation takes 0.0048151016235352 seconds Magic Instantiation takes 0.0057339668273926 seconds
Output for 5.4.14
Variable Instantiation takes 0.008073091506958 seconds Magic Instantiation takes 0.0054450035095215 seconds
Output for 5.4.13
Variable Instantiation takes 0.0059108734130859 seconds Magic Instantiation takes 0.0055539608001709 seconds
Output for 5.4.12
Variable Instantiation takes 0.0078651905059814 seconds Magic Instantiation takes 0.004518985748291 seconds
Output for 5.4.11
Variable Instantiation takes 0.0075201988220215 seconds Magic Instantiation takes 0.0053308010101318 seconds
Output for 5.4.10
Variable Instantiation takes 0.0079550743103027 seconds Magic Instantiation takes 0.0053601264953613 seconds
Output for 5.4.9
Variable Instantiation takes 0.0052399635314941 seconds Magic Instantiation takes 0.0036859512329102 seconds
Output for 5.4.8
Variable Instantiation takes 0.0066819190979004 seconds Magic Instantiation takes 0.0049190521240234 seconds
Output for 5.4.7
Variable Instantiation takes 0.0057950019836426 seconds Magic Instantiation takes 0.0043139457702637 seconds
Output for 5.4.6
Variable Instantiation takes 0.0063090324401855 seconds Magic Instantiation takes 0.0036699771881104 seconds
Output for 5.4.5
Variable Instantiation takes 0.0064010620117188 seconds Magic Instantiation takes 0.003993034362793 seconds
Output for 5.4.4
Variable Instantiation takes 0.0070531368255615 seconds Magic Instantiation takes 0.0054922103881836 seconds
Output for 5.4.3
Variable Instantiation takes 0.0073399543762207 seconds Magic Instantiation takes 0.003695011138916 seconds
Output for 5.4.2
Variable Instantiation takes 0.0047099590301514 seconds Magic Instantiation takes 0.0037088394165039 seconds
Output for 5.4.1
Variable Instantiation takes 0.0065147876739502 seconds Magic Instantiation takes 0.004021167755127 seconds
Output for 5.4.0
Variable Instantiation takes 0.0058648586273193 seconds Magic Instantiation takes 0.0040481090545654 seconds
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/1h8Jp 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/1h8Jp 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/1h8Jp 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/1h8Jp 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/1h8Jp on line 3
Process exited with code 255.

preferences:
217.43 ms | 401 KiB | 325 Q