3v4l.org

run code in 300+ PHP versions simultaneously
<?php define('N', 1000); class Redis { public function run($n) { $a = rand($n, 2*$n); } } class A { protected $redis; function __construct() { $this->redis = new Redis(); } function getRedis() { return $this->redis; } function run() { for ($i = 0; $i < N; $i++) { $this->getRedis()->run($i); } } } class B { protected $redis; function __construct() { $this->redis = new Redis(); } function run() { for ($i = 0; $i < N; $i++) { $this->redis->run($i); } } } $time = microtime(true); $a = new A(); $a->run(); $et1 = microtime(true) - $time; print 'Execution time with *property* accessor: ' . $et1 . PHP_EOL; $time = microtime(true); $b = new B(); $b->run(); $et2 = microtime(true) - $time; print 'Execution time *without* property accessor: ' . $et2 . PHP_EOL; print 'Ratio: ' . ($et1/$et2) . PHP_EOL;
Output for 7.1.7
Execution time with *property* accessor: 0.00014901161193848 Execution time *without* property accessor: 0.00011610984802246 Ratio: 1.2833675564682
Output for 7.1.6
Execution time with *property* accessor: 0.00015091896057129 Execution time *without* property accessor: 0.00010585784912109 Ratio: 1.4256756756757
Output for 7.1.5
Execution time with *property* accessor: 0.0003209114074707 Execution time *without* property accessor: 0.00024604797363281 Ratio: 1.3042635658915
Output for 7.1.0
Execution time with *property* accessor: 0.0002291202545166 Execution time *without* property accessor: 0.00017094612121582 Ratio: 1.3403068340307
Output for 7.0.20
Execution time with *property* accessor: 0.00031399726867676 Execution time *without* property accessor: 0.00023698806762695 Ratio: 1.3249496981891
Output for 7.0.14
Execution time with *property* accessor: 0.00030088424682617 Execution time *without* property accessor: 0.00017404556274414 Ratio: 1.7287671232877
Output for 7.0.12
Execution time with *property* accessor: 0.00022006034851074 Execution time *without* property accessor: 0.00017285346984863 Ratio: 1.2731034482759
Output for 7.0.6
Execution time with *property* accessor: 0.00012111663818359 Execution time *without* property accessor: 9.2983245849609E-5 Ratio: 1.3025641025641
Output for 7.0.5
Execution time with *property* accessor: 0.00012898445129395 Execution time *without* property accessor: 0.00011014938354492 Ratio: 1.1709956709957
Output for 7.0.4
Execution time with *property* accessor: 0.00013113021850586 Execution time *without* property accessor: 9.7990036010742E-5 Ratio: 1.338199513382
Output for 7.0.3
Execution time with *property* accessor: 0.00020694732666016 Execution time *without* property accessor: 0.00015711784362793 Ratio: 1.3171471927162
Output for 7.0.2
Execution time with *property* accessor: 0.00014996528625488 Execution time *without* property accessor: 0.00012779235839844 Ratio: 1.1735074626866
Output for 7.0.1
Execution time with *property* accessor: 0.0002131462097168 Execution time *without* property accessor: 0.00018405914306641 Ratio: 1.1580310880829
Output for 7.0.0
Execution time with *property* accessor: 0.00017213821411133 Execution time *without* property accessor: 0.00013017654418945 Ratio: 1.3223443223443
Output for 5.6.28
Execution time with *property* accessor: 0.00047993659973145 Execution time *without* property accessor: 0.00039911270141602 Ratio: 1.2025089605735
Output for 5.6.21
Execution time with *property* accessor: 0.00032186508178711 Execution time *without* property accessor: 0.00025296211242676 Ratio: 1.2723845428841
Output for 5.6.20
Execution time with *property* accessor: 0.00051093101501465 Execution time *without* property accessor: 0.00040507316589355 Ratio: 1.2613301942319
Output for 5.6.19
Execution time with *property* accessor: 0.00033307075500488 Execution time *without* property accessor: 0.00026392936706543 Ratio: 1.2619692863595
Output for 5.6.18
Execution time with *property* accessor: 0.00050592422485352 Execution time *without* property accessor: 0.00041604042053223 Ratio: 1.2160458452722
Output for 5.6.17
Execution time with *property* accessor: 0.00054812431335449 Execution time *without* property accessor: 0.0004279613494873 Ratio: 1.2807799442897
Output for 5.6.16
Execution time with *property* accessor: 0.0003359317779541 Execution time *without* property accessor: 0.00028085708618164 Ratio: 1.1960950764007
Output for 5.6.15
Execution time with *property* accessor: 0.00053906440734863 Execution time *without* property accessor: 0.0004429817199707 Ratio: 1.2168998923574
Output for 5.6.14
Execution time with *property* accessor: 0.00053596496582031 Execution time *without* property accessor: 0.00041794776916504 Ratio: 1.282373074729
Output for 5.6.13
Execution time with *property* accessor: 0.00039005279541016 Execution time *without* property accessor: 0.00031113624572754 Ratio: 1.2536398467433
Output for 5.6.12
Execution time with *property* accessor: 0.00034284591674805 Execution time *without* property accessor: 0.00027084350585938 Ratio: 1.2658450704225
Output for 5.6.11
Execution time with *property* accessor: 0.00054383277893066 Execution time *without* property accessor: 0.00047588348388672 Ratio: 1.1427855711423
Output for 5.6.10
Execution time with *property* accessor: 0.00043892860412598 Execution time *without* property accessor: 0.00037503242492676 Ratio: 1.170375079466
Output for 5.6.9
Execution time with *property* accessor: 0.00052595138549805 Execution time *without* property accessor: 0.00042605400085449 Ratio: 1.2344711807499
Output for 5.6.8
Execution time with *property* accessor: 0.00053787231445312 Execution time *without* property accessor: 0.00041508674621582 Ratio: 1.295807007467
Output for 5.6.7
Execution time with *property* accessor: 0.00040197372436523 Execution time *without* property accessor: 0.0003199577331543 Ratio: 1.2563338301043
Output for 5.6.6
Execution time with *property* accessor: 0.00054812431335449 Execution time *without* property accessor: 0.00043201446533203 Ratio: 1.2687637969095
Output for 5.6.5
Execution time with *property* accessor: 0.00046896934509277 Execution time *without* property accessor: 0.00037407875061035 Ratio: 1.2536647546208
Output for 5.6.4
Execution time with *property* accessor: 0.00042200088500977 Execution time *without* property accessor: 0.00029516220092773 Ratio: 1.4297253634895
Output for 5.6.3
Execution time with *property* accessor: 0.0003509521484375 Execution time *without* property accessor: 0.00027894973754883 Ratio: 1.2581196581197
Output for 5.6.2
Execution time with *property* accessor: 0.00057005882263184 Execution time *without* property accessor: 0.0004429817199707 Ratio: 1.2868675995694
Output for 5.6.1
Execution time with *property* accessor: 0.00051498413085938 Execution time *without* property accessor: 0.00044989585876465 Ratio: 1.1446740858506
Output for 5.6.0
Execution time with *property* accessor: 0.00055503845214844 Execution time *without* property accessor: 0.00043797492980957 Ratio: 1.267283614589
Output for 5.5.35
Execution time with *property* accessor: 0.00057506561279297 Execution time *without* property accessor: 0.00050902366638184 Ratio: 1.1297423887588
Output for 5.5.34
Execution time with *property* accessor: 0.00043797492980957 Execution time *without* property accessor: 0.00034213066101074 Ratio: 1.2801393728223
Output for 5.5.33
Execution time with *property* accessor: 0.00047802925109863 Execution time *without* property accessor: 0.00037384033203125 Ratio: 1.2786989795918
Output for 5.5.32
Execution time with *property* accessor: 0.00035810470581055 Execution time *without* property accessor: 0.00028109550476074 Ratio: 1.2739609838846
Output for 5.5.31
Execution time with *property* accessor: 0.0005500316619873 Execution time *without* property accessor: 0.00047397613525391 Ratio: 1.16046277666
Output for 5.5.30
Execution time with *property* accessor: 0.00058102607727051 Execution time *without* property accessor: 0.00048995018005371 Ratio: 1.1858880778589
Output for 5.5.29
Execution time with *property* accessor: 0.000579833984375 Execution time *without* property accessor: 0.00047588348388672 Ratio: 1.2184368737475
Output for 5.5.28
Execution time with *property* accessor: 0.00055193901062012 Execution time *without* property accessor: 0.00044894218444824 Ratio: 1.2294211364843
Output for 5.5.27
Execution time with *property* accessor: 0.00058603286743164 Execution time *without* property accessor: 0.00044488906860352 Ratio: 1.3172561629153
Output for 5.5.26
Execution time with *property* accessor: 0.00057482719421387 Execution time *without* property accessor: 0.00047087669372559 Ratio: 1.2207594936709
Output for 5.5.25
Execution time with *property* accessor: 0.00055408477783203 Execution time *without* property accessor: 0.0004730224609375 Ratio: 1.1713709677419
Output for 5.5.24
Execution time with *property* accessor: 0.0004420280456543 Execution time *without* property accessor: 0.00034499168395996 Ratio: 1.2812715964064
Output for 5.5.23
Execution time with *property* accessor: 0.00044608116149902 Execution time *without* property accessor: 0.00034713745117188 Ratio: 1.2850274725275
Output for 5.5.22
Execution time with *property* accessor: 0.00048708915710449 Execution time *without* property accessor: 0.00035405158996582 Ratio: 1.3757575757576
Output for 5.5.21
Execution time with *property* accessor: 0.00062799453735352 Execution time *without* property accessor: 0.00043487548828125 Ratio: 1.4440789473684
Output for 5.5.20
Execution time with *property* accessor: 0.00054693222045898 Execution time *without* property accessor: 0.00044584274291992 Ratio: 1.2267379679144
Output for 5.5.19
Execution time with *property* accessor: 0.00054788589477539 Execution time *without* property accessor: 0.00047802925109863 Ratio: 1.1461346633416
Output for 5.5.18
Execution time with *property* accessor: 0.00054597854614258 Execution time *without* property accessor: 0.00048208236694336 Ratio: 1.1325420375865
Output for 5.5.16
Execution time with *property* accessor: 0.00036287307739258 Execution time *without* property accessor: 0.00028395652770996 Ratio: 1.2779177162049
Output for 5.5.15
Execution time with *property* accessor: 0.00054502487182617 Execution time *without* property accessor: 0.00045990943908691 Ratio: 1.1850699844479
Output for 5.5.14
Execution time with *property* accessor: 0.00057315826416016 Execution time *without* property accessor: 0.00045108795166016 Ratio: 1.2706131078224
Output for 5.5.13
Execution time with *property* accessor: 0.0005640983581543 Execution time *without* property accessor: 0.00047016143798828 Ratio: 1.1997971602434
Output for 5.5.12
Execution time with *property* accessor: 0.00051593780517578 Execution time *without* property accessor: 0.00041103363037109 Ratio: 1.2552204176334
Output for 5.5.11
Execution time with *property* accessor: 0.00056910514831543 Execution time *without* property accessor: 0.00045204162597656 Ratio: 1.2589662447257
Output for 5.5.10
Execution time with *property* accessor: 0.00035881996154785 Execution time *without* property accessor: 0.00029587745666504 Ratio: 1.2127316680097
Output for 5.5.9
Execution time with *property* accessor: 0.00040483474731445 Execution time *without* property accessor: 0.00032401084899902 Ratio: 1.2494481236203
Output for 5.5.8
Execution time with *property* accessor: 0.00042510032653809 Execution time *without* property accessor: 0.00034403800964355 Ratio: 1.2356202356202
Output for 5.5.7
Execution time with *property* accessor: 0.00040197372436523 Execution time *without* property accessor: 0.00030207633972168 Ratio: 1.3307024467245
Output for 5.5.6
Execution time with *property* accessor: 0.00052189826965332 Execution time *without* property accessor: 0.00046491622924805 Ratio: 1.1225641025641
Output for 5.5.5
Execution time with *property* accessor: 0.00044512748718262 Execution time *without* property accessor: 0.00034904479980469 Ratio: 1.2752732240437
Output for 5.5.4
Execution time with *property* accessor: 0.000579833984375 Execution time *without* property accessor: 0.00046682357788086 Ratio: 1.2420837589377
Output for 5.5.3
Execution time with *property* accessor: 0.00057792663574219 Execution time *without* property accessor: 0.00048017501831055 Ratio: 1.2035749751738
Output for 5.5.2
Execution time with *property* accessor: 0.00035691261291504 Execution time *without* property accessor: 0.00029301643371582 Ratio: 1.2180634662327
Output for 5.5.1
Execution time with *property* accessor: 0.00052499771118164 Execution time *without* property accessor: 0.00043702125549316 Ratio: 1.2013093289689
Output for 5.5.0
Execution time with *property* accessor: 0.00054597854614258 Execution time *without* property accessor: 0.00044703483581543 Ratio: 1.2213333333333
Output for 5.4.45
Execution time with *property* accessor: 0.00034093856811523 Execution time *without* property accessor: 0.00027108192443848 Ratio: 1.2576956904134
Output for 5.4.44
Execution time with *property* accessor: 0.00076699256896973 Execution time *without* property accessor: 0.00059103965759277 Ratio: 1.2977006857604
Output for 5.4.43
Execution time with *property* accessor: 0.00054097175598145 Execution time *without* property accessor: 0.00042295455932617 Ratio: 1.2790304396843
Output for 5.4.42
Execution time with *property* accessor: 0.00057601928710938 Execution time *without* property accessor: 0.00040578842163086 Ratio: 1.4195064629847
Output for 5.4.41
Execution time with *property* accessor: 0.0005340576171875 Execution time *without* property accessor: 0.00042414665222168 Ratio: 1.2591343451377
Output for 5.4.40
Execution time with *property* accessor: 0.00056290626525879 Execution time *without* property accessor: 0.00044989585876465 Ratio: 1.2511923688394
Output for 5.4.39
Execution time with *property* accessor: 0.00038409233093262 Execution time *without* property accessor: 0.00030803680419922 Ratio: 1.2469040247678
Output for 5.4.38
Execution time with *property* accessor: 0.00038790702819824 Execution time *without* property accessor: 0.00030684471130371 Ratio: 1.2641802641803
Output for 5.4.37
Execution time with *property* accessor: 0.00056195259094238 Execution time *without* property accessor: 0.00044894218444824 Ratio: 1.2517259691981
Output for 5.4.36
Execution time with *property* accessor: 0.00055980682373047 Execution time *without* property accessor: 0.00046420097351074 Ratio: 1.205957883924
Output for 5.4.35
Execution time with *property* accessor: 0.00053095817565918 Execution time *without* property accessor: 0.00042605400085449 Ratio: 1.2462227196419
Output for 5.4.34
Execution time with *property* accessor: 0.00053811073303223 Execution time *without* property accessor: 0.00044488906860352 Ratio: 1.2095391211147
Output for 5.4.32
Execution time with *property* accessor: 0.00034093856811523 Execution time *without* property accessor: 0.00027084350585938 Ratio: 1.2588028169014
Output for 5.4.31
Execution time with *property* accessor: 0.00053787231445312 Execution time *without* property accessor: 0.00042486190795898 Ratio: 1.2659932659933
Output for 5.4.30
Execution time with *property* accessor: 0.00046491622924805 Execution time *without* property accessor: 0.00037598609924316 Ratio: 1.2365250475587
Output for 5.4.29
Execution time with *property* accessor: 0.00039887428283691 Execution time *without* property accessor: 0.0003209114074707 Ratio: 1.2429420505201
Output for 5.4.28
Execution time with *property* accessor: 0.00053501129150391 Execution time *without* property accessor: 0.00042986869812012 Ratio: 1.2445923460899
Output for 5.4.27
Execution time with *property* accessor: 0.00041294097900391 Execution time *without* property accessor: 0.0003209114074707 Ratio: 1.2867756315007
Output for 5.4.26
Execution time with *property* accessor: 0.00055885314941406 Execution time *without* property accessor: 0.00042605400085449 Ratio: 1.311695579183
Output for 5.4.25
Execution time with *property* accessor: 0.00048303604125977 Execution time *without* property accessor: 0.00038599967956543 Ratio: 1.2513897467573
Output for 5.4.24
Execution time with *property* accessor: 0.00048208236694336 Execution time *without* property accessor: 0.00038814544677734 Ratio: 1.2420147420147
Output for 5.4.23
Execution time with *property* accessor: 0.00052905082702637 Execution time *without* property accessor: 0.0005040168762207 Ratio: 1.0496688741722
Output for 5.4.22
Execution time with *property* accessor: 0.00059390068054199 Execution time *without* property accessor: 0.00045108795166016 Ratio: 1.3165961945032
Output for 5.4.21
Execution time with *property* accessor: 0.0005040168762207 Execution time *without* property accessor: 0.0004429817199707 Ratio: 1.1377825618945
Output for 5.4.20
Execution time with *property* accessor: 0.00041794776916504 Execution time *without* property accessor: 0.00033092498779297 Ratio: 1.2629682997118
Output for 5.4.19
Execution time with *property* accessor: 0.00050210952758789 Execution time *without* property accessor: 0.00040388107299805 Ratio: 1.2432113341204
Output for 5.4.18
Execution time with *property* accessor: 0.00038599967956543 Execution time *without* property accessor: 0.0002748966217041 Ratio: 1.4041630529055
Output for 5.4.17
Execution time with *property* accessor: 0.00053000450134277 Execution time *without* property accessor: 0.0004429817199707 Ratio: 1.1964477933262
Output for 5.4.16
Execution time with *property* accessor: 0.00037884712219238 Execution time *without* property accessor: 0.00034093856811523 Ratio: 1.1111888111888
Output for 5.4.15
Execution time with *property* accessor: 0.00055599212646484 Execution time *without* property accessor: 0.00047492980957031 Ratio: 1.1706827309237
Output for 5.4.14
Execution time with *property* accessor: 0.00045299530029297 Execution time *without* property accessor: 0.00037503242492676 Ratio: 1.2078830260648
Output for 5.4.13
Execution time with *property* accessor: 0.00056910514831543 Execution time *without* property accessor: 0.00046491622924805 Ratio: 1.2241025641026
Output for 5.4.12
Execution time with *property* accessor: 0.00050592422485352 Execution time *without* property accessor: 0.00040602684020996 Ratio: 1.2460364063417
Output for 5.4.11
Execution time with *property* accessor: 0.00056815147399902 Execution time *without* property accessor: 0.00043702125549316 Ratio: 1.3000545553737
Output for 5.4.10
Execution time with *property* accessor: 0.00057387351989746 Execution time *without* property accessor: 0.00044393539428711 Ratio: 1.2926960257787
Output for 5.4.9
Execution time with *property* accessor: 0.00048494338989258 Execution time *without* property accessor: 0.00038480758666992 Ratio: 1.2602230483271
Output for 5.4.8
Execution time with *property* accessor: 0.00041007995605469 Execution time *without* property accessor: 0.00032496452331543 Ratio: 1.2619222303742
Output for 5.4.7
Execution time with *property* accessor: 0.0005500316619873 Execution time *without* property accessor: 0.00047588348388672 Ratio: 1.1558116232465
Output for 5.4.6
Execution time with *property* accessor: 0.00055909156799316 Execution time *without* property accessor: 0.0004420280456543 Ratio: 1.264832793959
Output for 5.4.5
Execution time with *property* accessor: 0.00055193901062012 Execution time *without* property accessor: 0.0004420280456543 Ratio: 1.2486515641855
Output for 5.4.4
Execution time with *property* accessor: 0.0003349781036377 Execution time *without* property accessor: 0.00027990341186523 Ratio: 1.1967632027257
Output for 5.4.3
Execution time with *property* accessor: 0.00051403045654297 Execution time *without* property accessor: 0.00037622451782227 Ratio: 1.3662864385298
Output for 5.4.2
Execution time with *property* accessor: 0.00056004524230957 Execution time *without* property accessor: 0.00045585632324219 Ratio: 1.2285564853556
Output for 5.4.1
Execution time with *property* accessor: 0.00049901008605957 Execution time *without* property accessor: 0.00040102005004883 Ratio: 1.2443519619501
Output for 5.4.0
Execution time with *property* accessor: 0.00035881996154785 Execution time *without* property accessor: 0.00030612945556641 Ratio: 1.1721183800623
Output for 5.3.29
Execution time with *property* accessor: 0.00088596343994141 Execution time *without* property accessor: 0.00063610076904297 Ratio: 1.3928035982009
Output for 5.3.28
Execution time with *property* accessor: 0.00059700012207031 Execution time *without* property accessor: 0.00047779083251953 Ratio: 1.249500998004
Output for 5.3.27
Execution time with *property* accessor: 0.00066685676574707 Execution time *without* property accessor: 0.00048089027404785 Ratio: 1.3867129400099
Output for 5.3.26
Execution time with *property* accessor: 0.00089406967163086 Execution time *without* property accessor: 0.00064277648925781 Ratio: 1.3909495548961
Output for 5.3.25
Execution time with *property* accessor: 0.00087785720825195 Execution time *without* property accessor: 0.0011811256408691 Ratio: 0.74323778764635
Output for 5.3.24
Execution time with *property* accessor: 0.00068306922912598 Execution time *without* property accessor: 0.00052309036254883 Ratio: 1.3058340929809
Output for 5.3.23
Execution time with *property* accessor: 0.00059604644775391 Execution time *without* property accessor: 0.00045299530029297 Ratio: 1.3157894736842
Output for 5.3.22
Execution time with *property* accessor: 0.00082707405090332 Execution time *without* property accessor: 0.0005950927734375 Ratio: 1.3898237179487
Output for 5.3.21
Execution time with *property* accessor: 0.0013411045074463 Execution time *without* property accessor: 0.00063419342041016 Ratio: 2.1146616541353
Output for 5.3.20
Execution time with *property* accessor: 0.00058984756469727 Execution time *without* property accessor: 0.00043010711669922 Ratio: 1.3713968957871
Output for 5.3.19
Execution time with *property* accessor: 0.0006718635559082 Execution time *without* property accessor: 0.00050878524780273 Ratio: 1.3205248359888
Output for 5.3.18
Execution time with *property* accessor: 0.00052690505981445 Execution time *without* property accessor: 0.00038599967956543 Ratio: 1.3650401482397
Output for 5.3.17
Execution time with *property* accessor: 0.00088214874267578 Execution time *without* property accessor: 0.00065898895263672 Ratio: 1.3386396526773
Output for 5.3.16
Execution time with *property* accessor: 0.00090599060058594 Execution time *without* property accessor: 0.00068998336791992 Ratio: 1.3130615065653
Output for 5.3.15
Execution time with *property* accessor: 0.000885009765625 Execution time *without* property accessor: 0.00057315826416016 Ratio: 1.5440931780366
Output for 5.3.14
Execution time with *property* accessor: 0.00079894065856934 Execution time *without* property accessor: 0.00061702728271484 Ratio: 1.2948222565688
Output for 5.3.13
Execution time with *property* accessor: 0.00087809562683105 Execution time *without* property accessor: 0.00064802169799805 Ratio: 1.3550404709345
Output for 5.3.12
Execution time with *property* accessor: 0.00083613395690918 Execution time *without* property accessor: 0.00060200691223145 Ratio: 1.3889108910891
Output for 5.3.11
Execution time with *property* accessor: 0.00075006484985352 Execution time *without* property accessor: 0.00054001808166504 Ratio: 1.3889624724062
Output for 5.3.10
Execution time with *property* accessor: 0.00068116188049316 Execution time *without* property accessor: 0.00049400329589844 Ratio: 1.378861003861
Output for 5.3.9
Execution time with *property* accessor: 0.000762939453125 Execution time *without* property accessor: 0.00053000450134277 Ratio: 1.4394961763383
Output for 5.3.8
Execution time with *property* accessor: 0.00063920021057129 Execution time *without* property accessor: 0.00045299530029297 Ratio: 1.4110526315789
Output for 5.3.7
Execution time with *property* accessor: 0.00061488151550293 Execution time *without* property accessor: 0.00043988227844238 Ratio: 1.3978319783198
Output for 5.3.6
Execution time with *property* accessor: 0.00089287757873535 Execution time *without* property accessor: 0.00065088272094727 Ratio: 1.3717948717949
Output for 5.3.5
Execution time with *property* accessor: 0.00080084800720215 Execution time *without* property accessor: 0.00057196617126465 Ratio: 1.4001667361401
Output for 5.3.4
Execution time with *property* accessor: 0.00089502334594727 Execution time *without* property accessor: 0.00063586235046387 Ratio: 1.4075740532433
Output for 5.3.3
Execution time with *property* accessor: 0.00084805488586426 Execution time *without* property accessor: 0.00060296058654785 Ratio: 1.4064847765915
Output for 5.3.2
Execution time with *property* accessor: 0.00053691864013672 Execution time *without* property accessor: 0.00041294097900391 Ratio: 1.3002309468822
Output for 5.3.1
Execution time with *property* accessor: 0.00054717063903809 Execution time *without* property accessor: 0.00041389465332031 Ratio: 1.3220046082949
Output for 5.3.0
Execution time with *property* accessor: 0.0009770393371582 Execution time *without* property accessor: 0.00064706802368164 Ratio: 1.5099484156227
Output for 5.2.17
Execution time with *property* accessor: 0.00088095664978027 Execution time *without* property accessor: 0.00063896179199219 Ratio: 1.3787313432836
Output for 5.2.16
Execution time with *property* accessor: 0.0009009838104248 Execution time *without* property accessor: 0.00063705444335938 Ratio: 1.4142964071856
Output for 5.2.15
Execution time with *property* accessor: 0.0012650489807129 Execution time *without* property accessor: 0.00098919868469238 Ratio: 1.2788623764763
Output for 5.2.14
Execution time with *property* accessor: 0.0013720989227295 Execution time *without* property accessor: 0.0010430812835693 Ratio: 1.3154285714286
Output for 5.2.13
Execution time with *property* accessor: 0.0011160373687744 Execution time *without* property accessor: 0.00083279609680176 Ratio: 1.3401087890066
Output for 5.2.12
Execution time with *property* accessor: 0.00082588195800781 Execution time *without* property accessor: 0.00059795379638672 Ratio: 1.3811802232855
Output for 5.2.11
Execution time with *property* accessor: 0.0012631416320801 Execution time *without* property accessor: 0.00091910362243652 Ratio: 1.3743190661479
Output for 5.2.10
Execution time with *property* accessor: 0.0012609958648682 Execution time *without* property accessor: 0.00090718269348145 Ratio: 1.3900131406045
Output for 5.2.9
Execution time with *property* accessor: 0.0010879039764404 Execution time *without* property accessor: 0.00072097778320312 Ratio: 1.5089285714286
Output for 5.2.8
Execution time with *property* accessor: 0.00076794624328613 Execution time *without* property accessor: 0.00052595138549805 Ratio: 1.4601087941976
Output for 5.2.7
Execution time with *property* accessor: 0.001366138458252 Execution time *without* property accessor: 0.0008690357208252 Ratio: 1.5720164609053
Output for 5.2.6
Execution time with *property* accessor: 0.0012388229370117 Execution time *without* property accessor: 0.00092911720275879 Ratio: 1.3333333333333
Output for 5.2.5
Execution time with *property* accessor: 0.0012481212615967 Execution time *without* property accessor: 0.00092315673828125 Ratio: 1.3520144628099
Output for 5.2.4
Execution time with *property* accessor: 0.0011270046234131 Execution time *without* property accessor: 0.00082206726074219 Ratio: 1.370939675174
Output for 5.2.3
Execution time with *property* accessor: 0.0013349056243896 Execution time *without* property accessor: 0.00099682807922363 Ratio: 1.3391533126046
Output for 5.2.2
Execution time with *property* accessor: 0.0013158321380615 Execution time *without* property accessor: 0.00080609321594238 Ratio: 1.6323572907424
Output for 5.2.1
Execution time with *property* accessor: 0.0010590553283691 Execution time *without* property accessor: 0.0007932186126709 Ratio: 1.3351367598437
Output for 5.2.0
Execution time with *property* accessor: 0.0010750293731689 Execution time *without* property accessor: 0.00076103210449219 Ratio: 1.4125939849624
Output for 5.1.6
Execution time with *property* accessor: 0.00069713592529297 Execution time *without* property accessor: 0.0005030632019043 Ratio: 1.3857819905213
Output for 5.1.5
Execution time with *property* accessor: 0.0013411045074463 Execution time *without* property accessor: 0.0010058879852295 Ratio: 1.3332543256696
Output for 5.1.4
Execution time with *property* accessor: 0.0011458396911621 Execution time *without* property accessor: 0.00083589553833008 Ratio: 1.3707929264119
Output for 5.1.3
Execution time with *property* accessor: 0.001147985458374 Execution time *without* property accessor: 0.00082302093505859 Ratio: 1.3948435689455
Output for 5.1.2
Execution time with *property* accessor: 0.0013461112976074 Execution time *without* property accessor: 0.00090217590332031 Ratio: 1.4920718816068
Output for 5.1.1
Execution time with *property* accessor: 0.0012052059173584 Execution time *without* property accessor: 0.00091314315795898 Ratio: 1.3198433420366
Output for 5.1.0
Execution time with *property* accessor: 0.0011348724365234 Execution time *without* property accessor: 0.00078415870666504 Ratio: 1.4472484037701
Output for 5.0.5
Execution time with *property* accessor: 0.0012271404266357 Execution time *without* property accessor: 0.00096607208251953 Ratio: 1.2702369200395
Output for 5.0.4
Execution time with *property* accessor: 0.0017039775848389 Execution time *without* property accessor: 0.0012500286102295 Ratio: 1.3631508678238
Output for 5.0.3
Execution time with *property* accessor: 0.001276969909668 Execution time *without* property accessor: 0.00099015235900879 Ratio: 1.289670117987
Output for 5.0.2
Execution time with *property* accessor: 0.0015380382537842 Execution time *without* property accessor: 0.0012578964233398 Ratio: 1.222706595906
Output for 5.0.1
Execution time with *property* accessor: 0.00079607963562012PHP_EOLExecution time *without* property accessor: 0.00065422058105469PHP_EOLRatio: 1.2168367346939PHP_EOL
Output for 5.0.0
Execution time with *property* accessor: 0.0010979175567627PHP_EOLExecution time *without* property accessor: 0.0010030269622803PHP_EOLRatio: 1.0946042310435PHP_EOL
Output for 4.4.2 - 4.4.9
<br /> <b>Parse error</b>: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in <b>/in/26pWJ</b> on line <b>8</b><br />
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
<br /> <b>Parse error</b>: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in <b>/in/26pWJ</b> on line <b>8</b><br />
Process exited with code 255.
Output for 4.3.2 - 4.3.4
<br /> <b>Parse error</b>: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in <b>/in/26pWJ</b> on line <b>8</b><br />
Process exited with code 255.

preferences:
172.73 ms | 401 KiB | 205 Q