3v4l.org

run code in 300+ PHP versions simultaneously
<?php if(PHP_VERSION_ID < 50400) { return; } class Foo { function recurseBenchCallerContex($iterations, $recursionLimit) { if($recursionLimit > 0) { return $this->recurseBenchCallerContex($iterations, $recursionLimit - 1); } $start = microtime(true); for($c = 0; $c < $iterations; $c++) { $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 2); $class = isset($trace[1]['class']) ? $trace[1]['class'] : null; } var_dump('debug_backtrace', microtime(true) - $start); $start = microtime(true); for($c = 0; $c < $iterations; $c++) { $class = get_called_class(); } $start = microtime(true); var_dump('get_called_class', microtime(true) - $start); } } $foo = new Foo; $foo->recurseBenchCallerContex(10000, 100);
Output for 7.4.0
string(15) "debug_backtrace" float(0.0040299892425537) string(16) "get_called_class" float(0)
Output for 7.3.12
string(15) "debug_backtrace" float(0.0052680969238281) string(16) "get_called_class" float(0)
Output for 7.3.11
string(15) "debug_backtrace" float(0.0043230056762695) string(16) "get_called_class" float(0)
Output for 7.3.10
string(15) "debug_backtrace" float(0.0034458637237549) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.3.9
string(15) "debug_backtrace" float(0.0049500465393066) string(16) "get_called_class" float(0)
Output for 7.3.8
string(15) "debug_backtrace" float(0.0038700103759766) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.3.7
string(15) "debug_backtrace" float(0.003309965133667) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.3.6
string(15) "debug_backtrace" float(0.003324031829834) string(16) "get_called_class" float(0)
Output for 7.3.5
string(15) "debug_backtrace" float(0.0038859844207764) string(16) "get_called_class" float(0)
Output for 7.3.4
string(15) "debug_backtrace" float(0.003809928894043) string(16) "get_called_class" float(0)
Output for 7.3.3
string(15) "debug_backtrace" float(0.0033740997314453) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.3.2
string(15) "debug_backtrace" float(0.0043890476226807) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.3.1
string(15) "debug_backtrace" float(0.0033648014068604) string(16) "get_called_class" float(0)
Output for 7.3.0
string(15) "debug_backtrace" float(0.003795862197876) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 7.2.25
string(15) "debug_backtrace" float(0.0060288906097412) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.2.24
string(15) "debug_backtrace" float(0.0060639381408691) string(16) "get_called_class" float(0)
Output for 7.2.23
string(15) "debug_backtrace" float(0.0041971206665039) string(16) "get_called_class" float(0)
Output for 7.2.22
string(15) "debug_backtrace" float(0.0058679580688477) string(16) "get_called_class" float(0)
Output for 7.2.21
string(15) "debug_backtrace" float(0.0041751861572266) string(16) "get_called_class" float(0)
Output for 7.2.20
string(15) "debug_backtrace" float(0.0050060749053955) string(16) "get_called_class" float(0)
Output for 7.2.19
string(15) "debug_backtrace" float(0.0046291351318359) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 7.2.18
string(15) "debug_backtrace" float(0.0038511753082275) string(16) "get_called_class" float(0)
Output for 7.2.17
string(15) "debug_backtrace" float(0.0061409473419189) string(16) "get_called_class" float(0)
Output for 7.2.13
string(15) "debug_backtrace" float(0.0043399333953857) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.2.12
string(15) "debug_backtrace" float(0.0071859359741211) string(16) "get_called_class" float(0)
Output for 7.2.11
string(15) "debug_backtrace" float(0.0042331218719482) string(16) "get_called_class" float(0)
Output for 7.2.10
string(15) "debug_backtrace" float(0.0057618618011475) string(16) "get_called_class" float(0)
Output for 7.2.9
string(15) "debug_backtrace" float(0.0038700103759766) string(16) "get_called_class" float(0)
Output for 7.2.8
string(15) "debug_backtrace" float(0.0059051513671875) string(16) "get_called_class" float(0)
Output for 7.2.7
string(15) "debug_backtrace" float(0.0043740272521973) string(16) "get_called_class" float(0)
Output for 7.2.6
string(15) "debug_backtrace" float(0.0042409896850586) string(16) "get_called_class" float(0)
Output for 7.2.5
string(15) "debug_backtrace" float(0.0055661201477051) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 7.2.4
string(15) "debug_backtrace" float(0.005864143371582) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.2.3
string(15) "debug_backtrace" float(0.004655122756958) string(16) "get_called_class" float(0)
Output for 7.2.2
string(15) "debug_backtrace" float(0.004796028137207) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.2.1
string(15) "debug_backtrace" float(0.0039079189300537) string(16) "get_called_class" float(0)
Output for 7.2.0
string(15) "debug_backtrace" float(0.0054659843444824) string(16) "get_called_class" float(0)
Output for 7.1.33
string(15) "debug_backtrace" float(0.0051629543304443) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.1.32
string(15) "debug_backtrace" float(0.0050201416015625) string(16) "get_called_class" float(0)
Output for 7.1.31
string(15) "debug_backtrace" float(0.0060670375823975) string(16) "get_called_class" float(0)
Output for 7.1.30
string(15) "debug_backtrace" float(0.0078070163726807) string(16) "get_called_class" float(0)
Output for 7.1.29
string(15) "debug_backtrace" float(0.0065078735351562) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.1.28
string(15) "debug_backtrace" float(0.0050890445709229) string(16) "get_called_class" float(0)
Output for 7.1.27
string(15) "debug_backtrace" float(0.0049948692321777) string(16) "get_called_class" float(0)
Output for 7.1.26
string(15) "debug_backtrace" float(0.0050351619720459) string(16) "get_called_class" float(0)
Output for 7.1.25
string(15) "debug_backtrace" float(0.0061869621276855) string(16) "get_called_class" float(0)
Output for 7.1.24
string(15) "debug_backtrace" float(0.0054199695587158) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.1.23
string(15) "debug_backtrace" float(0.0052430629730225) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.1.22
string(15) "debug_backtrace" float(0.0050768852233887) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.1.21
string(15) "debug_backtrace" float(0.0048611164093018) string(16) "get_called_class" float(0)
Output for 7.1.20
string(15) "debug_backtrace" float(0.0052540302276611) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.1.19
string(15) "debug_backtrace" float(0.0068919658660889) string(16) "get_called_class" float(0)
Output for 7.1.18
string(15) "debug_backtrace" float(0.0056650638580322) string(16) "get_called_class" float(0)
Output for 7.1.17
string(15) "debug_backtrace" float(0.0057761669158936) string(16) "get_called_class" float(0)
Output for 7.1.16
string(15) "debug_backtrace" float(0.0064148902893066) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.1.15
string(15) "debug_backtrace" float(0.0059268474578857) string(16) "get_called_class" float(0)
Output for 7.1.14
string(15) "debug_backtrace" float(0.0083680152893066) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.1.13
string(15) "debug_backtrace" float(0.0069489479064941) string(16) "get_called_class" float(0)
Output for 7.1.12
string(15) "debug_backtrace" float(0.0067081451416016) string(16) "get_called_class" float(0)
Output for 7.1.11
string(15) "debug_backtrace" float(0.0067811012268066) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.1.10
string(15) "debug_backtrace" float(0.0075130462646484) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.1.9
string(15) "debug_backtrace" float(0.0049939155578613) string(16) "get_called_class" float(0)
Output for 7.1.8
string(15) "debug_backtrace" float(0.0057239532470703) string(16) "get_called_class" float(0)
Output for 7.1.7
string(15) "debug_backtrace" float(0.0062320232391357) string(16) "get_called_class" float(0)
Output for 7.1.6
string(15) "debug_backtrace" float(0.0053739547729492) string(16) "get_called_class" float(0)
Output for 7.1.5
string(15) "debug_backtrace" float(0.005997896194458) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.1.4
string(15) "debug_backtrace" float(0.0051171779632568) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.1.3
string(15) "debug_backtrace" float(0.0065338611602783) string(16) "get_called_class" float(0)
Output for 7.1.2
string(15) "debug_backtrace" float(0.0050921440124512) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.1.1
string(15) "debug_backtrace" float(0.0070059299468994) string(16) "get_called_class" float(0)
Output for 7.1.0
string(15) "debug_backtrace" float(0.0093598365783691) string(16) "get_called_class" float(0)
Output for 7.0.33
string(15) "debug_backtrace" float(0.012483835220337) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.0.32
string(15) "debug_backtrace" float(0.013251066207886) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.0.31
string(15) "debug_backtrace" float(0.011689901351929) string(16) "get_called_class" float(0)
Output for 7.0.30
string(15) "debug_backtrace" float(0.016463994979858) string(16) "get_called_class" float(0)
Output for 7.0.29
string(15) "debug_backtrace" float(0.013101100921631) string(16) "get_called_class" float(0)
Output for 7.0.28
string(15) "debug_backtrace" float(0.013802051544189) string(16) "get_called_class" float(0)
Output for 7.0.27
string(15) "debug_backtrace" float(0.010618925094604) string(16) "get_called_class" float(0)
Output for 7.0.26
string(15) "debug_backtrace" float(0.012723922729492) string(16) "get_called_class" float(0)
Output for 7.0.25
string(15) "debug_backtrace" float(0.014153003692627) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.0.24
string(15) "debug_backtrace" float(0.012778997421265) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.0.23
string(15) "debug_backtrace" float(0.013100147247314) string(16) "get_called_class" float(0)
Output for 7.0.22
string(15) "debug_backtrace" float(0.013017892837524) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.0.21
string(15) "debug_backtrace" float(0.013374805450439) string(16) "get_called_class" float(0)
Output for 7.0.20
string(15) "debug_backtrace" float(0.011043071746826) string(16) "get_called_class" float(0)
Output for 7.0.19
string(15) "debug_backtrace" float(0.013340950012207) string(16) "get_called_class" float(0)
Output for 7.0.18
string(15) "debug_backtrace" float(0.013602018356323) string(16) "get_called_class" float(0)
Output for 7.0.17
string(15) "debug_backtrace" float(0.011720895767212) string(16) "get_called_class" float(0)
Output for 7.0.16
string(15) "debug_backtrace" float(0.011008024215698) string(16) "get_called_class" float(0)
Output for 7.0.15
string(15) "debug_backtrace" float(0.011964082717896) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.0.14
string(15) "debug_backtrace" float(0.011831998825073) string(16) "get_called_class" float(0)
Output for 7.0.13
string(15) "debug_backtrace" float(0.013365030288696) string(16) "get_called_class" float(0)
Output for 7.0.12
string(15) "debug_backtrace" float(0.011880874633789) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.0.11
string(15) "debug_backtrace" float(0.013206958770752) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.0.10
string(15) "debug_backtrace" float(0.012383937835693) string(16) "get_called_class" float(0)
Output for 7.0.9
string(15) "debug_backtrace" float(0.012985944747925) string(16) "get_called_class" float(0)
Output for 7.0.8
string(15) "debug_backtrace" float(0.010280847549438) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.0.7
string(15) "debug_backtrace" float(0.012878179550171) string(16) "get_called_class" float(0)
Output for 7.0.6
string(15) "debug_backtrace" float(0.012395143508911) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 7.0.5
string(15) "debug_backtrace" float(0.011370897293091) string(16) "get_called_class" float(0)
Output for 7.0.4
string(15) "debug_backtrace" float(0.011118173599243) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 7.0.3
string(15) "debug_backtrace" float(0.010056972503662) string(16) "get_called_class" float(0)
Output for 7.0.2
string(15) "debug_backtrace" float(0.012131929397583) string(16) "get_called_class" float(0)
Output for 7.0.1
string(15) "debug_backtrace" float(0.01282000541687) string(16) "get_called_class" float(0)
Output for 7.0.0
string(15) "debug_backtrace" float(0.011135101318359) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.38
string(15) "debug_backtrace" float(0.021007061004639) string(16) "get_called_class" float(0)
Output for 5.6.37
string(15) "debug_backtrace" float(0.020668983459473) string(16) "get_called_class" float(0)
Output for 5.6.36
string(15) "debug_backtrace" float(0.023303031921387) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.35
string(15) "debug_backtrace" float(0.022052049636841) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.34
string(15) "debug_backtrace" float(0.076480865478516) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.33
string(15) "debug_backtrace" float(0.017640113830566) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.6.32
string(15) "debug_backtrace" float(0.016885042190552) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.31
string(15) "debug_backtrace" float(0.019065856933594) string(16) "get_called_class" float(0)
Output for 5.6.30
string(15) "debug_backtrace" float(0.020072937011719) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.29
string(15) "debug_backtrace" float(0.020349979400635) string(16) "get_called_class" float(0)
Output for 5.6.28
string(15) "debug_backtrace" float(0.024831056594849) string(16) "get_called_class" float(0)
Output for 5.6.27
string(15) "debug_backtrace" float(0.020067930221558) string(16) "get_called_class" float(0)
Output for 5.6.26
string(15) "debug_backtrace" float(0.01766300201416) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.6.25
string(15) "debug_backtrace" float(0.019754886627197) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.6.24
string(15) "debug_backtrace" float(0.016956090927124) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.6.23
string(15) "debug_backtrace" float(0.020586967468262) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.22
string(15) "debug_backtrace" float(0.028428077697754) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.21
string(15) "debug_backtrace" float(0.016757011413574) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.20
string(15) "debug_backtrace" float(0.034426927566528) string(16) "get_called_class" float(0)
Output for 5.6.19
string(15) "debug_backtrace" float(0.016877889633179) string(16) "get_called_class" float(0)
Output for 5.6.18
string(15) "debug_backtrace" float(0.024931192398071) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.6.17
string(15) "debug_backtrace" float(0.046084880828857) string(16) "get_called_class" float(0)
Output for 5.6.16
string(15) "debug_backtrace" float(0.016642093658447) string(16) "get_called_class" float(0)
Output for 5.6.15
string(15) "debug_backtrace" float(0.018219947814941) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.14
string(15) "debug_backtrace" float(0.020519971847534) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.13
string(15) "debug_backtrace" float(0.023577928543091) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.12
string(15) "debug_backtrace" float(0.018352031707764) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.6.11
string(15) "debug_backtrace" float(0.018509864807129) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.10
string(15) "debug_backtrace" float(0.021545171737671) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.9
string(15) "debug_backtrace" float(0.017762184143066) string(16) "get_called_class" float(0)
Output for 5.6.8
string(15) "debug_backtrace" float(0.01940393447876) string(16) "get_called_class" float(0)
Output for 5.6.7
string(15) "debug_backtrace" float(0.020709991455078) string(16) "get_called_class" float(0)
Output for 5.6.6
string(15) "debug_backtrace" float(0.017004013061523) string(16) "get_called_class" float(0)
Output for 5.6.5
string(15) "debug_backtrace" float(0.016063928604126) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.4
string(15) "debug_backtrace" float(0.023658037185669) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.6.3
string(15) "debug_backtrace" float(0.021353006362915) string(16) "get_called_class" float(0)
Output for 5.6.2
string(15) "debug_backtrace" float(0.019337892532349) string(16) "get_called_class" float(0)
Output for 5.6.1
string(15) "debug_backtrace" float(0.021955013275146) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.0
string(15) "debug_backtrace" float(0.018395900726318) string(16) "get_called_class" float(0)
Output for 5.5.38
string(15) "debug_backtrace" float(0.021644115447998) string(16) "get_called_class" float(0)
Output for 5.5.37
string(15) "debug_backtrace" float(0.023458003997803) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.36
string(15) "debug_backtrace" float(0.021488904953003) string(16) "get_called_class" float(0)
Output for 5.5.35
string(15) "debug_backtrace" float(0.023725032806396) string(16) "get_called_class" float(0)
Output for 5.5.34
string(15) "debug_backtrace" float(0.018080949783325) string(16) "get_called_class" float(0)
Output for 5.5.33
string(15) "debug_backtrace" float(0.01977801322937) string(16) "get_called_class" float(0)
Output for 5.5.32
string(15) "debug_backtrace" float(0.020611047744751) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.31
string(15) "debug_backtrace" float(0.022341012954712) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.30
string(15) "debug_backtrace" float(0.030553817749023) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.5.29
string(15) "debug_backtrace" float(0.023709058761597) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.28
string(15) "debug_backtrace" float(0.023536920547485) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.27
string(15) "debug_backtrace" float(0.023040056228638) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.26
string(15) "debug_backtrace" float(0.020524978637695) string(16) "get_called_class" float(0)
Output for 5.5.25
string(15) "debug_backtrace" float(0.021060228347778) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.24
string(15) "debug_backtrace" float(0.021890878677368) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.5.23
string(15) "debug_backtrace" float(0.02180290222168) string(16) "get_called_class" float(0)
Output for 5.5.22
string(15) "debug_backtrace" float(0.021327018737793) string(16) "get_called_class" float(0)
Output for 5.5.21
string(15) "debug_backtrace" float(0.026113986968994) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.20
string(15) "debug_backtrace" float(0.019955158233643) string(16) "get_called_class" float(0)
Output for 5.5.19
string(15) "debug_backtrace" float(0.020976066589355) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.18
string(15) "debug_backtrace" float(0.019041776657104) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.17
string(15) "debug_backtrace" float(0.027950048446655) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.16
string(15) "debug_backtrace" float(0.022923946380615) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.15
string(15) "debug_backtrace" float(0.02101993560791) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.14
string(15) "debug_backtrace" float(0.019333124160767) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.13
string(15) "debug_backtrace" float(0.024266004562378) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.12
string(15) "debug_backtrace" float(0.024661064147949) string(16) "get_called_class" float(0)
Output for 5.5.11
string(15) "debug_backtrace" float(0.020689010620117) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.5.10
string(15) "debug_backtrace" float(0.022232055664062) string(16) "get_called_class" float(0)
Output for 5.5.9
string(15) "debug_backtrace" float(0.032294034957886) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.8
string(15) "debug_backtrace" float(0.060837030410767) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.7
string(15) "debug_backtrace" float(0.020393133163452) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.6
string(15) "debug_backtrace" float(0.020523071289062) string(16) "get_called_class" float(0)
Output for 5.5.5
string(15) "debug_backtrace" float(0.020912885665894) string(16) "get_called_class" float(0)
Output for 5.5.4
string(15) "debug_backtrace" float(0.023778915405273) string(16) "get_called_class" float(0)
Output for 5.5.3
string(15) "debug_backtrace" float(0.02198600769043) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.2
string(15) "debug_backtrace" float(0.020603895187378) string(16) "get_called_class" float(0)
Output for 5.5.1
string(15) "debug_backtrace" float(0.022825956344604) string(16) "get_called_class" float(0)
Output for 5.5.0
string(15) "debug_backtrace" float(0.020605802536011) string(16) "get_called_class" float(0)
Output for 5.4.45
string(15) "debug_backtrace" float(0.047580003738403) string(16) "get_called_class" float(0)
Output for 5.4.44
string(15) "debug_backtrace" float(0.042128086090088) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.43
string(15) "debug_backtrace" float(0.019996166229248) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.42
string(15) "debug_backtrace" float(0.02118992805481) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.4.41
string(15) "debug_backtrace" float(0.021800994873047) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.40
string(15) "debug_backtrace" float(0.020995140075684) string(16) "get_called_class" float(0)
Output for 5.4.39
string(15) "debug_backtrace" float(0.022993087768555) string(16) "get_called_class" float(0)
Output for 5.4.38
string(15) "debug_backtrace" float(0.02318811416626) string(16) "get_called_class" float(0)
Output for 5.4.37
string(15) "debug_backtrace" float(0.021926879882812) string(16) "get_called_class" float(0)
Output for 5.4.36
string(15) "debug_backtrace" float(0.023972034454346) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.4.35
string(15) "debug_backtrace" float(0.016909837722778) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.34
string(15) "debug_backtrace" float(0.021253108978271) string(16) "get_called_class" float(0)
Output for 5.4.33
string(15) "debug_backtrace" float(0.020114898681641) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.32
string(15) "debug_backtrace" float(0.021302938461304) string(16) "get_called_class" float(0)
Output for 5.4.31
string(15) "debug_backtrace" float(0.019787073135376) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.30
string(15) "debug_backtrace" float(0.031499862670898) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.4.29
string(15) "debug_backtrace" float(0.033575057983398) string(16) "get_called_class" float(0)
Output for 5.4.28
string(15) "debug_backtrace" float(0.022309064865112) string(16) "get_called_class" float(0)
Output for 5.4.27
string(15) "debug_backtrace" float(0.021771907806396) string(16) "get_called_class" float(0)
Output for 5.4.26
string(15) "debug_backtrace" float(0.017161846160889) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.4.25
string(15) "debug_backtrace" float(0.022350072860718) string(16) "get_called_class" float(0)
Output for 5.4.24
string(15) "debug_backtrace" float(0.017535924911499) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.23
string(15) "debug_backtrace" float(0.018038034439087) string(16) "get_called_class" float(0)
Output for 5.4.22
string(15) "debug_backtrace" float(0.021996021270752) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.21
string(15) "debug_backtrace" float(0.021104097366333) string(16) "get_called_class" float(0)
Output for 5.4.20
string(15) "debug_backtrace" float(0.0224449634552) string(16) "get_called_class" float(0)
Output for 5.4.19
string(15) "debug_backtrace" float(0.017900943756104) string(16) "get_called_class" float(0)
Output for 5.4.18
string(15) "debug_backtrace" float(0.02291202545166) string(16) "get_called_class" float(0)
Output for 5.4.17
string(15) "debug_backtrace" float(0.017627000808716) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.16
string(15) "debug_backtrace" float(0.019385099411011) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.15
string(15) "debug_backtrace" float(0.022418975830078) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.14
string(15) "debug_backtrace" float(0.02475905418396) string(16) "get_called_class" float(0)
Output for 5.4.13
string(15) "debug_backtrace" float(0.016963005065918) string(16) "get_called_class" float(0)
Output for 5.4.12
string(15) "debug_backtrace" float(0.024569988250732) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.11
string(15) "debug_backtrace" float(0.02541184425354) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.10
string(15) "debug_backtrace" float(0.025734186172485) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.9
string(15) "debug_backtrace" float(0.017553091049194) string(16) "get_called_class" float(2.0980834960938E-5)
Output for 5.4.8
string(15) "debug_backtrace" float(0.019891023635864) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.7
string(15) "debug_backtrace" float(0.020463943481445) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.6
string(15) "debug_backtrace" float(0.022418022155762) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.4.5
string(15) "debug_backtrace" float(0.023084878921509) string(16) "get_called_class" float(0)
Output for 5.4.4
string(15) "debug_backtrace" float(0.022652149200439) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.3
string(15) "debug_backtrace" float(0.021229028701782) string(16) "get_called_class" float(0)
Output for 5.4.2
string(15) "debug_backtrace" float(0.023515224456787) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.1
string(15) "debug_backtrace" float(0.020671844482422) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.0
string(15) "debug_backtrace" float(0.017416954040527) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.2.7 - 5.2.17, 5.3.0 - 5.3.29
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.6
Notice: Use of undefined constant PHP_VERSION_ID - assumed 'PHP_VERSION_ID' in /in/OOqJJ on line 3

preferences:
226.04 ms | 402 KiB | 317 Q