3v4l.org

run code in 300+ PHP versions simultaneously
<?php // run the callback a lot, return average run time in ms function clock(\Closure $callback, $iterations = 100000) { $begin = microtime(true); for ($i = 0; $i < $iterations; $i++) { $callback(); } $end = microtime(true) - $begin; return ($end / $iterations)*1000; } // nicely show me how long the name ran, and percent increase/decrease over last function report($name, $time) { static $last = null; printf("%-12s: %.8fms", $name, $time); if (null !== $last) { printf(", %.1f%%", (($time - $last)/$last)*100); } echo PHP_EOL; $last = $time; } // fixtures $a = str_repeat('a', 2<<8); class Os { public static function strcmp($a) { strcmp($a, $a); } } class Om { public function strcmp($a) { strcmp($a, $a); } } // do it report('direct call', clock(function () use ($a) { strcmp($a, $a); })); report('static call', clock(function () use ($a) { Os::strcmp($a); })); report('object call', clock(function () use ($a) { $o = new Om(); $o->strcmp($a); })); report('voodoo call', clock(function () use ($a) { $o = unserialize('O:2:"Om":0:{}'); $o->strcmp($a); }));
Output for 7.4.6
direct call : 0.00010634ms static call : 0.00015860ms, 49.1% object call : 0.00029833ms, 88.1% voodoo call : 0.00104517ms, 250.3%
Output for 7.4.5
direct call : 0.00017836ms static call : 0.00011483ms, -35.6% object call : 0.00017647ms, 53.7% voodoo call : 0.00110808ms, 527.9%
Output for 7.4.4
direct call : 0.00006782ms static call : 0.00009343ms, 37.8% object call : 0.00022516ms, 141.0% voodoo call : 0.00104341ms, 363.4%
Output for 7.4.3
direct call : 0.00012557ms static call : 0.00010275ms, -18.2% object call : 0.00031498ms, 206.5% voodoo call : 0.00105956ms, 236.4%
Output for 7.4.2
direct call : 0.00006750ms static call : 0.00018147ms, 168.9% object call : 0.00024665ms, 35.9% voodoo call : 0.00086580ms, 251.0%
Output for 7.4.1
direct call : 0.00013522ms static call : 0.00008689ms, -35.7% object call : 0.00037271ms, 328.9% voodoo call : 0.00121123ms, 225.0%
Output for 7.4.0
direct call : 0.00013319ms static call : 0.00022998ms, 72.7% object call : 0.00038074ms, 65.6% voodoo call : 0.00110287ms, 189.7%
Output for 7.3.18
direct call : 0.00013464ms static call : 0.00015132ms, 12.4% object call : 0.00023341ms, 54.2% voodoo call : 0.00064652ms, 177.0%
Output for 7.3.17
direct call : 0.00016539ms static call : 0.00023138ms, 39.9% object call : 0.00035830ms, 54.9% voodoo call : 0.00110389ms, 208.1%
Output for 7.3.16
direct call : 0.00006601ms static call : 0.00011391ms, 72.6% object call : 0.00019789ms, 73.7% voodoo call : 0.00082126ms, 315.0%
Output for 7.3.15
direct call : 0.00014331ms static call : 0.00010400ms, -27.4% object call : 0.00030987ms, 198.0% voodoo call : 0.00178337ms, 475.5%
Output for 7.3.14
direct call : 0.00013353ms static call : 0.00017721ms, 32.7% object call : 0.00028959ms, 63.4% voodoo call : 0.00121600ms, 319.9%
Output for 7.3.13
direct call : 0.00009847ms static call : 0.00015592ms, 58.3% object call : 0.00035144ms, 125.4% voodoo call : 0.00083789ms, 138.4%
Output for 7.3.12
direct call : 0.00022483ms static call : 0.00029507ms, 31.2% object call : 0.00064743ms, 119.4% voodoo call : 0.00110525ms, 70.7%
Output for 7.3.11
direct call : 0.00020299ms static call : 0.00012717ms, -37.4% object call : 0.00022869ms, 79.8% voodoo call : 0.00104339ms, 356.2%
Output for 7.3.10
direct call : 0.00007549ms static call : 0.00009636ms, 27.6% object call : 0.00030371ms, 215.2% voodoo call : 0.00098176ms, 223.3%
Output for 7.3.9
direct call : 0.00023275ms static call : 0.00015729ms, -32.4% object call : 0.00032139ms, 104.3% voodoo call : 0.00125653ms, 291.0%
Output for 7.3.8
direct call : 0.00020163ms static call : 0.00015650ms, -22.4% object call : 0.00023491ms, 50.1% voodoo call : 0.00059779ms, 154.5%
Output for 7.3.7
direct call : 0.00018254ms static call : 0.00019278ms, 5.6% object call : 0.00033663ms, 74.6% voodoo call : 0.00114133ms, 239.0%
Output for 7.3.6
direct call : 0.00010635ms static call : 0.00012821ms, 20.6% object call : 0.00016398ms, 27.9% voodoo call : 0.00062246ms, 279.6%
Output for 7.3.5
direct call : 0.00013342ms static call : 0.00019589ms, 46.8% object call : 0.00028911ms, 47.6% voodoo call : 0.00126748ms, 338.4%
Output for 7.3.4
direct call : 0.00007289ms static call : 0.00009091ms, 24.7% object call : 0.00019796ms, 117.8% voodoo call : 0.00067324ms, 240.1%
Output for 7.3.3
direct call : 0.00014931ms static call : 0.00018860ms, 26.3% object call : 0.00031191ms, 65.4% voodoo call : 0.00113562ms, 264.1%
Output for 7.3.2
direct call : 0.00014271ms static call : 0.00025388ms, 77.9% object call : 0.00033974ms, 33.8% voodoo call : 0.00098239ms, 189.2%
Output for 7.3.1
direct call : 0.00013528ms static call : 0.00028852ms, 113.3% object call : 0.00020296ms, -29.7% voodoo call : 0.00128062ms, 531.0%
Output for 7.3.0
direct call : 0.00007984ms static call : 0.00009603ms, 20.3% object call : 0.00015724ms, 63.7% voodoo call : 0.00059309ms, 277.2%
Output for 7.2.31
direct call : 0.00017738ms static call : 0.00017136ms, -3.4% object call : 0.00017789ms, 3.8% voodoo call : 0.00065914ms, 270.5%
Output for 7.2.30
direct call : 0.00020285ms static call : 0.00040188ms, 98.1% object call : 0.00045307ms, 12.7% voodoo call : 0.00158450ms, 249.7%
Output for 7.2.29
direct call : 0.00017428ms static call : 0.00020815ms, 19.4% object call : 0.00037837ms, 81.8% voodoo call : 0.00138150ms, 265.1%
Output for 7.2.28
direct call : 0.00017171ms static call : 0.00022611ms, 31.7% object call : 0.00023261ms, 2.9% voodoo call : 0.00163765ms, 604.0%
Output for 7.2.27
direct call : 0.00025374ms static call : 0.00031888ms, 25.7% object call : 0.00031846ms, -0.1% voodoo call : 0.00101537ms, 218.8%
Output for 7.2.26
direct call : 0.00008149ms static call : 0.00024203ms, 197.0% object call : 0.00022672ms, -6.3% voodoo call : 0.00088449ms, 290.1%
Output for 7.2.25
direct call : 0.00013202ms static call : 0.00012539ms, -5.0% object call : 0.00019106ms, 52.4% voodoo call : 0.00075437ms, 294.8%
Output for 7.2.24
direct call : 0.00021994ms static call : 0.00038303ms, 74.2% object call : 0.00032769ms, -14.4% voodoo call : 0.00141836ms, 332.8%
Output for 7.2.23
direct call : 0.00031569ms static call : 0.00037291ms, 18.1% object call : 0.00033005ms, -11.5% voodoo call : 0.00125464ms, 280.1%
Output for 7.2.22
direct call : 0.00010129ms static call : 0.00028145ms, 177.9% object call : 0.00041977ms, 49.1% voodoo call : 0.00112242ms, 167.4%
Output for 7.2.21
direct call : 0.00014948ms static call : 0.00022576ms, 51.0% object call : 0.00052548ms, 132.8% voodoo call : 0.00138799ms, 164.1%
Output for 7.2.20
direct call : 0.00028052ms static call : 0.00019619ms, -30.1% object call : 0.00030008ms, 53.0% voodoo call : 0.00065932ms, 119.7%
Output for 7.2.19
direct call : 0.00018833ms static call : 0.00011464ms, -39.1% object call : 0.00018214ms, 58.9% voodoo call : 0.00067411ms, 270.1%
Output for 7.2.18
direct call : 0.00019723ms static call : 0.00012227ms, -38.0% object call : 0.00020421ms, 67.0% voodoo call : 0.00066324ms, 224.8%
Output for 7.2.17
direct call : 0.00023363ms static call : 0.00018783ms, -19.6% object call : 0.00028176ms, 50.0% voodoo call : 0.00117194ms, 315.9%
Output for 7.2.16
direct call : 0.00016134ms static call : 0.00020486ms, 27.0% object call : 0.00032750ms, 59.9% voodoo call : 0.00141246ms, 331.3%
Output for 7.2.15
direct call : 0.00019410ms static call : 0.00025273ms, 30.2% object call : 0.00033623ms, 33.0% voodoo call : 0.00143252ms, 326.1%
Output for 7.2.14
direct call : 0.00012980ms static call : 0.00026056ms, 100.7% object call : 0.00038532ms, 47.9% voodoo call : 0.00141347ms, 266.8%
Output for 7.2.13
direct call : 0.00018746ms static call : 0.00027915ms, 48.9% object call : 0.00044188ms, 58.3% voodoo call : 0.00158022ms, 257.6%
Output for 7.2.12
direct call : 0.00013199ms static call : 0.00023105ms, 75.1% object call : 0.00027597ms, 19.4% voodoo call : 0.00170906ms, 519.3%
Output for 7.2.11
direct call : 0.00046998ms static call : 0.00059035ms, 25.6% object call : 0.00076505ms, 29.6% voodoo call : 0.00198709ms, 159.7%
Output for 7.2.10
direct call : 0.00008715ms static call : 0.00013334ms, 53.0% object call : 0.00042349ms, 217.6% voodoo call : 0.00232271ms, 448.5%
Output for 7.2.9
direct call : 0.00020811ms static call : 0.00038692ms, 85.9% object call : 0.00095820ms, 147.6% voodoo call : 0.00198994ms, 107.7%
Output for 7.2.8
direct call : 0.00026394ms static call : 0.00023046ms, -12.7% object call : 0.00043515ms, 88.8% voodoo call : 0.00142515ms, 227.5%
Output for 7.2.7
direct call : 0.00017018ms static call : 0.00022691ms, 33.3% object call : 0.00035462ms, 56.3% voodoo call : 0.00133315ms, 275.9%
Output for 7.2.6
direct call : 0.00019259ms static call : 0.00034297ms, 78.1% object call : 0.00063324ms, 84.6% voodoo call : 0.00135212ms, 113.5%
Output for 7.2.5
direct call : 0.00015663ms static call : 0.00029505ms, 88.4% object call : 0.00032885ms, 11.5% voodoo call : 0.00095746ms, 191.2%
Output for 7.2.4
direct call : 0.00019389ms static call : 0.00018154ms, -6.4% object call : 0.00019463ms, 7.2% voodoo call : 0.00096729ms, 397.0%
Output for 7.2.3
direct call : 0.00018204ms static call : 0.00028815ms, 58.3% object call : 0.00044188ms, 53.4% voodoo call : 0.00165375ms, 274.3%
Output for 7.2.2
direct call : 0.00021354ms static call : 0.00013850ms, -35.1% object call : 0.00041254ms, 197.9% voodoo call : 0.00143131ms, 247.0%
Output for 7.2.1
direct call : 0.00014662ms static call : 0.00020568ms, 40.3% object call : 0.00031191ms, 51.6% voodoo call : 0.00134933ms, 332.6%
Output for 7.2.0
direct call : 0.00015600ms static call : 0.00021291ms, 36.5% object call : 0.00042440ms, 99.3% voodoo call : 0.00146254ms, 244.6%
Output for 7.1.33
direct call : 0.00016801ms static call : 0.00019688ms, 17.2% object call : 0.00033253ms, 68.9% voodoo call : 0.00167024ms, 402.3%
Output for 7.1.32
direct call : 0.00026309ms static call : 0.00022417ms, -14.8% object call : 0.00052970ms, 136.3% voodoo call : 0.00100442ms, 89.6%
Output for 7.1.31
direct call : 0.00031669ms static call : 0.00023611ms, -25.4% object call : 0.00025245ms, 6.9% voodoo call : 0.00145674ms, 477.0%
Output for 7.1.30
direct call : 0.00029687ms static call : 0.00025343ms, -14.6% object call : 0.00040946ms, 61.6% voodoo call : 0.00103944ms, 153.9%
Output for 7.1.29
direct call : 0.00021495ms static call : 0.00029133ms, 35.5% object call : 0.00064135ms, 120.1% voodoo call : 0.00197404ms, 207.8%
Output for 7.1.28
direct call : 0.00014863ms static call : 0.00019432ms, 30.7% object call : 0.00028301ms, 45.6% voodoo call : 0.00102811ms, 263.3%
Output for 7.1.27
direct call : 0.00019567ms static call : 0.00022117ms, 13.0% object call : 0.00031906ms, 44.3% voodoo call : 0.00104665ms, 228.0%
Output for 7.1.26
direct call : 0.00025220ms static call : 0.00032537ms, 29.0% object call : 0.00053191ms, 63.5% voodoo call : 0.00174659ms, 228.4%
Output for 7.1.25
direct call : 0.00019311ms static call : 0.00038652ms, 100.2% object call : 0.00050904ms, 31.7% voodoo call : 0.00180156ms, 253.9%
Output for 7.1.24
direct call : 0.00053148ms static call : 0.00043818ms, -17.6% object call : 0.00134339ms, 206.6% voodoo call : 0.00586122ms, 336.3%
Output for 7.1.23
direct call : 0.00088178ms static call : 0.00046784ms, -46.9% object call : 0.00091880ms, 96.4% voodoo call : 0.00332355ms, 261.7%
Output for 7.1.22
direct call : 0.00026556ms static call : 0.00034149ms, 28.6% object call : 0.00057371ms, 68.0% voodoo call : 0.00194537ms, 239.1%
Output for 7.1.21
direct call : 0.00019552ms static call : 0.00039075ms, 99.9% object call : 0.00054143ms, 38.6% voodoo call : 0.00282524ms, 421.8%
Output for 7.1.20
direct call : 0.00030487ms static call : 0.00048806ms, 60.1% object call : 0.00106954ms, 119.1% voodoo call : 0.00325973ms, 204.8%
Output for 7.1.19
direct call : 0.00038470ms static call : 0.00041247ms, 7.2% object call : 0.00063095ms, 53.0% voodoo call : 0.00406266ms, 543.9%
Output for 7.1.18
direct call : 0.00011948ms static call : 0.00015583ms, 30.4% object call : 0.00033470ms, 114.8% voodoo call : 0.00178103ms, 432.1%
Output for 7.1.17
direct call : 0.00046895ms static call : 0.00048302ms, 3.0% object call : 0.00061383ms, 27.1% voodoo call : 0.00159287ms, 159.5%
Output for 7.1.16
direct call : 0.00033695ms static call : 0.00038445ms, 14.1% object call : 0.00045550ms, 18.5% voodoo call : 0.00205661ms, 351.5%
Output for 7.1.15
direct call : 0.00022656ms static call : 0.00029703ms, 31.1% object call : 0.00054876ms, 84.7% voodoo call : 0.00180252ms, 228.5%
Output for 7.1.14
direct call : 0.00024029ms static call : 0.00029337ms, 22.1% object call : 0.00042720ms, 45.6% voodoo call : 0.00167773ms, 292.7%
Output for 7.1.13
direct call : 0.00026696ms static call : 0.00040526ms, 51.8% object call : 0.00102484ms, 152.9% voodoo call : 0.00178989ms, 74.7%
Output for 7.1.12
direct call : 0.00065315ms static call : 0.00071544ms, 9.5% object call : 0.00088948ms, 24.3% voodoo call : 0.00188373ms, 111.8%
Output for 7.1.11
direct call : 0.00025894ms static call : 0.00033861ms, 30.8% object call : 0.00065466ms, 93.3% voodoo call : 0.00106178ms, 62.2%
Output for 7.1.10
direct call : 0.00042968ms static call : 0.00071815ms, 67.1% object call : 0.00120231ms, 67.4% voodoo call : 0.00238599ms, 98.5%
Output for 7.1.9
direct call : 0.00041795ms static call : 0.00046172ms, 10.5% object call : 0.00101782ms, 120.4% voodoo call : 0.00257016ms, 152.5%
Output for 7.1.8
direct call : 0.00042083ms static call : 0.00041518ms, -1.3% object call : 0.00080315ms, 93.4% voodoo call : 0.00210384ms, 161.9%
Output for 7.1.7
direct call : 0.00016841ms static call : 0.00017056ms, 1.3% object call : 0.00027690ms, 62.3% voodoo call : 0.00299428ms, 981.4%
Output for 7.1.6
direct call : 0.00038549ms static call : 0.00027390ms, -28.9% object call : 0.00062694ms, 128.9% voodoo call : 0.00228897ms, 265.1%
Output for 7.1.5
direct call : 0.00030933ms static call : 0.00034306ms, 10.9% object call : 0.00075167ms, 119.1% voodoo call : 0.00260173ms, 246.1%
Output for 7.1.4
direct call : 0.00028184ms static call : 0.00070515ms, 150.2% object call : 0.00129681ms, 83.9% voodoo call : 0.00308750ms, 138.1%
Output for 7.1.3
direct call : 0.00045053ms static call : 0.00032994ms, -26.8% object call : 0.00058844ms, 78.3% voodoo call : 0.00276149ms, 369.3%
Output for 7.1.2
direct call : 0.00044088ms static call : 0.00075426ms, 71.1% object call : 0.00089087ms, 18.1% voodoo call : 0.00280058ms, 214.4%
Output for 7.1.1
direct call : 0.00039282ms static call : 0.00028535ms, -27.4% object call : 0.00050669ms, 77.6% voodoo call : 0.00219280ms, 332.8%
Output for 7.1.0
direct call : 0.00022207ms static call : 0.00017278ms, -22.2% object call : 0.00051195ms, 196.3% voodoo call : 0.00139691ms, 172.9%
Output for 7.0.33
direct call : 0.00020592ms static call : 0.00038982ms, 89.3% object call : 0.00065236ms, 67.3% voodoo call : 0.00105823ms, 62.2%
Output for 7.0.32
direct call : 0.00040318ms static call : 0.00049383ms, 22.5% object call : 0.00053865ms, 9.1% voodoo call : 0.00173221ms, 221.6%
Output for 7.0.31
direct call : 0.00044997ms static call : 0.00034523ms, -23.3% object call : 0.00068427ms, 98.2% voodoo call : 0.00398892ms, 482.9%
Output for 7.0.30
direct call : 0.00019171ms static call : 0.00019981ms, 4.2% object call : 0.00073750ms, 269.1% voodoo call : 0.00261229ms, 254.2%
Output for 7.0.29
direct call : 0.00017414ms static call : 0.00040372ms, 131.8% object call : 0.00059106ms, 46.4% voodoo call : 0.00193916ms, 228.1%
Output for 7.0.28
direct call : 0.00036575ms static call : 0.00036348ms, -0.6% object call : 0.00057083ms, 57.0% voodoo call : 0.00229824ms, 302.6%
Output for 7.0.27
direct call : 0.00016778ms static call : 0.00017954ms, 7.0% object call : 0.00029463ms, 64.1% voodoo call : 0.00166877ms, 466.4%
Output for 7.0.26
direct call : 0.00028285ms static call : 0.00064166ms, 126.9% object call : 0.00055250ms, -13.9% voodoo call : 0.00155424ms, 181.3%
Output for 7.0.25
direct call : 0.00030297ms static call : 0.00035320ms, 16.6% object call : 0.00057553ms, 62.9% voodoo call : 0.00205500ms, 257.1%
Output for 7.0.24
direct call : 0.00040310ms static call : 0.00039220ms, -2.7% object call : 0.00083481ms, 112.9% voodoo call : 0.00199363ms, 138.8%
Output for 7.0.23
direct call : 0.00043449ms static call : 0.00035325ms, -18.7% object call : 0.00073746ms, 108.8% voodoo call : 0.00195078ms, 164.5%
Output for 7.0.22
direct call : 0.00031840ms static call : 0.00034342ms, 7.9% object call : 0.00034906ms, 1.6% voodoo call : 0.00353588ms, 913.0%
Output for 7.0.21
direct call : 0.00027983ms static call : 0.00035034ms, 25.2% object call : 0.00076823ms, 119.3% voodoo call : 0.00313849ms, 308.5%
Output for 7.0.20
direct call : 0.00025402ms static call : 0.00070546ms, 177.7% object call : 0.00125166ms, 77.4% voodoo call : 0.00160144ms, 27.9%
Output for 7.0.19
direct call : 0.00058050ms static call : 0.00038598ms, -33.5% object call : 0.00060010ms, 55.5% voodoo call : 0.00291878ms, 386.4%
Output for 7.0.18
direct call : 0.00056232ms static call : 0.00063835ms, 13.5% object call : 0.00123832ms, 94.0% voodoo call : 0.00239259ms, 93.2%
Output for 7.0.17
direct call : 0.00050842ms static call : 0.00021524ms, -57.7% object call : 0.00047849ms, 122.3% voodoo call : 0.00160338ms, 235.1%
Output for 7.0.16
direct call : 0.00044316ms static call : 0.00044649ms, 0.8% object call : 0.00058531ms, 31.1% voodoo call : 0.00177981ms, 204.1%
Output for 7.0.15
direct call : 0.00022912ms static call : 0.00032491ms, 41.8% object call : 0.00068313ms, 110.3% voodoo call : 0.00139903ms, 104.8%
Output for 7.0.14
direct call : 0.00014534ms static call : 0.00017343ms, 19.3% object call : 0.00027754ms, 60.0% voodoo call : 0.00190635ms, 586.9%
Output for 7.0.13
direct call : 0.00019756ms static call : 0.00033729ms, 70.7% object call : 0.00055879ms, 65.7% voodoo call : 0.00191239ms, 242.2%
Output for 7.0.12
direct call : 0.00026883ms static call : 0.00027916ms, 3.8% object call : 0.00053749ms, 92.5% voodoo call : 0.00136938ms, 154.8%
Output for 7.0.11
direct call : 0.00023327ms static call : 0.00022525ms, -3.4% object call : 0.00070440ms, 212.7% voodoo call : 0.00238368ms, 238.4%
Output for 7.0.10
direct call : 0.00035776ms static call : 0.00037938ms, 6.0% object call : 0.00065669ms, 73.1% voodoo call : 0.00195490ms, 197.7%
Output for 7.0.9
direct call : 0.00017887ms static call : 0.00029424ms, 64.5% object call : 0.00060286ms, 104.9% voodoo call : 0.00265178ms, 339.9%
Output for 7.0.8
direct call : 0.00046946ms static call : 0.00045580ms, -2.9% object call : 0.00055404ms, 21.6% voodoo call : 0.00235324ms, 324.7%
Output for 7.0.7
direct call : 0.00036709ms static call : 0.00043219ms, 17.7% object call : 0.00078282ms, 81.1% voodoo call : 0.00309864ms, 295.8%
Output for 7.0.6
direct call : 0.00019372ms static call : 0.00036051ms, 86.1% object call : 0.00078459ms, 117.6% voodoo call : 0.00213323ms, 171.9%
Output for 7.0.5
direct call : 0.00030987ms static call : 0.00037788ms, 21.9% object call : 0.00056862ms, 50.5% voodoo call : 0.00180384ms, 217.2%
Output for 7.0.4
direct call : 0.00051914ms static call : 0.00051324ms, -1.1% object call : 0.00090110ms, 75.6% voodoo call : 0.00291219ms, 223.2%
Output for 7.0.3
direct call : 0.00066875ms static call : 0.00074790ms, 11.8% object call : 0.00034803ms, -53.5% voodoo call : 0.00262807ms, 655.1%
Output for 7.0.2
direct call : 0.00061572ms static call : 0.00048502ms, -21.2% object call : 0.00071624ms, 47.7% voodoo call : 0.00263683ms, 268.1%
Output for 7.0.1
direct call : 0.00032321ms static call : 0.00028156ms, -12.9% object call : 0.00055116ms, 95.8% voodoo call : 0.00209624ms, 280.3%
Output for 7.0.0
direct call : 0.00064436ms static call : 0.00098538ms, 52.9% object call : 0.00117324ms, 19.1% voodoo call : 0.00232206ms, 97.9%
Output for 5.6.40
direct call : 0.00053460ms static call : 0.00111676ms, 108.9% object call : 0.00259403ms, 132.3% voodoo call : 0.00325481ms, 25.5%
Output for 5.6.39
direct call : 0.00042039ms static call : 0.00084833ms, 101.8% object call : 0.00149315ms, 76.0% voodoo call : 0.00155568ms, 4.2%
Output for 5.6.38
direct call : 0.00082040ms static call : 0.00116552ms, 42.1% object call : 0.00106809ms, -8.4% voodoo call : 0.00244589ms, 129.0%
Output for 5.6.37
direct call : 0.00060073ms static call : 0.00096805ms, 61.1% object call : 0.00180379ms, 86.3% voodoo call : 0.00344754ms, 91.1%
Output for 5.6.36
direct call : 0.00054168ms static call : 0.00109019ms, 101.3% object call : 0.00089019ms, -18.3% voodoo call : 0.00151681ms, 70.4%
Output for 5.6.35
direct call : 0.00098676ms static call : 0.00074794ms, -24.2% object call : 0.00161145ms, 115.5% voodoo call : 0.00201096ms, 24.8%
Output for 5.6.34
direct call : 0.00052700ms static call : 0.00076191ms, 44.6% object call : 0.00106067ms, 39.2% voodoo call : 0.00434039ms, 309.2%
Output for 5.6.33
direct call : 0.00063911ms static call : 0.00058145ms, -9.0% object call : 0.00065081ms, 11.9% voodoo call : 0.00219360ms, 237.1%
Output for 5.6.32
direct call : 0.00080387ms static call : 0.00102944ms, 28.1% object call : 0.00140555ms, 36.5% voodoo call : 0.00306475ms, 118.0%
Output for 5.6.31
direct call : 0.00159860ms static call : 0.00154078ms, -3.6% object call : 0.00139174ms, -9.7% voodoo call : 0.00352753ms, 153.5%
Output for 5.6.30
direct call : 0.00046177ms static call : 0.00076320ms, 65.3% object call : 0.00095742ms, 25.4% voodoo call : 0.00223340ms, 133.3%
Output for 5.6.29
direct call : 0.00049294ms static call : 0.00051131ms, 3.7% object call : 0.00177414ms, 247.0% voodoo call : 0.00328997ms, 85.4%
Output for 5.6.28
direct call : 0.00081821ms static call : 0.00072814ms, -11.0% object call : 0.00097726ms, 34.2% voodoo call : 0.00120976ms, 23.8%
Output for 5.6.27
direct call : 0.00073307ms static call : 0.00085799ms, 17.0% object call : 0.00066595ms, -22.4% voodoo call : 0.00259777ms, 290.1%
Output for 5.6.26
direct call : 0.00046474ms static call : 0.00083758ms, 80.2% object call : 0.00176908ms, 111.2% voodoo call : 0.00249901ms, 41.3%
Output for 5.6.25
direct call : 0.00088532ms static call : 0.00154732ms, 74.8% object call : 0.00065821ms, -57.5% voodoo call : 0.00279523ms, 324.7%
Output for 5.6.24
direct call : 0.00102175ms static call : 0.00077692ms, -24.0% object call : 0.00115028ms, 48.1% voodoo call : 0.00337267ms, 193.2%
Output for 5.6.23
direct call : 0.00079749ms static call : 0.00060711ms, -23.9% object call : 0.00141529ms, 133.1% voodoo call : 0.00389007ms, 174.9%
Output for 5.6.22
direct call : 0.00122655ms static call : 0.00080326ms, -34.5% object call : 0.00071497ms, -11.0% voodoo call : 0.00211757ms, 196.2%
Output for 5.6.21
direct call : 0.00050764ms static call : 0.00064213ms, 26.5% object call : 0.00107850ms, 68.0% voodoo call : 0.00215432ms, 99.8%
Output for 5.6.20
direct call : 0.00077648ms static call : 0.00084035ms, 8.2% object call : 0.00093530ms, 11.3% voodoo call : 0.00513609ms, 449.1%
Output for 5.6.19
direct call : 0.00075983ms static call : 0.00111406ms, 46.6% object call : 0.00226867ms, 103.6% voodoo call : 0.00297642ms, 31.2%
Output for 5.6.18
direct call : 0.00027722ms static call : 0.00037362ms, 34.8% object call : 0.00148318ms, 297.0% voodoo call : 0.00327155ms, 120.6%
Output for 5.6.17
direct call : 0.00101202ms static call : 0.00090765ms, -10.3% object call : 0.00124441ms, 37.1% voodoo call : 0.00291156ms, 134.0%
Output for 5.6.16
direct call : 0.00094458ms static call : 0.00096778ms, 2.5% object call : 0.00195868ms, 102.4% voodoo call : 0.00292591ms, 49.4%
Output for 5.6.15
direct call : 0.00061618ms static call : 0.00064102ms, 4.0% object call : 0.00078600ms, 22.6% voodoo call : 0.00319231ms, 306.1%
Output for 5.6.14
direct call : 0.00056841ms static call : 0.00142748ms, 151.1% object call : 0.00181959ms, 27.5% voodoo call : 0.00460668ms, 153.2%
Output for 5.6.13
direct call : 0.00094996ms static call : 0.00115598ms, 21.7% object call : 0.00199774ms, 72.8% voodoo call : 0.00337459ms, 68.9%
Output for 5.6.12
direct call : 0.00118200ms static call : 0.00106790ms, -9.7% object call : 0.00162255ms, 51.9% voodoo call : 0.00391790ms, 141.5%
Output for 5.6.11
direct call : 0.00067105ms static call : 0.00090131ms, 34.3% object call : 0.00163292ms, 81.2% voodoo call : 0.00359031ms, 119.9%
Output for 5.6.10
direct call : 0.00116975ms static call : 0.00149372ms, 27.7% object call : 0.00188824ms, 26.4% voodoo call : 0.00309636ms, 64.0%
Output for 5.6.9
direct call : 0.00116727ms static call : 0.00043614ms, -62.6% object call : 0.00156388ms, 258.6% voodoo call : 0.00361413ms, 131.1%
Output for 5.6.8
direct call : 0.00175433ms static call : 0.00116421ms, -33.6% object call : 0.00222241ms, 90.9% voodoo call : 0.00317977ms, 43.1%
Output for 5.6.7
direct call : 0.00086810ms static call : 0.00124707ms, 43.7% object call : 0.00165387ms, 32.6% voodoo call : 0.00510953ms, 208.9%
Output for 5.6.6
direct call : 0.00090478ms static call : 0.00178864ms, 97.7% object call : 0.00244105ms, 36.5% voodoo call : 0.00462055ms, 89.3%
Output for 5.6.5
direct call : 0.00127685ms static call : 0.00241114ms, 88.8% object call : 0.00239734ms, -0.6% voodoo call : 0.00315266ms, 31.5%
Output for 5.6.4
direct call : 0.00110516ms static call : 0.00114416ms, 3.5% object call : 0.00240355ms, 110.1% voodoo call : 0.00543708ms, 126.2%
Output for 5.6.3
direct call : 0.00081939ms static call : 0.00096854ms, 18.2% object call : 0.00210760ms, 117.6% voodoo call : 0.00425838ms, 102.0%
Output for 5.6.2
direct call : 0.00090326ms static call : 0.00136116ms, 50.7% object call : 0.00194381ms, 42.8% voodoo call : 0.00505875ms, 160.2%
Output for 5.6.1
direct call : 0.00110586ms static call : 0.00159279ms, 44.0% object call : 0.00329444ms, 106.8% voodoo call : 0.00608076ms, 84.6%
Output for 5.6.0
direct call : 0.00167196ms static call : 0.00175872ms, 5.2% object call : 0.00324912ms, 84.7% voodoo call : 0.00662029ms, 103.8%
Output for 5.5.38
direct call : 0.00054695ms static call : 0.00096728ms, 76.8% object call : 0.00098472ms, 1.8% voodoo call : 0.00301115ms, 205.8%
Output for 5.5.37
direct call : 0.00072155ms static call : 0.00088583ms, 22.8% object call : 0.00152065ms, 71.7% voodoo call : 0.00299419ms, 96.9%
Output for 5.5.36
direct call : 0.00082976ms static call : 0.00124568ms, 50.1% object call : 0.00110021ms, -11.7% voodoo call : 0.00267077ms, 142.8%
Output for 5.5.35
direct call : 0.00089382ms static call : 0.00116702ms, 30.6% object call : 0.00124359ms, 6.6% voodoo call : 0.00346406ms, 178.6%
Output for 5.5.34
direct call : 0.00075867ms static call : 0.00109662ms, 44.5% object call : 0.00175445ms, 60.0% voodoo call : 0.00351116ms, 100.1%
Output for 5.5.33
direct call : 0.00063812ms static call : 0.00068422ms, 7.2% object call : 0.00102893ms, 50.4% voodoo call : 0.00207629ms, 101.8%
Output for 5.5.32
direct call : 0.00054945ms static call : 0.00098217ms, 78.8% object call : 0.00151084ms, 53.8% voodoo call : 0.00258273ms, 70.9%
Output for 5.5.31
direct call : 0.00057066ms static call : 0.00085574ms, 50.0% object call : 0.00132857ms, 55.3% voodoo call : 0.00250072ms, 88.2%
Output for 5.5.30
direct call : 0.00084131ms static call : 0.00124001ms, 47.4% object call : 0.00177546ms, 43.2% voodoo call : 0.00315009ms, 77.4%
Output for 5.5.29
direct call : 0.00090823ms static call : 0.00141682ms, 56.0% object call : 0.00171494ms, 21.0% voodoo call : 0.00371405ms, 116.6%
Output for 5.5.28
direct call : 0.00078579ms static call : 0.00171344ms, 118.1% object call : 0.00241332ms, 40.8% voodoo call : 0.00354496ms, 46.9%
Output for 5.5.27
direct call : 0.00099092ms static call : 0.00161738ms, 63.2% object call : 0.00384303ms, 137.6% voodoo call : 0.00750789ms, 95.4%
Output for 5.5.26
direct call : 0.00126066ms static call : 0.00069207ms, -45.1% object call : 0.00202827ms, 193.1% voodoo call : 0.00398632ms, 96.5%
Output for 5.5.25
direct call : 0.00106288ms static call : 0.00142102ms, 33.7% object call : 0.00206413ms, 45.3% voodoo call : 0.00293155ms, 42.0%
Output for 5.5.24
direct call : 0.00071166ms static call : 0.00103661ms, 45.7% object call : 0.00158084ms, 52.5% voodoo call : 0.00241138ms, 52.5%
Output for 5.5.23
direct call : 0.00106374ms static call : 0.00222710ms, 109.4% object call : 0.00174083ms, -21.8% voodoo call : 0.00475456ms, 173.1%
Output for 5.5.22
direct call : 0.00111838ms static call : 0.00187440ms, 67.6% object call : 0.00144145ms, -23.1% voodoo call : 0.00487073ms, 237.9%
Output for 5.5.21
direct call : 0.00116324ms static call : 0.00110868ms, -4.7% object call : 0.00194225ms, 75.2% voodoo call : 0.00517833ms, 166.6%
Output for 5.5.20
direct call : 0.00083648ms static call : 0.00125599ms, 50.2% object call : 0.00174436ms, 38.9% voodoo call : 0.00330054ms, 89.2%
Output for 5.5.19
direct call : 0.00134889ms static call : 0.00165565ms, 22.7% object call : 0.00143671ms, -13.2% voodoo call : 0.00228427ms, 59.0%
Output for 5.5.18
direct call : 0.00150311ms static call : 0.00216483ms, 44.0% object call : 0.00222538ms, 2.8% voodoo call : 0.00511381ms, 129.8%
Output for 5.5.17
direct call : 0.00157863ms static call : 0.00114525ms, -27.5% object call : 0.00157308ms, 37.4% voodoo call : 0.00387622ms, 146.4%
Output for 5.5.16
direct call : 0.00121846ms static call : 0.00231790ms, 90.2% object call : 0.00238615ms, 2.9% voodoo call : 0.00460142ms, 92.8%
Output for 5.5.15
direct call : 0.00109540ms static call : 0.00153014ms, 39.7% object call : 0.00199454ms, 30.4% voodoo call : 0.00464481ms, 132.9%
Output for 5.5.14
direct call : 0.00097447ms static call : 0.00107228ms, 10.0% object call : 0.00160139ms, 49.3% voodoo call : 0.00415415ms, 159.4%
Output for 5.5.13
direct call : 0.00130482ms static call : 0.00186435ms, 42.9% object call : 0.00164809ms, -11.6% voodoo call : 0.00369160ms, 124.0%
Output for 5.5.12
direct call : 0.00135433ms static call : 0.00203843ms, 50.5% object call : 0.00208574ms, 2.3% voodoo call : 0.00284822ms, 36.6%
Output for 5.5.11
direct call : 0.00079216ms static call : 0.00193522ms, 144.3% object call : 0.00145983ms, -24.6% voodoo call : 0.00247181ms, 69.3%
Output for 5.5.10
direct call : 0.00079806ms static call : 0.00142422ms, 78.5% object call : 0.00177969ms, 25.0% voodoo call : 0.00233744ms, 31.3%
Output for 5.5.9
direct call : 0.00077426ms static call : 0.00113093ms, 46.1% object call : 0.00214473ms, 89.6% voodoo call : 0.00227195ms, 5.9%
Output for 5.5.8
direct call : 0.00063766ms static call : 0.00153973ms, 141.5% object call : 0.00313993ms, 103.9% voodoo call : 0.00520482ms, 65.8%
Output for 5.5.7
direct call : 0.00122141ms static call : 0.00185198ms, 51.6% object call : 0.00206397ms, 11.4% voodoo call : 0.00546118ms, 164.6%
Output for 5.5.6
direct call : 0.00103073ms static call : 0.00117140ms, 13.6% object call : 0.00199237ms, 70.1% voodoo call : 0.00348014ms, 74.7%
Output for 5.5.5
direct call : 0.00101039ms static call : 0.00159525ms, 57.9% object call : 0.00201774ms, 26.5% voodoo call : 0.00470723ms, 133.3%
Output for 5.5.4
direct call : 0.00109850ms static call : 0.00129773ms, 18.1% object call : 0.00094022ms, -27.5% voodoo call : 0.00592362ms, 530.0%
Output for 5.5.3
direct call : 0.00106532ms static call : 0.00149249ms, 40.1% object call : 0.00244915ms, 64.1% voodoo call : 0.00857894ms, 250.3%
Output for 5.5.2
direct call : 0.00177076ms static call : 0.00303795ms, 71.6% object call : 0.00172580ms, -43.2% voodoo call : 0.00334482ms, 93.8%
Output for 5.5.1
direct call : 0.00113626ms static call : 0.00155733ms, 37.1% object call : 0.00312700ms, 100.8% voodoo call : 0.00529276ms, 69.3%
Output for 5.5.0
direct call : 0.00100237ms static call : 0.00127587ms, 27.3% object call : 0.00220160ms, 72.6% voodoo call : 0.00492205ms, 123.6%
Output for 5.4.45
direct call : 0.00082376ms static call : 0.00099429ms, 20.7% object call : 0.00159469ms, 60.4% voodoo call : 0.00530718ms, 232.8%
Output for 5.4.44
direct call : 0.00089430ms static call : 0.00162829ms, 82.1% object call : 0.00214273ms, 31.6% voodoo call : 0.00393432ms, 83.6%
Output for 5.4.43
direct call : 0.00099575ms static call : 0.00174496ms, 75.2% object call : 0.00186340ms, 6.8% voodoo call : 0.00480598ms, 157.9%
Output for 5.4.42
direct call : 0.00160553ms static call : 0.00094264ms, -41.3% object call : 0.00128656ms, 36.5% voodoo call : 0.00447151ms, 247.6%
Output for 5.4.41
direct call : 0.00092182ms static call : 0.00104713ms, 13.6% object call : 0.00170670ms, 63.0% voodoo call : 0.00306068ms, 79.3%
Output for 5.4.40
direct call : 0.00056128ms static call : 0.00082791ms, 47.5% object call : 0.00096940ms, 17.1% voodoo call : 0.00472736ms, 387.7%
Output for 5.4.39
direct call : 0.00070185ms static call : 0.00112772ms, 60.7% object call : 0.00149565ms, 32.6% voodoo call : 0.00434881ms, 190.8%
Output for 5.4.38
direct call : 0.00110169ms static call : 0.00112103ms, 1.8% object call : 0.00112259ms, 0.1% voodoo call : 0.00408246ms, 263.7%
Output for 5.4.37
direct call : 0.00085464ms static call : 0.00065181ms, -23.7% object call : 0.00153256ms, 135.1% voodoo call : 0.00648260ms, 323.0%
Output for 5.4.36
direct call : 0.00098123ms static call : 0.00161026ms, 64.1% object call : 0.00216888ms, 34.7% voodoo call : 0.00537187ms, 147.7%
Output for 5.4.35
direct call : 0.00095031ms static call : 0.00146015ms, 53.6% object call : 0.00177342ms, 21.5% voodoo call : 0.00526713ms, 197.0%
Output for 5.4.34
direct call : 0.00139673ms static call : 0.00164965ms, 18.1% object call : 0.00250882ms, 52.1% voodoo call : 0.00434995ms, 73.4%
Output for 5.4.33
direct call : 0.00059198ms static call : 0.00064675ms, 9.3% object call : 0.00072015ms, 11.3% voodoo call : 0.00237862ms, 230.3%
Output for 5.4.32
direct call : 0.00090306ms static call : 0.00150157ms, 66.3% object call : 0.00119615ms, -20.3% voodoo call : 0.00445802ms, 272.7%
Output for 5.4.31
direct call : 0.00106112ms static call : 0.00221517ms, 108.8% object call : 0.00213575ms, -3.6% voodoo call : 0.00439048ms, 105.6%
Output for 5.4.30
direct call : 0.00024875ms static call : 0.00066648ms, 167.9% object call : 0.00259279ms, 289.0% voodoo call : 0.00323907ms, 24.9%
Output for 5.4.29
direct call : 0.00067230ms static call : 0.00140716ms, 109.3% object call : 0.00203452ms, 44.6% voodoo call : 0.00295519ms, 45.3%
Output for 5.4.28
direct call : 0.00084616ms static call : 0.00202545ms, 139.4% object call : 0.00277720ms, 37.1% voodoo call : 0.00455557ms, 64.0%
Output for 5.4.27
direct call : 0.00131493ms static call : 0.00150641ms, 14.6% object call : 0.00172956ms, 14.8% voodoo call : 0.00445463ms, 157.6%
Output for 5.4.26
direct call : 0.00036452ms static call : 0.00070276ms, 92.8% object call : 0.00215228ms, 206.3% voodoo call : 0.00389135ms, 80.8%
Output for 5.4.25
direct call : 0.00116520ms static call : 0.00129875ms, 11.5% object call : 0.00261838ms, 101.6% voodoo call : 0.00297387ms, 13.6%
Output for 5.4.24
direct call : 0.00111022ms static call : 0.00170493ms, 53.6% object call : 0.00217525ms, 27.6% voodoo call : 0.00473067ms, 117.5%
Output for 5.4.23
direct call : 0.00177189ms static call : 0.00199076ms, 12.4% object call : 0.00223456ms, 12.2% voodoo call : 0.00482081ms, 115.7%
Output for 5.4.22
direct call : 0.00075249ms static call : 0.00075347ms, 0.1% object call : 0.00132192ms, 75.4% voodoo call : 0.00472983ms, 257.8%
Output for 5.4.21
direct call : 0.00127304ms static call : 0.00126744ms, -0.4% object call : 0.00174099ms, 37.4% voodoo call : 0.00389660ms, 123.8%
Output for 5.4.20
direct call : 0.00118566ms static call : 0.00036558ms, -69.2% object call : 0.00104659ms, 186.3% voodoo call : 0.00373486ms, 256.9%
Output for 5.4.19
direct call : 0.00268833ms static call : 0.00242142ms, -9.9% object call : 0.00313225ms, 29.4% voodoo call : 0.00820656ms, 162.0%
Output for 5.4.18
direct call : 0.00103124ms static call : 0.00153609ms, 49.0% object call : 0.00247070ms, 60.8% voodoo call : 0.00327650ms, 32.6%
Output for 5.4.17
direct call : 0.00139265ms static call : 0.00108091ms, -22.4% object call : 0.00200888ms, 85.9% voodoo call : 0.00392609ms, 95.4%
Output for 5.4.16
direct call : 0.00206168ms static call : 0.00152209ms, -26.2% object call : 0.00270730ms, 77.9% voodoo call : 0.00488183ms, 80.3%
Output for 5.4.15
direct call : 0.00125631ms static call : 0.00167176ms, 33.1% object call : 0.00265769ms, 59.0% voodoo call : 0.00405393ms, 52.5%
Output for 5.4.14
direct call : 0.00148177ms static call : 0.00166066ms, 12.1% object call : 0.00255201ms, 53.7% voodoo call : 0.00395115ms, 54.8%
Output for 5.4.13
direct call : 0.00050907ms static call : 0.00126718ms, 148.9% object call : 0.00269110ms, 112.4% voodoo call : 0.00540137ms, 100.7%
Output for 5.4.12
direct call : 0.00093382ms static call : 0.00137830ms, 47.6% object call : 0.00227849ms, 65.3% voodoo call : 0.00528350ms, 131.9%
Output for 5.4.11
direct call : 0.00118679ms static call : 0.00242968ms, 104.7% object call : 0.00335376ms, 38.0% voodoo call : 0.00341992ms, 2.0%
Output for 5.4.10
direct call : 0.00058419ms static call : 0.00159238ms, 172.6% object call : 0.00265662ms, 66.8% voodoo call : 0.00393426ms, 48.1%
Output for 5.4.9
direct call : 0.00241843ms static call : 0.00414186ms, 71.3% object call : 0.00621781ms, 50.1% voodoo call : 0.00498870ms, -19.8%
Output for 5.4.8
direct call : 0.00096473ms static call : 0.00165587ms, 71.6% object call : 0.00187521ms, 13.2% voodoo call : 0.00468662ms, 149.9%
Output for 5.4.7
direct call : 0.00210858ms static call : 0.00125156ms, -40.6% object call : 0.00181700ms, 45.2% voodoo call : 0.00485635ms, 167.3%
Output for 5.4.6
direct call : 0.00132039ms static call : 0.00242569ms, 83.7% object call : 0.00265104ms, 9.3% voodoo call : 0.00678394ms, 155.9%
Output for 5.4.5
direct call : 0.00166912ms static call : 0.00157830ms, -5.4% object call : 0.00301595ms, 91.1% voodoo call : 0.00538626ms, 78.6%
Output for 5.4.4
direct call : 0.00173594ms static call : 0.00139459ms, -19.7% object call : 0.00332785ms, 138.6% voodoo call : 0.00553331ms, 66.3%
Output for 5.4.3
direct call : 0.00158419ms static call : 0.00234070ms, 47.8% object call : 0.00288165ms, 23.1% voodoo call : 0.00719424ms, 149.7%
Output for 5.4.2
direct call : 0.00251443ms static call : 0.00334880ms, 33.2% object call : 0.00386165ms, 15.3% voodoo call : 0.00739572ms, 91.5%
Output for 5.4.1
direct call : 0.00137929ms static call : 0.00292712ms, 112.2% object call : 0.00381903ms, 30.5% voodoo call : 0.00797811ms, 108.9%
Output for 5.4.0
direct call : 0.00283055ms static call : 0.00143482ms, -49.3% object call : 0.00331584ms, 131.1% voodoo call : 0.00772582ms, 133.0%
Output for 5.3.29
direct call : 0.00169003ms static call : 0.00241783ms, 43.1% object call : 0.00339681ms, 40.5% voodoo call : 0.00581883ms, 71.3%
Output for 5.3.28
direct call : 0.00164929ms static call : 0.00252754ms, 53.3% object call : 0.00416789ms, 64.9% voodoo call : 0.00583831ms, 40.1%
Output for 5.3.27
direct call : 0.00098362ms static call : 0.00203504ms, 106.9% object call : 0.00301901ms, 48.4% voodoo call : 0.00624628ms, 106.9%
Output for 5.3.26
direct call : 0.00252097ms static call : 0.00147547ms, -41.5% object call : 0.00331035ms, 124.4% voodoo call : 0.00798158ms, 141.1%
Output for 5.3.25
direct call : 0.00262413ms static call : 0.00370205ms, 41.1% object call : 0.00456255ms, 23.2% voodoo call : 0.00723922ms, 58.7%
Output for 5.3.24
direct call : 0.00144808ms static call : 0.00234314ms, 61.8% object call : 0.00362550ms, 54.7% voodoo call : 0.00385336ms, 6.3%
Output for 5.3.23
direct call : 0.00316517ms static call : 0.00246628ms, -22.1% object call : 0.00355822ms, 44.3% voodoo call : 0.00658620ms, 85.1%
Output for 5.3.22
direct call : 0.00197782ms static call : 0.00232786ms, 17.7% object call : 0.00400403ms, 72.0% voodoo call : 0.00717417ms, 79.2%
Output for 5.3.21
direct call : 0.00230532ms static call : 0.00360671ms, 56.5% object call : 0.00459928ms, 27.5% voodoo call : 0.00796861ms, 73.3%
Output for 5.3.20
direct call : 0.00281330ms static call : 0.00312016ms, 10.9% object call : 0.00394410ms, 26.4% voodoo call : 0.00697315ms, 76.8%
Output for 5.3.19
direct call : 0.00204859ms static call : 0.00256949ms, 25.4% object call : 0.00247378ms, -3.7% voodoo call : 0.00665999ms, 169.2%
Output for 5.3.18
direct call : 0.00350578ms static call : 0.00220067ms, -37.2% object call : 0.00422493ms, 92.0% voodoo call : 0.00768356ms, 81.9%
Output for 5.3.17
direct call : 0.00307629ms static call : 0.00263975ms, -14.2% object call : 0.00498905ms, 89.0% voodoo call : 0.00780003ms, 56.3%
Output for 5.3.16
direct call : 0.00291629ms static call : 0.00394456ms, 35.3% object call : 0.00565909ms, 43.5% voodoo call : 0.00832344ms, 47.1%
Output for 5.3.15
direct call : 0.00181934ms static call : 0.00286522ms, 57.5% object call : 0.00431248ms, 50.5% voodoo call : 0.01037054ms, 140.5%
Output for 5.3.14
direct call : 0.00186072ms static call : 0.00331532ms, 78.2% object call : 0.00382210ms, 15.3% voodoo call : 0.00533035ms, 39.5%
Output for 5.3.13
direct call : 0.00176895ms static call : 0.00390960ms, 121.0% object call : 0.00492109ms, 25.9% voodoo call : 0.00636584ms, 29.4%
Output for 5.3.12
direct call : 0.00389631ms static call : 0.00550030ms, 41.2% object call : 0.00633691ms, 15.2% voodoo call : 0.00802413ms, 26.6%
Output for 5.3.11
direct call : 0.00078335ms static call : 0.00247646ms, 216.1% object call : 0.00534321ms, 115.8% voodoo call : 0.01241654ms, 132.4%
Output for 5.3.10
direct call : 0.00387093ms static call : 0.00331586ms, -14.3% object call : 0.00678697ms, 104.7%
Process exited with code 137.
Output for 5.3.9
direct call : 0.00444345ms static call : 0.00467990ms, 5.3% object call : 0.00549157ms, 17.3% voodoo call : 0.00964998ms, 75.7%
Output for 5.3.8
direct call : 0.00279876ms static call : 0.00202362ms, -27.7% object call : 0.00527797ms, 160.8%
Process exited with code 137.
Output for 5.3.7
direct call : 0.00334804ms static call : 0.00322276ms, -3.7% object call : 0.00275609ms, -14.5% voodoo call : 0.00661661ms, 140.1%
Output for 5.3.6
direct call : 0.00351456ms static call : 0.00337209ms, -4.1% object call : 0.00495281ms, 46.9% voodoo call : 0.00948481ms, 91.5%
Output for 5.3.5
direct call : 0.00258748ms static call : 0.00539512ms, 108.5% object call : 0.00662009ms, 22.7% voodoo call : 0.00936334ms, 41.4%
Output for 5.3.4
direct call : 0.00335290ms static call : 0.00289473ms, -13.7% object call : 0.00616458ms, 113.0% voodoo call : 0.00752521ms, 22.1%
Output for 5.3.3
direct call : 0.00178684ms static call : 0.00360669ms, 101.8% object call : 0.00490729ms, 36.1% voodoo call : 0.00784267ms, 59.8%
Output for 5.3.2
direct call : 0.00186907ms static call : 0.00307991ms, 64.8% object call : 0.00360887ms, 17.2% voodoo call : 0.01081971ms, 199.8%
Output for 5.3.1
direct call : 0.00359627ms static call : 0.00274584ms, -23.6% object call : 0.00498436ms, 81.5% voodoo call : 0.00767154ms, 53.9%
Output for 5.3.0
direct call : 0.00112217ms static call : 0.00434152ms, 286.9% object call : 0.00483023ms, 11.3% voodoo call : 0.00826656ms, 71.1%
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/NsjJR on line 4 Parse error: syntax error, unexpected T_FUNCTION, expecting ')' in /in/NsjJR on line 35
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/NsjJR on line 4 Parse error: parse error, unexpected T_FUNCTION, expecting ')' in /in/NsjJR on line 35
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/NsjJR on line 4 Parse error: syntax error, unexpected T_STRING, expecting ')' in /in/NsjJR on line 4
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
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/NsjJR on line 4 Parse error: parse error, unexpected T_STRING, expecting ')' in /in/NsjJR on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /in/NsjJR on line 4 Parse error: parse error, expecting `')'' in /in/NsjJR on line 4
Process exited with code 255.

preferences:
69.14 ms | 847 KiB | 5 Q