3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Test { public function dynamicMethod($a) { return $a + 1; } public static function staticMethod($a) { return $a + 1; } public function __invoke($a) { return $a + 1; } } $object = new Test(); ///////////////////////// //$function = function ($a) { //return $a + 1; //}; function testFunction($a) { return $a + 1; } // env //echo phpversion(), " ", PHP_OS, PHP_EOL; // dynamic $startTime = microtime(true); for ($i = 0; $i < 100000;) { $i = $object->dynamicMethod($i); } echo "dyn: ", microtime(true) - $startTime, PHP_EOL; // dynamic call_user_func $startTime = microtime(true); for ($i = 0; $i < 100000;) { $i = call_user_func_array(array($object, 'dynamicMethod'), array($i)); } echo "call_user_func: ", microtime(true) - $startTime, PHP_EOL; // static $startTime = microtime(true); for ($i = 0; $i < 100000;) { $i = Test::staticMethod($i); } echo "static: ", microtime(true) - $startTime, PHP_EOL; // invoke $startTime = microtime(true); for ($i = 0; $i < 100000;) { $i = $object($i); } echo "invoke: ", microtime(true) - $startTime, PHP_EOL; // function $startTime = microtime(true); for ($i = 0; $i < 100000;) { $i = testFunction($i); } echo "func: ", microtime(true) - $startTime, PHP_EOL; // anonymous function //$startTime = microtime(true); //for ($i = 0; $i < 100000;) { // $i = $function($i); //} //echo "anon: ", microtime(true) - $startTime, PHP_EOL;
Output for 7.2.0
dyn: 0.0035150051116943 call_user_func: 0.018724203109741 static: 0.0029540061950684 invoke: 0.0048699378967285 func: 0.0024969577789307
Output for 7.1.7
dyn: 0.0034599304199219 call_user_func: 0.021155118942261 static: 0.0030078887939453 invoke: 0.0046231746673584 func: 0.0027899742126465
Output for 7.1.6
dyn: 0.0079457759857178 call_user_func: 0.040088176727295 static: 0.0053930282592773 invoke: 0.0077121257781982 func: 0.004702091217041
Output for 7.1.5
dyn: 0.0075390338897705 call_user_func: 0.037857055664062 static: 0.0049989223480225 invoke: 0.0073649883270264 func: 0.004249095916748
Output for 7.1.0
dyn: 0.0028479099273682 call_user_func: 0.017678022384644 static: 0.0023159980773926 invoke: 0.0034720897674561 func: 0.0021460056304932
Output for 7.0.20
dyn: 0.0037801265716553 call_user_func: 0.021420955657959 static: 0.0029470920562744 invoke: 0.0043659210205078 func: 0.0024900436401367
Output for 7.0.14
dyn: 0.0055558681488037 call_user_func: 0.035151958465576 static: 0.0043449401855469 invoke: 0.006511926651001 func: 0.0049760341644287
Output for 7.0.8
dyn: 0.0058021545410156 call_user_func: 0.02357006072998 static: 0.0035238265991211 invoke: 0.0050020217895508 func: 0.0031771659851074
Output for 7.0.7
dyn: 0.0073831081390381 call_user_func: 0.025268077850342 static: 0.0040278434753418 invoke: 0.005810022354126 func: 0.0032169818878174
Output for 7.0.6
dyn: 0.0079391002655029 call_user_func: 0.028285980224609 static: 0.0045099258422852 invoke: 0.0065629482269287 func: 0.0036931037902832
Output for 7.0.5
dyn: 0.0074701309204102 call_user_func: 0.028316020965576 static: 0.0044898986816406 invoke: 0.0066089630126953 func: 0.0036220550537109
Output for 7.0.4
dyn: 0.0084309577941895 call_user_func: 0.027125120162964 static: 0.0042920112609863 invoke: 0.0062558650970459 func: 0.0035531520843506
Output for 7.0.3
dyn: 0.0062179565429688 call_user_func: 0.026232957839966 static: 0.0043070316314697 invoke: 0.0060439109802246 func: 0.0034928321838379
Output for 7.0.2
dyn: 0.0069279670715332 call_user_func: 0.028114080429077 static: 0.0038809776306152 invoke: 0.0067641735076904 func: 0.0032920837402344
Output for 7.0.1
dyn: 0.0068929195404053 call_user_func: 0.024512052536011 static: 0.0039830207824707 invoke: 0.0052359104156494 func: 0.0026500225067139
Output for 7.0.0
dyn: 0.0052778720855713 call_user_func: 0.019066095352173 static: 0.0032069683074951 invoke: 0.0046288967132568 func: 0.0026500225067139
Output for 5.6.28
dyn: 0.016815900802612 call_user_func: 0.072107076644897 static: 0.01130485534668 invoke: 0.014216899871826 func: 0.010448932647705
Output for 5.6.23
dyn: 0.012706995010376 call_user_func: 0.062172174453735 static: 0.010234117507935 invoke: 0.018546104431152 func: 0.010556936264038
Output for 5.6.22
dyn: 0.012696981430054 call_user_func: 0.060950040817261 static: 0.0093469619750977 invoke: 0.016950130462646 func: 0.0092959403991699
Output for 5.6.21
dyn: 0.014595985412598 call_user_func: 0.066482067108154 static: 0.0094490051269531 invoke: 0.01762318611145 func: 0.0095329284667969
Output for 5.6.20
dyn: 0.016350030899048 call_user_func: 0.076879978179932 static: 0.010599136352539 invoke: 0.019340991973877 func: 0.010987997055054
Output for 5.6.19
dyn: 0.011460065841675 call_user_func: 0.055152893066406 static: 0.0095779895782471 invoke: 0.017909049987793 func: 0.0093348026275635
Output for 5.6.18
dyn: 0.016383171081543 call_user_func: 0.073693037033081 static: 0.010921955108643 invoke: 0.019680976867676 func: 0.009922981262207
Output for 5.6.17
dyn: 0.010260105133057 call_user_func: 0.054956912994385 static: 0.0090489387512207 invoke: 0.017174005508423 func: 0.0089941024780273
Output for 5.6.16
dyn: 0.015967130661011 call_user_func: 0.072708129882812 static: 0.011070013046265 invoke: 0.019496917724609 func: 0.009951114654541
Output for 5.6.15
dyn: 0.01173996925354 call_user_func: 0.05564284324646 static: 0.0090930461883545 invoke: 0.016885995864868 func: 0.0089719295501709
Output for 5.6.14
dyn: 0.016828060150146 call_user_func: 0.066575050354004 static: 0.010239124298096 invoke: 0.017538070678711 func: 0.0093328952789307
Output for 5.6.13
dyn: 0.014891147613525 call_user_func: 0.067285060882568 static: 0.010275840759277 invoke: 0.018395900726318 func: 0.0094680786132812
Output for 5.6.12
dyn: 0.012852907180786 call_user_func: 0.057685852050781 static: 0.0095698833465576 invoke: 0.017518043518066 func: 0.0094728469848633
Output for 5.6.11
dyn: 0.014163017272949 call_user_func: 0.065455198287964 static: 0.010200023651123 invoke: 0.018164873123169 func: 0.0094687938690186
Output for 5.6.10
dyn: 0.014764070510864 call_user_func: 0.06830883026123 static: 0.011677980422974 invoke: 0.017972946166992 func: 0.0091960430145264
Output for 5.6.9
dyn: 0.016334056854248 call_user_func: 0.072768926620483 static: 0.011068820953369 invoke: 0.017235040664673 func: 0.0092401504516602
Output for 5.6.8
dyn: 0.012440919876099 call_user_func: 0.061223983764648 static: 0.0098950862884521 invoke: 0.017300844192505 func: 0.0094549655914307
Output for 5.6.7
dyn: 0.010570049285889 call_user_func: 0.055781126022339 static: 0.0093460083007812 invoke: 0.017263174057007 func: 0.0093770027160645
Output for 5.6.6
dyn: 0.010767936706543 call_user_func: 0.05459189414978 static: 0.0094361305236816 invoke: 0.017812967300415 func: 0.009660005569458
Output for 5.6.5
dyn: 0.017153024673462 call_user_func: 0.077259063720703 static: 0.011218070983887 invoke: 0.020220041275024 func: 0.010367870330811
Output for 5.6.4
dyn: 0.015392065048218 call_user_func: 0.063691139221191 static: 0.0092830657958984 invoke: 0.017058849334717 func: 0.0091211795806885
Output for 5.6.3
dyn: 0.010197877883911 call_user_func: 0.054350852966309 static: 0.0090939998626709 invoke: 0.017056226730347 func: 0.0089790821075439
Output for 5.6.2
dyn: 0.016942024230957 call_user_func: 0.062942028045654 static: 0.0092859268188477 invoke: 0.017596960067749 func: 0.0094950199127197
Output for 5.6.1
dyn: 0.018079996109009 call_user_func: 0.071506977081299 static: 0.010694026947021 invoke: 0.018226146697998 func: 0.0098369121551514
Output for 5.6.0
dyn: 0.017325878143311 call_user_func: 0.078474998474121 static: 0.011494874954224 invoke: 0.020201921463013 func: 0.010351181030273
Output for 5.5.37
dyn: 0.013417959213257 call_user_func: 0.060209035873413 static: 0.0093920230865479 invoke: 0.017125129699707 func: 0.0097839832305908
Output for 5.5.36
dyn: 0.016677856445312 call_user_func: 0.073824167251587 static: 0.011030912399292 invoke: 0.019256114959717 func: 0.0099270343780518
Output for 5.5.35
dyn: 0.017827987670898 call_user_func: 0.067455053329468 static: 0.0099179744720459 invoke: 0.017977952957153 func: 0.0093979835510254
Output for 5.5.34
dyn: 0.014508962631226 call_user_func: 0.069768905639648 static: 0.010509967803955 invoke: 0.018779993057251 func: 0.0094499588012695
Output for 5.5.33
dyn: 0.013482809066772 call_user_func: 0.065831899642944 static: 0.010189056396484 invoke: 0.018008947372437 func: 0.0091338157653809
Output for 5.5.32
dyn: 0.014381885528564 call_user_func: 0.062502145767212 static: 0.0096879005432129 invoke: 0.017523050308228 func: 0.0089530944824219
Output for 5.5.31
dyn: 0.011561870574951 call_user_func: 0.056944847106934 static: 0.0092999935150146 invoke: 0.017181873321533 func: 0.0089318752288818
Output for 5.5.30
dyn: 0.01709508895874 call_user_func: 0.076655149459839 static: 0.011350870132446 invoke: 0.02100396156311 func: 0.0092959403991699
Output for 5.5.29
dyn: 0.016947984695435 call_user_func: 0.070281982421875 static: 0.010743856430054 invoke: 0.019222021102905 func: 0.0095479488372803
Output for 5.5.28
dyn: 0.01092004776001 call_user_func: 0.055913925170898 static: 0.0092620849609375 invoke: 0.017525196075439 func: 0.0088920593261719
Output for 5.5.27
dyn: 0.017964124679565 call_user_func: 0.073015928268433 static: 0.0097570419311523 invoke: 0.017774105072021 func: 0.0093629360198975
Output for 5.5.26
dyn: 0.01741099357605 call_user_func: 0.075361013412476 static: 0.011497020721436 invoke: 0.019906044006348 func: 0.010087966918945
Output for 5.5.25
dyn: 0.012977838516235 call_user_func: 0.060577869415283 static: 0.009660005569458 invoke: 0.017086982727051 func: 0.0089049339294434
Output for 5.5.24
dyn: 0.014480113983154 call_user_func: 0.065367937088013 static: 0.010034084320068 invoke: 0.021726131439209 func: 0.0088880062103271
Output for 5.5.23
dyn: 0.014223098754883 call_user_func: 0.062766075134277 static: 0.0097310543060303 invoke: 0.017677068710327 func: 0.0089771747589111
Output for 5.5.22
dyn: 0.017135143280029 call_user_func: 0.076613903045654 static: 0.01134204864502 invoke: 0.020039081573486 func: 0.010225057601929
Output for 5.5.21
dyn: 0.010567903518677 call_user_func: 0.055022954940796 static: 0.0093131065368652 invoke: 0.017243146896362 func: 0.008958101272583
Output for 5.5.20
dyn: 0.017015933990479 call_user_func: 0.070010900497437 static: 0.010492086410522 invoke: 0.019824981689453 func: 0.0095720291137695
Output for 5.5.19
dyn: 0.013154029846191 call_user_func: 0.065738916397095 static: 0.01053786277771 invoke: 0.017545938491821 func: 0.0090370178222656
Output for 5.5.18
dyn: 0.010716915130615 call_user_func: 0.05449104309082 static: 0.0093519687652588 invoke: 0.01720404624939 func: 0.0090250968933105
Output for 5.5.16
dyn: 0.017762184143066 call_user_func: 0.078142881393433 static: 0.01152491569519 invoke: 0.020367860794067 func: 0.010200977325439
Output for 5.5.15
dyn: 0.014542818069458 call_user_func: 0.067600011825562 static: 0.010473012924194 invoke: 0.018797159194946 func: 0.0093309879302979
Output for 5.5.14
dyn: 0.011827945709229 call_user_func: 0.055928945541382 static: 0.010107040405273 invoke: 0.01724100112915 func: 0.0094890594482422
Output for 5.5.13
dyn: 0.012264013290405 call_user_func: 0.063831090927124 static: 0.0098938941955566 invoke: 0.017344951629639 func: 0.0091311931610107
Output for 5.5.12
dyn: 0.016870021820068 call_user_func: 0.067291021347046 static: 0.010458946228027 invoke: 0.017086982727051 func: 0.0088870525360107
Output for 5.5.11
dyn: 0.015846014022827 call_user_func: 0.072001934051514 static: 0.010877847671509 invoke: 0.019029855728149 func: 0.0098400115966797
Output for 5.5.10
dyn: 0.01150107383728 call_user_func: 0.054983139038086 static: 0.010003089904785 invoke: 0.017444133758545 func: 0.010064125061035
Output for 5.5.9
dyn: 0.01469612121582 call_user_func: 0.066808938980103 static: 0.01121711730957 invoke: 0.020714044570923 func: 0.011096000671387
Output for 5.5.8
dyn: 0.014607906341553 call_user_func: 0.065171003341675 static: 0.0099079608917236 invoke: 0.017809867858887 func: 0.0091948509216309
Output for 5.5.7
dyn: 0.011224985122681 call_user_func: 0.05634593963623 static: 0.0094170570373535 invoke: 0.016973972320557 func: 0.0089309215545654
Output for 5.5.6
dyn: 0.014492034912109 call_user_func: 0.060174942016602 static: 0.0098309516906738 invoke: 0.017622947692871 func: 0.0090670585632324
Output for 5.5.5
dyn: 0.01228404045105 call_user_func: 0.058015108108521 static: 0.0094850063323975 invoke: 0.017454862594604 func: 0.009192943572998
Output for 5.5.4
dyn: 0.014297962188721 call_user_func: 0.067522048950195 static: 0.010293006896973 invoke: 0.018322944641113 func: 0.0096089839935303
Output for 5.5.3
dyn: 0.015743017196655 call_user_func: 0.063074111938477 static: 0.010351896286011 invoke: 0.017673015594482 func: 0.0096149444580078
Output for 5.5.2
dyn: 0.01507306098938 call_user_func: 0.065474987030029 static: 0.0094919204711914 invoke: 0.01745080947876 func: 0.0093948841094971
Output for 5.5.1
dyn: 0.015971899032593 call_user_func: 0.069520950317383 static: 0.0098650455474854 invoke: 0.018041849136353 func: 0.0097339153289795
Output for 5.5.0
dyn: 0.010616064071655 call_user_func: 0.054967880249023 static: 0.0093259811401367 invoke: 0.017443180084229 func: 0.0091750621795654
Output for 5.4.45
dyn: 0.014444828033447 call_user_func: 0.067246913909912 static: 0.0098679065704346 invoke: 0.018448829650879 func: 0.0094060897827148
Output for 5.4.44
dyn: 0.016086101531982 call_user_func: 0.066725015640259 static: 0.009894847869873 invoke: 0.017277002334595 func: 0.0090949535369873
Output for 5.4.43
dyn: 0.016103982925415 call_user_func: 0.065205097198486 static: 0.0097630023956299 invoke: 0.017177104949951 func: 0.0091619491577148
Output for 5.4.42
dyn: 0.014413118362427 call_user_func: 0.065932035446167 static: 0.0098381042480469 invoke: 0.018218994140625 func: 0.0090510845184326
Output for 5.4.41
dyn: 0.015017032623291 call_user_func: 0.07136082649231 static: 0.010467052459717 invoke: 0.019163131713867 func: 0.009350061416626
Output for 5.4.40
dyn: 0.015996932983398 call_user_func: 0.074447870254517 static: 0.010782957077026 invoke: 0.019617080688477 func: 0.0097129344940186
Output for 5.4.39
dyn: 0.014630079269409 call_user_func: 0.067649126052856 static: 0.010991096496582 invoke: 0.020196914672852 func: 0.011087894439697
Output for 5.4.38
dyn: 0.01672887802124 call_user_func: 0.074322938919067 static: 0.010339975357056 invoke: 0.018395185470581 func: 0.0094549655914307
Output for 5.4.37
dyn: 0.017011880874634 call_user_func: 0.073277950286865 static: 0.010434865951538 invoke: 0.019717931747437 func: 0.0095319747924805
Output for 5.4.36
dyn: 0.01728892326355 call_user_func: 0.073901891708374 static: 0.010815143585205 invoke: 0.019796133041382 func: 0.010545969009399
Output for 5.4.35
dyn: 0.013783931732178 call_user_func: 0.059314012527466 static: 0.0090198516845703 invoke: 0.01689887046814 func: 0.0087130069732666
Output for 5.4.34
dyn: 0.017385005950928 call_user_func: 0.073464870452881 static: 0.011924982070923 invoke: 0.02015495300293 func: 0.009943962097168
Output for 5.4.32
dyn: 0.015365839004517 call_user_func: 0.062819957733154 static: 0.0091621875762939 invoke: 0.016885995864868 func: 0.00888991355896
Output for 5.4.31
dyn: 0.014304876327515 call_user_func: 0.060317039489746 static: 0.0093278884887695 invoke: 0.017422914505005 func: 0.0088050365447998
Output for 5.4.30
dyn: 0.011184930801392 call_user_func: 0.060519933700562 static: 0.009227991104126 invoke: 0.017163038253784 func: 0.0087890625
Output for 5.4.29
dyn: 0.015971899032593 call_user_func: 0.06795597076416 static: 0.0098938941955566 invoke: 0.017292976379395 func: 0.009026050567627
Output for 5.4.28
dyn: 0.011240005493164 call_user_func: 0.056676149368286 static: 0.0091290473937988 invoke: 0.016903162002563 func: 0.0086879730224609
Output for 5.4.27
dyn: 0.015872001647949 call_user_func: 0.074886083602905 static: 0.011106967926025 invoke: 0.019803047180176 func: 0.0097839832305908
Output for 5.4.26
dyn: 0.015527963638306 call_user_func: 0.063313007354736 static: 0.0097029209136963 invoke: 0.017236232757568 func: 0.009058952331543
Output for 5.4.25
dyn: 0.017112016677856 call_user_func: 0.072754144668579 static: 0.011496067047119 invoke: 0.019973993301392 func: 0.010303020477295
Output for 5.4.24
dyn: 0.015204191207886 call_user_func: 0.068969011306763 static: 0.0099990367889404 invoke: 0.019098997116089 func: 0.010282039642334
Output for 5.4.23
dyn: 0.015179872512817 call_user_func: 0.075579881668091 static: 0.010354042053223 invoke: 0.019913911819458 func: 0.011409997940063
Output for 5.4.22
dyn: 0.015450954437256 call_user_func: 0.073057174682617 static: 0.010709047317505 invoke: 0.018956899642944 func: 0.008807897567749
Output for 5.4.21
dyn: 0.013550043106079 call_user_func: 0.059991836547852 static: 0.0091209411621094 invoke: 0.016870975494385 func: 0.0089020729064941
Output for 5.4.20
dyn: 0.013236999511719 call_user_func: 0.05531120300293 static: 0.0092520713806152 invoke: 0.017119169235229 func: 0.0090451240539551
Output for 5.4.19
dyn: 0.011770009994507 call_user_func: 0.059639930725098 static: 0.009213924407959 invoke: 0.016939878463745 func: 0.0088210105895996
Output for 5.4.18
dyn: 0.0099520683288574 call_user_func: 0.053821086883545 static: 0.0089900493621826 invoke: 0.016889095306396 func: 0.0088870525360107
Output for 5.4.17
dyn: 0.013473033905029 call_user_func: 0.064825057983398 static: 0.0089161396026611 invoke: 0.017457962036133 func: 0.0087640285491943
Output for 5.4.16
dyn: 0.010193824768066 call_user_func: 0.054144144058228 static: 0.0097129344940186 invoke: 0.016815900802612 func: 0.008709192276001
Output for 5.4.15
dyn: 0.016146898269653 call_user_func: 0.075069904327393 static: 0.011168003082275 invoke: 0.019796848297119 func: 0.0098989009857178
Output for 5.4.14
dyn: 0.015376091003418 call_user_func: 0.063883066177368 static: 0.0094249248504639 invoke: 0.018272876739502 func: 0.0089740753173828
Output for 5.4.13
dyn: 0.01052188873291 call_user_func: 0.05444598197937 static: 0.0089139938354492 invoke: 0.016917943954468 func: 0.0086419582366943
Output for 5.4.12
dyn: 0.015874147415161 call_user_func: 0.06383204460144 static: 0.0096240043640137 invoke: 0.016822099685669 func: 0.0090820789337158
Output for 5.4.11
dyn: 0.012782096862793 call_user_func: 0.060784101486206 static: 0.0098679065704346 invoke: 0.017764091491699 func: 0.0091509819030762
Output for 5.4.10
dyn: 0.014378070831299 call_user_func: 0.060807943344116 static: 0.0091910362243652 invoke: 0.016520977020264 func: 0.0087430477142334
Output for 5.4.9
dyn: 0.011924982070923 call_user_func: 0.058908939361572 static: 0.0093250274658203 invoke: 0.017258882522583 func: 0.0093450546264648
Output for 5.4.8
dyn: 0.015115022659302 call_user_func: 0.072921991348267 static: 0.011170864105225 invoke: 0.021114110946655 func: 0.012135982513428
Output for 5.4.7
dyn: 0.010581970214844 call_user_func: 0.056257963180542 static: 0.0088651180267334 invoke: 0.017129182815552 func: 0.0088992118835449
Output for 5.4.6
dyn: 0.0098581314086914 call_user_func: 0.056088924407959 static: 0.0092589855194092 invoke: 0.016894102096558 func: 0.0091328620910645
Output for 5.4.5
dyn: 0.012757062911987 call_user_func: 0.055458068847656 static: 0.0088939666748047 invoke: 0.016451835632324 func: 0.0083990097045898
Output for 5.4.4
dyn: 0.0092751979827881 call_user_func: 0.051708936691284 static: 0.0089409351348877 invoke: 0.01651406288147 func: 0.0093400478363037
Output for 5.4.3
dyn: 0.0099539756774902 call_user_func: 0.05382513999939 static: 0.0090019702911377 invoke: 0.016776084899902 func: 0.0087149143218994
Output for 5.4.2
dyn: 0.011132001876831 call_user_func: 0.059483051300049 static: 0.0097270011901855 invoke: 0.018262147903442 func: 0.0096402168273926
Output for 5.4.1
dyn: 0.013099193572998 call_user_func: 0.063749074935913 static: 0.0094788074493408 invoke: 0.017462968826294 func: 0.0087511539459229
Output for 5.4.0
dyn: 0.01007604598999 call_user_func: 0.05299711227417 static: 0.0083880424499512 invoke: 0.016041040420532 func: 0.0090208053588867
Output for 5.3.29
dyn: 0.028208017349243 call_user_func: 0.060659885406494 static: 0.023408889770508 invoke: 0.017996072769165 func: 0.015551090240479
Output for 5.3.28
dyn: 0.032379150390625 call_user_func: 0.07818603515625 static: 0.024057865142822 invoke: 0.01844596862793 func: 0.015745878219604
Output for 5.3.27
dyn: 0.027941942214966 call_user_func: 0.06837797164917 static: 0.023201942443848 invoke: 0.01819109916687 func: 0.015753984451294
Output for 5.3.26
dyn: 0.030868053436279 call_user_func: 0.062686920166016 static: 0.022720813751221 invoke: 0.018819093704224 func: 0.015921831130981
Output for 5.3.25
dyn: 0.026417016983032 call_user_func: 0.060750007629395 static: 0.022603988647461 invoke: 0.019022226333618 func: 0.015859842300415
Output for 5.3.24
dyn: 0.020928859710693 call_user_func: 0.058629035949707 static: 0.022820949554443 invoke: 0.018621921539307 func: 0.016587972640991
Output for 5.3.23
dyn: 0.02138090133667 call_user_func: 0.058459997177124 static: 0.023206949234009 invoke: 0.018638134002686 func: 0.016213178634644
Output for 5.3.22
dyn: 0.033787965774536 call_user_func: 0.080399036407471 static: 0.026254177093506 invoke: 0.020255088806152 func: 0.016951084136963
Output for 5.3.21
dyn: 0.020771026611328 call_user_func: 0.060930013656616 static: 0.022671937942505 invoke: 0.018791913986206 func: 0.016385078430176
Output for 5.3.20
dyn: 0.028325080871582 call_user_func: 0.067435026168823 static: 0.023660182952881 invoke: 0.018557071685791 func: 0.016318082809448
Output for 5.3.19
dyn: 0.020528793334961 call_user_func: 0.057997941970825 static: 0.022560834884644 invoke: 0.018540859222412 func: 0.016343832015991
Output for 5.3.18
dyn: 0.027704000473022 call_user_func: 0.062142133712769 static: 0.023072004318237 invoke: 0.019464015960693 func: 0.017032861709595
Output for 5.3.17
dyn: 0.020318031311035 call_user_func: 0.058417081832886 static: 0.022812128067017 invoke: 0.018304109573364 func: 0.015892028808594
Output for 5.3.16
dyn: 0.020846128463745 call_user_func: 0.059931039810181 static: 0.023089170455933 invoke: 0.019045829772949 func: 0.015995979309082
Output for 5.3.15
dyn: 0.025245189666748 call_user_func: 0.071269035339355 static: 0.026141166687012 invoke: 0.021287202835083 func: 0.019237995147705
Output for 5.3.14
dyn: 0.021233081817627 call_user_func: 0.059185981750488 static: 0.023257970809937 invoke: 0.018810033798218 func: 0.016480922698975
Output for 5.3.13
dyn: 0.027434110641479 call_user_func: 0.066664934158325 static: 0.023478984832764 invoke: 0.018626928329468 func: 0.01623010635376
Output for 5.3.12
dyn: 0.049852848052979 call_user_func: 0.1100869178772 static: 0.037353038787842 invoke: 0.029648065567017 func: 0.025872945785522
Output for 5.3.11
dyn: 0.020039081573486 call_user_func: 0.05424690246582 static: 0.021971940994263 invoke: 0.016917943954468 func: 0.014940977096558
Output for 5.3.10
dyn: 0.028568983078003 call_user_func: 0.067456960678101 static: 0.023255109786987 invoke: 0.018101930618286 func: 0.016571044921875
Output for 5.3.9
dyn: 0.028684854507446 call_user_func: 0.060688972473145 static: 0.023004055023193 invoke: 0.018432855606079 func: 0.016065835952759
Output for 5.3.8
dyn: 0.027100086212158 call_user_func: 0.060992002487183 static: 0.023776054382324 invoke: 0.018234014511108 func: 0.015916109085083
Output for 5.3.7
dyn: 0.018545150756836 call_user_func: 0.052191972732544 static: 0.02054500579834 invoke: 0.016066074371338 func: 0.013947010040283
Output for 5.3.6
dyn: 0.020925998687744 call_user_func: 0.057715177536011 static: 0.023283004760742 invoke: 0.019068002700806 func: 0.016277074813843
Output for 5.3.5
dyn: 0.024874925613403 call_user_func: 0.073191165924072 static: 0.025537967681885 invoke: 0.01967191696167 func: 0.016210079193115
Output for 5.3.4
dyn: 0.01795220375061 call_user_func: 0.051359891891479 static: 0.020729064941406 invoke: 0.016857862472534 func: 0.013813018798828
Output for 5.3.3
dyn: 0.020689010620117 call_user_func: 0.058396100997925 static: 0.02324104309082 invoke: 0.018737077713013 func: 0.016288995742798
Output for 5.3.2
dyn: 0.016870021820068 call_user_func: 0.047554016113281 static: 0.019140958786011 invoke: 0.015056133270264 func: 0.013235092163086
Output for 5.3.1
dyn: 0.027260065078735 call_user_func: 0.062730073928833 static: 0.023124933242798 invoke: 0.018967866897583 func: 0.016366958618164
Output for 5.3.0
dyn: 0.026606798171997 call_user_func: 0.07046914100647 static: 0.023575067520142 invoke: 0.018748998641968 func: 0.015920877456665
Output for 5.2.17
dyn: 0.02551007270813 call_user_func: 0.072165012359619 static: 0.027714014053345 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.16
dyn: 0.021059036254883 call_user_func: 0.06126594543457 static: 0.023439884185791 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.15
dyn: 0.029054880142212 call_user_func: 0.07532811164856 static: 0.028156995773315 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.14
dyn: 0.021292209625244 call_user_func: 0.06086802482605 static: 0.023419141769409 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.13
dyn: 0.025794982910156 call_user_func: 0.07533597946167 static: 0.028247833251953 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.12
dyn: 0.036037921905518 call_user_func: 0.081245899200439 static: 0.02853798866272 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.11
dyn: 0.045860052108765 call_user_func: 0.088572025299072 static: 0.02892804145813 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.10
dyn: 0.035585165023804 call_user_func: 0.087553024291992 static: 0.030460834503174 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.9
dyn: 0.04214882850647 call_user_func: 0.081302881240845 static: 0.026431083679199 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.8
dyn: 0.042284965515137 call_user_func: 0.08281397819519 static: 0.026664972305298 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.7
dyn: 0.040195941925049 call_user_func: 0.092406988143921 static: 0.02852201461792 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.6
dyn: 0.032380104064941 call_user_func: 0.079530000686646 static: 0.026952981948853 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.5
dyn: 0.033228158950806 call_user_func: 0.086361885070801 static: 0.026340961456299 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.4
dyn: 0.027225971221924 call_user_func: 0.085469961166382 static: 0.026256084442139 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.3
dyn: 0.028022050857544 call_user_func: 0.093994140625 static: 0.028493165969849 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.2
dyn: 0.039856910705566 call_user_func: 0.10529899597168 static: 0.027312040328979 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.1
dyn: 0.033915042877197 call_user_func: 0.08804988861084 static: 0.026157140731812 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.2.0
dyn: 0.039780855178833 call_user_func: 0.10295009613037 static: 0.027154922485352 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.1.6
dyn: 0.043035984039307 call_user_func: 0.0934739112854 static: 0.0280921459198 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.1.5
dyn: 0.02764105796814 call_user_func: 0.070112943649292 static: 0.025604009628296 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.1.4
dyn: 0.042609930038452 call_user_func: 0.094533920288086 static: 0.029090166091919 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.1.3
dyn: 0.045161008834839 call_user_func: 0.095445156097412 static: 0.02971076965332 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.1.2
dyn: 0.038336038589478 call_user_func: 0.071673154830933 static: 0.027133941650391 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.1.1
dyn: 0.025103092193604 call_user_func: 0.069108963012695 static: 0.025392055511475 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.1.0
Fatal error: fatal flex scanner internal error--end of buffer missed in /in/VNPZ8 on line 65
Process exited with code 255.
Output for 5.0.5
dyn: 0.063477993011475 call_user_func: 0.11045789718628 static: 0.038753986358643 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.0.4
dyn: 0.064584016799927 call_user_func: 0.10959315299988 static: 0.038658857345581 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.0.3
dyn: 0.065640211105347 call_user_func: 0.12303614616394 static: 0.040186882019043 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.0.2
dyn: 0.060918092727661 call_user_func: 0.10651707649231 static: 0.037163972854614 Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.0.1
dyn: 0.05780291557312 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/VNPZ8 on line 30 PHP_EOLcall_user_func: 0.11503791809082 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/VNPZ8 on line 37 PHP_EOLstatic: 0.039099931716919 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/VNPZ8 on line 44 PHP_EOL Fatal error: Function name must be a string in /in/VNPZ8 on line 49
Process exited with code 255.
Output for 5.0.0
dyn: 0.069473028182983 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/VNPZ8 on line 30 PHP_EOLcall_user_func: 0.12318301200867 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/VNPZ8 on line 37 PHP_EOLstatic: 0.044440031051636 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/VNPZ8 on line 44 PHP_EOL Fatal error: Function name must be a string in /in/VNPZ8 on line 49
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/VNPZ8 on line 5
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/VNPZ8 on line 5
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/VNPZ8 on line 5
Process exited with code 255.

preferences:
130.24 ms | 401 KiB | 211 Q