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 ".round(($t2/$t1), 2)."\n"; } else { echo "Magic Instantion is faster by a factor of ".round(($t1/$t2), 2)."\n"; }
Output for 7.4.1
Variable Instantiation takes 0.0018160343170166 seconds Magic Instantiation takes 0.0010378360748291 seconds Magic Instantion is faster by a factor of 1.75
Output for 7.4.0
Variable Instantiation takes 0.0019299983978271 seconds Magic Instantiation takes 0.0017058849334717 seconds Magic Instantion is faster by a factor of 1.13
Output for 7.3.13
Variable Instantiation takes 0.0014691352844238 seconds Magic Instantiation takes 0.00130295753479 seconds Magic Instantion is faster by a factor of 1.13
Output for 7.3.12
Variable Instantiation takes 0.0010499954223633 seconds Magic Instantiation takes 0.00087404251098633 seconds Magic Instantion is faster by a factor of 1.2
Output for 7.3.11
Variable Instantiation takes 0.0014379024505615 seconds Magic Instantiation takes 0.0012240409851074 seconds Magic Instantion is faster by a factor of 1.17
Output for 7.3.10
Variable Instantiation takes 0.00095915794372559 seconds Magic Instantiation takes 0.00075387954711914 seconds Magic Instantion is faster by a factor of 1.27
Output for 7.3.9
Variable Instantiation takes 0.001305103302002 seconds Magic Instantiation takes 0.00071501731872559 seconds Magic Instantion is faster by a factor of 1.83
Output for 7.3.8
Variable Instantiation takes 0.00087785720825195 seconds Magic Instantiation takes 0.00072813034057617 seconds Magic Instantion is faster by a factor of 1.21
Output for 7.3.7
Variable Instantiation takes 0.00091409683227539 seconds Magic Instantiation takes 0.00075888633728027 seconds Magic Instantion is faster by a factor of 1.2
Output for 7.3.6
Variable Instantiation takes 0.0015299320220947 seconds Magic Instantiation takes 0.0013179779052734 seconds Magic Instantion is faster by a factor of 1.16
Output for 7.3.5
Variable Instantiation takes 0.00086808204650879 seconds Magic Instantiation takes 0.00073504447937012 seconds Magic Instantion is faster by a factor of 1.18
Output for 7.3.4
Variable Instantiation takes 0.0010528564453125 seconds Magic Instantiation takes 0.00075697898864746 seconds Magic Instantion is faster by a factor of 1.39
Output for 7.3.3
Variable Instantiation takes 0.0017509460449219 seconds Magic Instantiation takes 0.0013771057128906 seconds Magic Instantion is faster by a factor of 1.27
Output for 7.3.2
Variable Instantiation takes 0.0012848377227783 seconds Magic Instantiation takes 0.00084805488586426 seconds Magic Instantion is faster by a factor of 1.52
Output for 7.3.1
Variable Instantiation takes 0.0013008117675781 seconds Magic Instantiation takes 0.0011038780212402 seconds Magic Instantion is faster by a factor of 1.18
Output for 7.3.0
Variable Instantiation takes 0.00088095664978027 seconds Magic Instantiation takes 0.00072097778320312 seconds Magic Instantion is faster by a factor of 1.22
Output for 7.2.26
Variable Instantiation takes 0.0015928745269775 seconds Magic Instantiation takes 0.001244068145752 seconds Magic Instantion is faster by a factor of 1.28
Output for 7.2.25
Variable Instantiation takes 0.0017869472503662 seconds Magic Instantiation takes 0.001270055770874 seconds Magic Instantion is faster by a factor of 1.41
Output for 7.2.24
Variable Instantiation takes 0.0010499954223633 seconds Magic Instantiation takes 0.00085306167602539 seconds Magic Instantion is faster by a factor of 1.23
Output for 7.2.23
Variable Instantiation takes 0.0010631084442139 seconds Magic Instantiation takes 0.00084686279296875 seconds Magic Instantion is faster by a factor of 1.26
Output for 7.2.22
Variable Instantiation takes 0.0010349750518799 seconds Magic Instantiation takes 0.00081014633178711 seconds Magic Instantion is faster by a factor of 1.28
Output for 7.2.21
Variable Instantiation takes 0.00099301338195801 seconds Magic Instantiation takes 0.00082588195800781 seconds Magic Instantion is faster by a factor of 1.2
Output for 7.2.20
Variable Instantiation takes 0.00098419189453125 seconds Magic Instantiation takes 0.00078606605529785 seconds Magic Instantion is faster by a factor of 1.25
Output for 7.2.19
Variable Instantiation takes 0.0016770362854004 seconds Magic Instantiation takes 0.001317024230957 seconds Magic Instantion is faster by a factor of 1.27
Output for 7.2.18
Variable Instantiation takes 0.0019750595092773 seconds Magic Instantiation takes 0.0015890598297119 seconds Magic Instantion is faster by a factor of 1.24
Output for 7.2.17
Variable Instantiation takes 0.0010030269622803 seconds Magic Instantiation takes 0.00081706047058105 seconds Magic Instantion is faster by a factor of 1.23
Output for 7.2.16
Variable Instantiation takes 0.0021529197692871 seconds Magic Instantiation takes 0.0016679763793945 seconds Magic Instantion is faster by a factor of 1.29
Output for 7.2.15
Variable Instantiation takes 0.00098991394042969 seconds Magic Instantiation takes 0.00078797340393066 seconds Magic Instantion is faster by a factor of 1.26
Output for 7.2.14
Variable Instantiation takes 0.0010190010070801 seconds Magic Instantiation takes 0.00078511238098145 seconds Magic Instantion is faster by a factor of 1.3
Output for 7.2.13
Variable Instantiation takes 0.00098681449890137 seconds Magic Instantiation takes 0.00078487396240234 seconds Magic Instantion is faster by a factor of 1.26
Output for 7.2.12
Variable Instantiation takes 0.0017430782318115 seconds Magic Instantiation takes 0.0013740062713623 seconds Magic Instantion is faster by a factor of 1.27
Output for 7.2.11
Variable Instantiation takes 0.0013601779937744 seconds Magic Instantiation takes 0.0010991096496582 seconds Magic Instantion is faster by a factor of 1.24
Output for 7.2.10
Variable Instantiation takes 0.0009911060333252 seconds Magic Instantiation takes 0.00078916549682617 seconds Magic Instantion is faster by a factor of 1.26
Output for 7.2.9
Variable Instantiation takes 0.00136399269104 seconds Magic Instantiation takes 0.0010809898376465 seconds Magic Instantion is faster by a factor of 1.26
Output for 7.2.8
Variable Instantiation takes 0.0010490417480469 seconds Magic Instantiation takes 0.00083708763122559 seconds Magic Instantion is faster by a factor of 1.25
Output for 7.2.7
Variable Instantiation takes 0.0010089874267578 seconds Magic Instantiation takes 0.00081086158752441 seconds Magic Instantion is faster by a factor of 1.24
Output for 7.2.6
Variable Instantiation takes 0.0018420219421387 seconds Magic Instantiation takes 0.00090408325195312 seconds Magic Instantion is faster by a factor of 2.04
Output for 7.2.5
Variable Instantiation takes 0.00099492073059082 seconds Magic Instantiation takes 0.00079798698425293 seconds Magic Instantion is faster by a factor of 1.25
Output for 7.2.4
Variable Instantiation takes 0.00098299980163574 seconds Magic Instantiation takes 0.00079703330993652 seconds Magic Instantion is faster by a factor of 1.23
Output for 7.2.3
Variable Instantiation takes 0.0011000633239746 seconds Magic Instantiation takes 0.00084805488586426 seconds Magic Instantion is faster by a factor of 1.3
Output for 7.2.2
Variable Instantiation takes 0.00099492073059082 seconds Magic Instantiation takes 0.00080299377441406 seconds Magic Instantion is faster by a factor of 1.24
Output for 7.2.1
Variable Instantiation takes 0.0012660026550293 seconds Magic Instantiation takes 0.0010039806365967 seconds Magic Instantion is faster by a factor of 1.26
Output for 7.2.0
Variable Instantiation takes 0.0013899803161621 seconds Magic Instantiation takes 0.00081205368041992 seconds Magic Instantion is faster by a factor of 1.71
Output for 7.1.33
Variable Instantiation takes 0.0022459030151367 seconds Magic Instantiation takes 0.001849889755249 seconds Magic Instantion is faster by a factor of 1.21
Output for 7.1.32
Variable Instantiation takes 0.0033349990844727 seconds Magic Instantiation takes 0.0018539428710938 seconds Magic Instantion is faster by a factor of 1.8
Output for 7.1.31
Variable Instantiation takes 0.0047669410705566 seconds Magic Instantiation takes 0.0021030902862549 seconds Magic Instantion is faster by a factor of 2.27
Output for 7.1.30
Variable Instantiation takes 0.0021848678588867 seconds Magic Instantiation takes 0.0018138885498047 seconds Magic Instantion is faster by a factor of 1.2
Output for 7.1.29
Variable Instantiation takes 0.0024008750915527 seconds Magic Instantiation takes 0.0020010471343994 seconds Magic Instantion is faster by a factor of 1.2
Output for 7.1.28
Variable Instantiation takes 0.0036060810089111 seconds Magic Instantiation takes 0.0020010471343994 seconds Magic Instantion is faster by a factor of 1.8
Output for 7.1.27
Variable Instantiation takes 0.0022499561309814 seconds Magic Instantiation takes 0.0018460750579834 seconds Magic Instantion is faster by a factor of 1.22
Output for 7.1.26
Variable Instantiation takes 0.0030121803283691 seconds Magic Instantiation takes 0.0018270015716553 seconds Magic Instantion is faster by a factor of 1.65
Output for 7.1.25
Variable Instantiation takes 0.0022001266479492 seconds Magic Instantiation takes 0.0018188953399658 seconds Magic Instantion is faster by a factor of 1.21
Output for 7.1.24
Variable Instantiation takes 0.0032958984375 seconds Magic Instantiation takes 0.0020170211791992 seconds Magic Instantion is faster by a factor of 1.63
Output for 7.1.23
Variable Instantiation takes 0.0028879642486572 seconds Magic Instantiation takes 0.0024828910827637 seconds Magic Instantion is faster by a factor of 1.16
Output for 7.1.22
Variable Instantiation takes 0.0040359497070312 seconds Magic Instantiation takes 0.0018670558929443 seconds Magic Instantion is faster by a factor of 2.16
Output for 7.1.21
Variable Instantiation takes 0.0021610260009766 seconds Magic Instantiation takes 0.0018210411071777 seconds Magic Instantion is faster by a factor of 1.19
Output for 7.1.20
Variable Instantiation takes 0.0041840076446533 seconds Magic Instantiation takes 0.0017209053039551 seconds Magic Instantion is faster by a factor of 2.43
Output for 7.1.19
Variable Instantiation takes 0.0021378993988037 seconds Magic Instantiation takes 0.0018100738525391 seconds Magic Instantion is faster by a factor of 1.18
Output for 7.1.18
Variable Instantiation takes 0.00211501121521 seconds Magic Instantiation takes 0.0017340183258057 seconds Magic Instantion is faster by a factor of 1.22
Output for 7.1.17
Variable Instantiation takes 0.0021059513092041 seconds Magic Instantiation takes 0.0018091201782227 seconds Magic Instantion is faster by a factor of 1.16
Output for 7.1.16
Variable Instantiation takes 0.0022311210632324 seconds Magic Instantiation takes 0.0018179416656494 seconds Magic Instantion is faster by a factor of 1.23
Output for 7.1.15
Variable Instantiation takes 0.0022170543670654 seconds Magic Instantiation takes 0.0018260478973389 seconds Magic Instantion is faster by a factor of 1.21
Output for 7.1.14
Variable Instantiation takes 0.0030989646911621 seconds Magic Instantiation takes 0.002734899520874 seconds Magic Instantion is faster by a factor of 1.13
Output for 7.1.13
Variable Instantiation takes 0.0027799606323242 seconds Magic Instantiation takes 0.0017631053924561 seconds Magic Instantion is faster by a factor of 1.58
Output for 7.1.12
Variable Instantiation takes 0.0029020309448242 seconds Magic Instantiation takes 0.0024669170379639 seconds Magic Instantion is faster by a factor of 1.18
Output for 7.1.11
Variable Instantiation takes 0.0036389827728271 seconds Magic Instantiation takes 0.0026340484619141 seconds Magic Instantion is faster by a factor of 1.38
Output for 7.1.10
Variable Instantiation takes 0.0032880306243896 seconds Magic Instantiation takes 0.0020279884338379 seconds Magic Instantion is faster by a factor of 1.62
Output for 7.1.9
Variable Instantiation takes 0.0021629333496094 seconds Magic Instantiation takes 0.0017051696777344 seconds Magic Instantion is faster by a factor of 1.27
Output for 7.1.8
Variable Instantiation takes 0.0024709701538086 seconds Magic Instantiation takes 0.002094030380249 seconds Magic Instantion is faster by a factor of 1.18
Output for 7.1.7
Variable Instantiation takes 0.0027439594268799 seconds Magic Instantiation takes 0.0022969245910645 seconds Magic Instantion is faster by a factor of 1.19
Output for 7.1.6
Variable Instantiation takes 0.0028479099273682 seconds Magic Instantiation takes 0.0019598007202148 seconds Magic Instantion is faster by a factor of 1.45
Output for 7.1.5
Variable Instantiation takes 0.0025289058685303 seconds Magic Instantiation takes 0.0019509792327881 seconds Magic Instantion is faster by a factor of 1.3
Output for 7.1.4
Variable Instantiation takes 0.0040760040283203 seconds Magic Instantiation takes 0.002000093460083 seconds Magic Instantion is faster by a factor of 2.04
Output for 7.1.3
Variable Instantiation takes 0.0031611919403076 seconds Magic Instantiation takes 0.0025949478149414 seconds Magic Instantion is faster by a factor of 1.22
Output for 7.1.2
Variable Instantiation takes 0.0021638870239258 seconds Magic Instantiation takes 0.0019059181213379 seconds Magic Instantion is faster by a factor of 1.14
Output for 7.1.1
Variable Instantiation takes 0.0021979808807373 seconds Magic Instantiation takes 0.0018150806427002 seconds Magic Instantion is faster by a factor of 1.21
Output for 7.1.0
Variable Instantiation takes 0.0031991004943848 seconds Magic Instantiation takes 0.0025660991668701 seconds Magic Instantion is faster by a factor of 1.25
Output for 7.0.33
Variable Instantiation takes 0.0031628608703613 seconds Magic Instantiation takes 0.0018391609191895 seconds Magic Instantion is faster by a factor of 1.72
Output for 7.0.32
Variable Instantiation takes 0.0041069984436035 seconds Magic Instantiation takes 0.0018680095672607 seconds Magic Instantion is faster by a factor of 2.2
Output for 7.0.31
Variable Instantiation takes 0.002194881439209 seconds Magic Instantiation takes 0.0018110275268555 seconds Magic Instantion is faster by a factor of 1.21
Output for 7.0.30
Variable Instantiation takes 0.002190113067627 seconds Magic Instantiation takes 0.0018069744110107 seconds Magic Instantion is faster by a factor of 1.21
Output for 7.0.29
Variable Instantiation takes 0.0031349658966064 seconds Magic Instantiation takes 0.0026700496673584 seconds Magic Instantion is faster by a factor of 1.17
Output for 7.0.28
Variable Instantiation takes 0.0022060871124268 seconds Magic Instantiation takes 0.0019359588623047 seconds Magic Instantion is faster by a factor of 1.14
Output for 7.0.27
Variable Instantiation takes 0.0021700859069824 seconds Magic Instantiation takes 0.0018379688262939 seconds Magic Instantion is faster by a factor of 1.18
Output for 7.0.26
Variable Instantiation takes 0.0038361549377441 seconds Magic Instantiation takes 0.0027391910552979 seconds Magic Instantion is faster by a factor of 1.4
Output for 7.0.25
Variable Instantiation takes 0.0025999546051025 seconds Magic Instantiation takes 0.0018188953399658 seconds Magic Instantion is faster by a factor of 1.43
Output for 7.0.24
Variable Instantiation takes 0.0021278858184814 seconds Magic Instantiation takes 0.0018818378448486 seconds Magic Instantion is faster by a factor of 1.13
Output for 7.0.23
Variable Instantiation takes 0.0023272037506104 seconds Magic Instantiation takes 0.0020041465759277 seconds Magic Instantion is faster by a factor of 1.16
Output for 7.0.22
Variable Instantiation takes 0.0025877952575684 seconds Magic Instantiation takes 0.002155065536499 seconds Magic Instantion is faster by a factor of 1.2
Output for 7.0.21
Variable Instantiation takes 0.0036180019378662 seconds Magic Instantiation takes 0.002615213394165 seconds Magic Instantion is faster by a factor of 1.38
Output for 7.0.20
Variable Instantiation takes 0.0043659210205078 seconds Magic Instantiation takes 0.0020689964294434 seconds Magic Instantion is faster by a factor of 2.11
Output for 7.0.19
Variable Instantiation takes 0.0040769577026367 seconds Magic Instantiation takes 0.0027420520782471 seconds Magic Instantion is faster by a factor of 1.49
Output for 7.0.18
Variable Instantiation takes 0.00313401222229 seconds Magic Instantiation takes 0.0026810169219971 seconds Magic Instantion is faster by a factor of 1.17
Output for 7.0.17
Variable Instantiation takes 0.0021650791168213 seconds Magic Instantiation takes 0.0017821788787842 seconds Magic Instantion is faster by a factor of 1.21
Output for 7.0.16
Variable Instantiation takes 0.0022010803222656 seconds Magic Instantiation takes 0.0018100738525391 seconds Magic Instantion is faster by a factor of 1.22
Output for 7.0.15
Variable Instantiation takes 0.0026028156280518 seconds Magic Instantiation takes 0.0022249221801758 seconds Magic Instantion is faster by a factor of 1.17
Output for 7.0.14
Variable Instantiation takes 0.0022759437561035 seconds Magic Instantiation takes 0.0019299983978271 seconds Magic Instantion is faster by a factor of 1.18
Output for 7.0.13
Variable Instantiation takes 0.0033378601074219 seconds Magic Instantiation takes 0.0017940998077393 seconds Magic Instantion is faster by a factor of 1.86
Output for 7.0.12
Variable Instantiation takes 0.0022788047790527 seconds Magic Instantiation takes 0.0019409656524658 seconds Magic Instantion is faster by a factor of 1.17
Output for 7.0.11
Variable Instantiation takes 0.003385066986084 seconds Magic Instantiation takes 0.0018689632415771 seconds Magic Instantion is faster by a factor of 1.81
Output for 7.0.10
Variable Instantiation takes 0.0028619766235352 seconds Magic Instantiation takes 0.0023729801177979 seconds Magic Instantion is faster by a factor of 1.21
Output for 7.0.9
Variable Instantiation takes 0.0021529197692871 seconds Magic Instantiation takes 0.0018260478973389 seconds Magic Instantion is faster by a factor of 1.18
Output for 7.0.8
Variable Instantiation takes 0.0039610862731934 seconds Magic Instantiation takes 0.0034749507904053 seconds Magic Instantion is faster by a factor of 1.14
Output for 7.0.7
Variable Instantiation takes 0.0031180381774902 seconds Magic Instantiation takes 0.002662181854248 seconds Magic Instantion is faster by a factor of 1.17
Output for 7.0.6
Variable Instantiation takes 0.0021569728851318 seconds Magic Instantiation takes 0.0018119812011719 seconds Magic Instantion is faster by a factor of 1.19
Output for 7.0.5
Variable Instantiation takes 0.0021657943725586 seconds Magic Instantiation takes 0.0017950534820557 seconds Magic Instantion is faster by a factor of 1.21
Output for 7.0.4
Variable Instantiation takes 0.0022189617156982 seconds Magic Instantiation takes 0.0019879341125488 seconds Magic Instantion is faster by a factor of 1.12
Output for 7.0.3
Variable Instantiation takes 0.0034050941467285 seconds Magic Instantiation takes 0.0018599033355713 seconds Magic Instantion is faster by a factor of 1.83
Output for 7.0.2
Variable Instantiation takes 0.0060060024261475 seconds Magic Instantiation takes 0.0017809867858887 seconds Magic Instantion is faster by a factor of 3.37
Output for 7.0.1
Variable Instantiation takes 0.003943920135498 seconds Magic Instantiation takes 0.0028300285339355 seconds Magic Instantion is faster by a factor of 1.39
Output for 7.0.0
Variable Instantiation takes 0.0021750926971436 seconds Magic Instantiation takes 0.0028810501098633 seconds Variable Instantion is faster by a factor of 1.32
Output for 5.6.40
Variable Instantiation takes 0.0057339668273926 seconds Magic Instantiation takes 0.0037491321563721 seconds Magic Instantion is faster by a factor of 1.53
Output for 5.6.39
Variable Instantiation takes 0.0045459270477295 seconds Magic Instantiation takes 0.0033090114593506 seconds Magic Instantion is faster by a factor of 1.37
Output for 5.6.38
Variable Instantiation takes 0.0045821666717529 seconds Magic Instantiation takes 0.0033791065216064 seconds Magic Instantion is faster by a factor of 1.36
Output for 5.6.37
Variable Instantiation takes 0.0046710968017578 seconds Magic Instantiation takes 0.0034000873565674 seconds Magic Instantion is faster by a factor of 1.37
Output for 5.6.36
Variable Instantiation takes 0.0045421123504639 seconds Magic Instantiation takes 0.0033731460571289 seconds Magic Instantion is faster by a factor of 1.35
Output for 5.6.35
Variable Instantiation takes 0.006328821182251 seconds Magic Instantiation takes 0.0034129619598389 seconds Magic Instantion is faster by a factor of 1.85
Output for 5.6.34
Variable Instantiation takes 0.0054740905761719 seconds Magic Instantiation takes 0.0039680004119873 seconds Magic Instantion is faster by a factor of 1.38
Output for 5.6.33
Variable Instantiation takes 0.0069849491119385 seconds Magic Instantiation takes 0.0037479400634766 seconds Magic Instantion is faster by a factor of 1.86
Output for 5.6.32
Variable Instantiation takes 0.0067329406738281 seconds Magic Instantiation takes 0.0039401054382324 seconds Magic Instantion is faster by a factor of 1.71
Output for 5.6.31
Variable Instantiation takes 0.004551887512207 seconds Magic Instantiation takes 0.0033860206604004 seconds Magic Instantion is faster by a factor of 1.34
Output for 5.6.30
Variable Instantiation takes 0.0046520233154297 seconds Magic Instantiation takes 0.0033829212188721 seconds Magic Instantion is faster by a factor of 1.38
Output for 5.6.29
Variable Instantiation takes 0.0053470134735107 seconds Magic Instantiation takes 0.0037250518798828 seconds Magic Instantion is faster by a factor of 1.44
Output for 5.6.28
Variable Instantiation takes 0.0050230026245117 seconds Magic Instantiation takes 0.0038089752197266 seconds Magic Instantion is faster by a factor of 1.32
Output for 5.6.27
Variable Instantiation takes 0.0068659782409668 seconds Magic Instantiation takes 0.0036029815673828 seconds Magic Instantion is faster by a factor of 1.91
Output for 5.6.26
Variable Instantiation takes 0.0045621395111084 seconds Magic Instantiation takes 0.0033571720123291 seconds Magic Instantion is faster by a factor of 1.36
Output for 5.6.25
Variable Instantiation takes 0.0060939788818359 seconds Magic Instantiation takes 0.0033659934997559 seconds Magic Instantion is faster by a factor of 1.81
Output for 5.6.24
Variable Instantiation takes 0.0053260326385498 seconds Magic Instantiation takes 0.0033740997314453 seconds Magic Instantion is faster by a factor of 1.58
Output for 5.6.23
Variable Instantiation takes 0.0052609443664551 seconds Magic Instantiation takes 0.0038909912109375 seconds Magic Instantion is faster by a factor of 1.35
Output for 5.6.22
Variable Instantiation takes 0.0066750049591064 seconds Magic Instantiation takes 0.004054069519043 seconds Magic Instantion is faster by a factor of 1.65
Output for 5.6.21
Variable Instantiation takes 0.005551815032959 seconds Magic Instantiation takes 0.0033719539642334 seconds Magic Instantion is faster by a factor of 1.65
Output for 5.6.20
Variable Instantiation takes 0.0053579807281494 seconds Magic Instantiation takes 0.0032899379730225 seconds Magic Instantion is faster by a factor of 1.63
Output for 5.6.19
Variable Instantiation takes 0.0075361728668213 seconds Magic Instantiation takes 0.003371000289917 seconds Magic Instantion is faster by a factor of 2.24
Output for 5.6.18
Variable Instantiation takes 0.0061249732971191 seconds Magic Instantiation takes 0.0033829212188721 seconds Magic Instantion is faster by a factor of 1.81
Output for 5.6.17
Variable Instantiation takes 0.0053119659423828 seconds Magic Instantiation takes 0.003425121307373 seconds Magic Instantion is faster by a factor of 1.55
Output for 5.6.16
Variable Instantiation takes 0.00705885887146 seconds Magic Instantiation takes 0.0042238235473633 seconds Magic Instantion is faster by a factor of 1.67
Output for 5.6.15
Variable Instantiation takes 0.0046789646148682 seconds Magic Instantiation takes 0.0033769607543945 seconds Magic Instantion is faster by a factor of 1.39
Output for 5.6.14
Variable Instantiation takes 0.0062999725341797 seconds Magic Instantiation takes 0.00472092628479 seconds Magic Instantion is faster by a factor of 1.33
Output for 5.6.13
Variable Instantiation takes 0.0049409866333008 seconds Magic Instantiation takes 0.0036270618438721 seconds Magic Instantion is faster by a factor of 1.36
Output for 5.6.12
Variable Instantiation takes 0.007504940032959 seconds Magic Instantiation takes 0.0040059089660645 seconds Magic Instantion is faster by a factor of 1.87
Output for 5.6.11
Variable Instantiation takes 0.0050668716430664 seconds Magic Instantiation takes 0.0038509368896484 seconds Magic Instantion is faster by a factor of 1.32
Output for 5.6.10
Variable Instantiation takes 0.0053341388702393 seconds Magic Instantiation takes 0.0034408569335938 seconds Magic Instantion is faster by a factor of 1.55
Output for 5.6.9
Variable Instantiation takes 0.0074658393859863 seconds Magic Instantiation takes 0.0034170150756836 seconds Magic Instantion is faster by a factor of 2.18
Output for 5.6.8
Variable Instantiation takes 0.0058040618896484 seconds Magic Instantiation takes 0.0032958984375 seconds Magic Instantion is faster by a factor of 1.76
Output for 5.6.7
Variable Instantiation takes 0.0045340061187744 seconds Magic Instantiation takes 0.0033690929412842 seconds Magic Instantion is faster by a factor of 1.35
Output for 5.6.6
Variable Instantiation takes 0.0061969757080078 seconds Magic Instantiation takes 0.0037021636962891 seconds Magic Instantion is faster by a factor of 1.67
Output for 5.6.5
Variable Instantiation takes 0.0083270072937012 seconds Magic Instantiation takes 0.003680944442749 seconds Magic Instantion is faster by a factor of 2.26
Output for 5.6.4
Variable Instantiation takes 0.0060877799987793 seconds Magic Instantiation takes 0.0035691261291504 seconds Magic Instantion is faster by a factor of 1.71
Output for 5.6.3
Variable Instantiation takes 0.0070450305938721 seconds Magic Instantiation takes 0.0033638477325439 seconds Magic Instantion is faster by a factor of 2.09
Output for 5.6.2
Variable Instantiation takes 0.0069799423217773 seconds Magic Instantiation takes 0.0033679008483887 seconds Magic Instantion is faster by a factor of 2.07
Output for 5.6.1
Variable Instantiation takes 0.0048329830169678 seconds Magic Instantiation takes 0.00335693359375 seconds Magic Instantion is faster by a factor of 1.44
Output for 5.6.0
Variable Instantiation takes 0.0045919418334961 seconds Magic Instantiation takes 0.0033791065216064 seconds Magic Instantion is faster by a factor of 1.36
Output for 5.5.38
Variable Instantiation takes 0.0046889781951904 seconds Magic Instantiation takes 0.0035271644592285 seconds Magic Instantion is faster by a factor of 1.33
Output for 5.5.37
Variable Instantiation takes 0.0069029331207275 seconds Magic Instantiation takes 0.0035989284515381 seconds Magic Instantion is faster by a factor of 1.92
Output for 5.5.36
Variable Instantiation takes 0.0047059059143066 seconds Magic Instantiation takes 0.0034890174865723 seconds Magic Instantion is faster by a factor of 1.35
Output for 5.5.35
Variable Instantiation takes 0.0065059661865234 seconds Magic Instantiation takes 0.0038859844207764 seconds Magic Instantion is faster by a factor of 1.67
Output for 5.5.34
Variable Instantiation takes 0.0056390762329102 seconds Magic Instantiation takes 0.0038740634918213 seconds Magic Instantion is faster by a factor of 1.46
Output for 5.5.33
Variable Instantiation takes 0.0050230026245117 seconds Magic Instantiation takes 0.0035970211029053 seconds Magic Instantion is faster by a factor of 1.4
Output for 5.5.32
Variable Instantiation takes 0.0047950744628906 seconds Magic Instantiation takes 0.0036911964416504 seconds Magic Instantion is faster by a factor of 1.3
Output for 5.5.31
Variable Instantiation takes 0.0046911239624023 seconds Magic Instantiation takes 0.0035479068756104 seconds Magic Instantion is faster by a factor of 1.32
Output for 5.5.30
Variable Instantiation takes 0.0049760341644287 seconds Magic Instantiation takes 0.0036540031433105 seconds Magic Instantion is faster by a factor of 1.36
Output for 5.5.29
Variable Instantiation takes 0.0046548843383789 seconds Magic Instantiation takes 0.0035989284515381 seconds Magic Instantion is faster by a factor of 1.29
Output for 5.5.28
Variable Instantiation takes 0.0047669410705566 seconds Magic Instantiation takes 0.0035769939422607 seconds Magic Instantion is faster by a factor of 1.33
Output for 5.5.27
Variable Instantiation takes 0.0046131610870361 seconds Magic Instantiation takes 0.0035631656646729 seconds Magic Instantion is faster by a factor of 1.29
Output for 5.5.26
Variable Instantiation takes 0.0054278373718262 seconds Magic Instantiation takes 0.003554105758667 seconds Magic Instantion is faster by a factor of 1.53
Output for 5.5.25
Variable Instantiation takes 0.0058219432830811 seconds Magic Instantiation takes 0.0036571025848389 seconds Magic Instantion is faster by a factor of 1.59
Output for 5.5.24
Variable Instantiation takes 0.0091369152069092 seconds Magic Instantiation takes 0.0036830902099609 seconds Magic Instantion is faster by a factor of 2.48
Output for 5.5.23
Variable Instantiation takes 0.007957935333252 seconds Magic Instantiation takes 0.0062041282653809 seconds Magic Instantion is faster by a factor of 1.28
Output for 5.5.22
Variable Instantiation takes 0.0077109336853027 seconds Magic Instantiation takes 0.0064599514007568 seconds Magic Instantion is faster by a factor of 1.19
Output for 5.5.21
Variable Instantiation takes 0.0051472187042236 seconds Magic Instantiation takes 0.0037999153137207 seconds Magic Instantion is faster by a factor of 1.35
Output for 5.5.20
Variable Instantiation takes 0.0081009864807129 seconds Magic Instantiation takes 0.0043249130249023 seconds Magic Instantion is faster by a factor of 1.87
Output for 5.5.19
Variable Instantiation takes 0.0079910755157471 seconds Magic Instantiation takes 0.0040159225463867 seconds Magic Instantion is faster by a factor of 1.99
Output for 5.5.18
Variable Instantiation takes 0.0061659812927246 seconds Magic Instantiation takes 0.0047109127044678 seconds Magic Instantion is faster by a factor of 1.31
Output for 5.5.17
Variable Instantiation takes 0.0056359767913818 seconds Magic Instantiation takes 0.0043230056762695 seconds Magic Instantion is faster by a factor of 1.3
Output for 5.5.16
Variable Instantiation takes 0.0072469711303711 seconds Magic Instantiation takes 0.004194974899292 seconds Magic Instantion is faster by a factor of 1.73
Output for 5.5.15
Variable Instantiation takes 0.0046238899230957 seconds Magic Instantiation takes 0.0035791397094727 seconds Magic Instantion is faster by a factor of 1.29
Output for 5.5.14
Variable Instantiation takes 0.0052618980407715 seconds Magic Instantiation takes 0.0040619373321533 seconds Magic Instantion is faster by a factor of 1.3
Output for 5.5.13
Variable Instantiation takes 0.0066390037536621 seconds Magic Instantiation takes 0.0046370029449463 seconds Magic Instantion is faster by a factor of 1.43
Output for 5.5.12
Variable Instantiation takes 0.004730224609375 seconds Magic Instantiation takes 0.0037240982055664 seconds Magic Instantion is faster by a factor of 1.27
Output for 5.5.11
Variable Instantiation takes 0.0075750350952148 seconds Magic Instantiation takes 0.0041370391845703 seconds Magic Instantion is faster by a factor of 1.83
Output for 5.5.10
Variable Instantiation takes 0.0066900253295898 seconds Magic Instantiation takes 0.0040409564971924 seconds Magic Instantion is faster by a factor of 1.66
Output for 5.5.9
Variable Instantiation takes 0.0047371387481689 seconds Magic Instantiation takes 0.0036430358886719 seconds Magic Instantion is faster by a factor of 1.3
Output for 5.5.8
Variable Instantiation takes 0.0058200359344482 seconds Magic Instantiation takes 0.0046069622039795 seconds Magic Instantion is faster by a factor of 1.26
Output for 5.5.7
Variable Instantiation takes 0.0055320262908936 seconds Magic Instantiation takes 0.0035619735717773 seconds Magic Instantion is faster by a factor of 1.55
Output for 5.5.6
Variable Instantiation takes 0.00465989112854 seconds Magic Instantiation takes 0.0035989284515381 seconds Magic Instantion is faster by a factor of 1.29
Output for 5.5.5
Variable Instantiation takes 0.0047500133514404 seconds Magic Instantiation takes 0.0036380290985107 seconds Magic Instantion is faster by a factor of 1.31
Output for 5.5.4
Variable Instantiation takes 0.005810022354126 seconds Magic Instantiation takes 0.0036721229553223 seconds Magic Instantion is faster by a factor of 1.58
Output for 5.5.3
Variable Instantiation takes 0.0064020156860352 seconds Magic Instantiation takes 0.004345178604126 seconds Magic Instantion is faster by a factor of 1.47
Output for 5.5.2
Variable Instantiation takes 0.0067498683929443 seconds Magic Instantiation takes 0.0045220851898193 seconds Magic Instantion is faster by a factor of 1.49
Output for 5.5.1
Variable Instantiation takes 0.0046858787536621 seconds Magic Instantiation takes 0.0037069320678711 seconds Magic Instantion is faster by a factor of 1.26
Output for 5.5.0
Variable Instantiation takes 0.0055100917816162 seconds Magic Instantiation takes 0.0036180019378662 seconds Magic Instantion is faster by a factor of 1.52
Output for 5.4.45
Variable Instantiation takes 0.0072019100189209 seconds Magic Instantiation takes 0.0047049522399902 seconds Magic Instantion is faster by a factor of 1.53
Output for 5.4.44
Variable Instantiation takes 0.0069208145141602 seconds Magic Instantiation takes 0.005328893661499 seconds Magic Instantion is faster by a factor of 1.3
Output for 5.4.43
Variable Instantiation takes 0.006533145904541 seconds Magic Instantiation takes 0.0036900043487549 seconds Magic Instantion is faster by a factor of 1.77
Output for 5.4.42
Variable Instantiation takes 0.007443904876709 seconds Magic Instantiation takes 0.003680944442749 seconds Magic Instantion is faster by a factor of 2.02
Output for 5.4.41
Variable Instantiation takes 0.0077850818634033 seconds Magic Instantiation takes 0.003713846206665 seconds Magic Instantion is faster by a factor of 2.1
Output for 5.4.40
Variable Instantiation takes 0.0047318935394287 seconds Magic Instantiation takes 0.0036799907684326 seconds Magic Instantion is faster by a factor of 1.29
Output for 5.4.39
Variable Instantiation takes 0.0048010349273682 seconds Magic Instantiation takes 0.0037310123443604 seconds Magic Instantion is faster by a factor of 1.29
Output for 5.4.38
Variable Instantiation takes 0.0052599906921387 seconds Magic Instantiation takes 0.0040519237518311 seconds Magic Instantion is faster by a factor of 1.3
Output for 5.4.37
Variable Instantiation takes 0.0054950714111328 seconds Magic Instantiation takes 0.0038070678710938 seconds Magic Instantion is faster by a factor of 1.44
Output for 5.4.36
Variable Instantiation takes 0.0048830509185791 seconds Magic Instantiation takes 0.0037469863891602 seconds Magic Instantion is faster by a factor of 1.3
Output for 5.4.35
Variable Instantiation takes 0.0057229995727539 seconds Magic Instantiation takes 0.003652811050415 seconds Magic Instantion is faster by a factor of 1.57
Output for 5.4.34
Variable Instantiation takes 0.0060179233551025 seconds Magic Instantiation takes 0.0036981105804443 seconds Magic Instantion is faster by a factor of 1.63
Output for 5.4.33
Variable Instantiation takes 0.0065860748291016 seconds Magic Instantiation takes 0.0038011074066162 seconds Magic Instantion is faster by a factor of 1.73
Output for 5.4.32
Variable Instantiation takes 0.0096569061279297 seconds Magic Instantiation takes 0.0041599273681641 seconds Magic Instantion is faster by a factor of 2.32
Output for 5.4.31
Variable Instantiation takes 0.0062370300292969 seconds Magic Instantiation takes 0.0040409564971924 seconds Magic Instantion is faster by a factor of 1.54
Output for 5.4.30
Variable Instantiation takes 0.0067789554595947 seconds Magic Instantiation takes 0.0037000179290771 seconds Magic Instantion is faster by a factor of 1.83
Output for 5.4.29
Variable Instantiation takes 0.0071690082550049 seconds Magic Instantiation takes 0.0041120052337646 seconds Magic Instantion is faster by a factor of 1.74
Output for 5.4.28
Variable Instantiation takes 0.0047810077667236 seconds Magic Instantiation takes 0.0036561489105225 seconds Magic Instantion is faster by a factor of 1.31
Output for 5.4.27
Variable Instantiation takes 0.0052039623260498 seconds Magic Instantiation takes 0.0036680698394775 seconds Magic Instantion is faster by a factor of 1.42
Output for 5.4.26
Variable Instantiation takes 0.0074489116668701 seconds Magic Instantiation takes 0.0051050186157227 seconds Magic Instantion is faster by a factor of 1.46
Output for 5.4.25
Variable Instantiation takes 0.0088260173797607 seconds Magic Instantiation takes 0.0036749839782715 seconds Magic Instantion is faster by a factor of 2.4
Output for 5.4.24
Variable Instantiation takes 0.0065369606018066 seconds Magic Instantiation takes 0.0051991939544678 seconds Magic Instantion is faster by a factor of 1.26
Output for 5.4.23
Variable Instantiation takes 0.0056331157684326 seconds Magic Instantiation takes 0.0044488906860352 seconds Magic Instantion is faster by a factor of 1.27
Output for 5.4.22
Variable Instantiation takes 0.0075428485870361 seconds Magic Instantiation takes 0.0037751197814941 seconds Magic Instantion is faster by a factor of 2
Output for 5.4.21
Variable Instantiation takes 0.0067191123962402 seconds Magic Instantiation takes 0.0054059028625488 seconds Magic Instantion is faster by a factor of 1.24
Output for 5.4.20
Variable Instantiation takes 0.005450963973999 seconds Magic Instantiation takes 0.0038199424743652 seconds Magic Instantion is faster by a factor of 1.43
Output for 5.4.19
Variable Instantiation takes 0.0067999362945557 seconds Magic Instantiation takes 0.0037038326263428 seconds Magic Instantion is faster by a factor of 1.84
Output for 5.4.18
Variable Instantiation takes 0.0052540302276611 seconds Magic Instantiation takes 0.0041370391845703 seconds Magic Instantion is faster by a factor of 1.27
Output for 5.4.17
Variable Instantiation takes 0.0066308975219727 seconds Magic Instantiation takes 0.0050339698791504 seconds Magic Instantion is faster by a factor of 1.32
Output for 5.4.16
Variable Instantiation takes 0.005094051361084 seconds Magic Instantiation takes 0.0038928985595703 seconds Magic Instantion is faster by a factor of 1.31
Output for 5.4.15
Variable Instantiation takes 0.0067598819732666 seconds Magic Instantiation takes 0.0037848949432373 seconds Magic Instantion is faster by a factor of 1.79
Output for 5.4.14
Variable Instantiation takes 0.0098488330841064 seconds Magic Instantiation takes 0.003713846206665 seconds Magic Instantion is faster by a factor of 2.65
Output for 5.4.13
Variable Instantiation takes 0.005803108215332 seconds Magic Instantiation takes 0.0038759708404541 seconds Magic Instantion is faster by a factor of 1.5
Output for 5.4.12
Variable Instantiation takes 0.004817008972168 seconds Magic Instantiation takes 0.003864049911499 seconds Magic Instantion is faster by a factor of 1.25
Output for 5.4.11
Variable Instantiation takes 0.0048139095306396 seconds Magic Instantiation takes 0.0037169456481934 seconds Magic Instantion is faster by a factor of 1.3
Output for 5.4.10
Variable Instantiation takes 0.0068709850311279 seconds Magic Instantiation takes 0.004993200302124 seconds Magic Instantion is faster by a factor of 1.38
Output for 5.4.9
Variable Instantiation takes 0.007133960723877 seconds Magic Instantiation takes 0.0036778450012207 seconds Magic Instantion is faster by a factor of 1.94
Output for 5.4.8
Variable Instantiation takes 0.0062899589538574 seconds Magic Instantiation takes 0.0046780109405518 seconds Magic Instantion is faster by a factor of 1.34
Output for 5.4.7
Variable Instantiation takes 0.0082800388336182 seconds Magic Instantiation takes 0.0036098957061768 seconds Magic Instantion is faster by a factor of 2.29
Output for 5.4.6
Variable Instantiation takes 0.0061948299407959 seconds Magic Instantiation takes 0.0036790370941162 seconds Magic Instantion is faster by a factor of 1.68
Output for 5.4.5
Variable Instantiation takes 0.0061600208282471 seconds Magic Instantiation takes 0.0036909580230713 seconds Magic Instantion is faster by a factor of 1.67
Output for 5.4.4
Variable Instantiation takes 0.0071229934692383 seconds Magic Instantiation takes 0.0036652088165283 seconds Magic Instantion is faster by a factor of 1.94
Output for 5.4.3
Variable Instantiation takes 0.0085649490356445 seconds Magic Instantiation takes 0.0037379264831543 seconds Magic Instantion is faster by a factor of 2.29
Output for 5.4.2
Variable Instantiation takes 0.006309986114502 seconds Magic Instantiation takes 0.0037720203399658 seconds Magic Instantion is faster by a factor of 1.67
Output for 5.4.1
Variable Instantiation takes 0.0068302154541016 seconds Magic Instantiation takes 0.0037820339202881 seconds Magic Instantion is faster by a factor of 1.81
Output for 5.4.0
Variable Instantiation takes 0.006058931350708 seconds Magic Instantiation takes 0.0042970180511475 seconds Magic Instantion is faster by a factor of 1.41
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/cH21C 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/cH21C 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/cH21C 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/cH21C 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/cH21C on line 3
Process exited with code 255.

preferences:
275.34 ms | 401 KiB | 325 Q