3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { function recurseBenchCallerContex($iterations, $recursionLimit) { if($recursionLimit > 0) { $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(1000, 10);
Output for 7.4.0
string(15) "debug_backtrace" float(0.00046181678771973) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00043416023254395) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00045299530029297) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0004580020904541) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042510032653809) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042295455932617) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043797492980957) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00044894218444824) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0004570484161377) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00034713745117188) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0003058910369873) string(16) "get_called_class" float(0)
Output for 7.3.12
string(15) "debug_backtrace" float(0.00047993659973145) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0004889965057373) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00047111511230469) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00047588348388672) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00046801567077637) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00048518180847168) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00047516822814941) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037693977355957) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00047898292541504) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0004880428314209) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00029087066650391) string(16) "get_called_class" float(0)
Output for 7.3.11
string(15) "debug_backtrace" float(0.00055098533630371) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00055813789367676) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00054407119750977) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00054001808166504) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00053787231445312) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00054192543029785) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00054311752319336) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056791305541992) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049185752868652) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00047898292541504) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00035309791564941) string(16) "get_called_class" float(0)
Output for 7.3.10
string(15) "debug_backtrace" float(0.00046396255493164) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003352165222168) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003349781036377) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003349781036377) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003352165222168) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003352165222168) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003349781036377) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0003359317779541) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00034117698669434) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00034880638122559) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00021815299987793) string(16) "get_called_class" float(0)
Output for 7.3.9
string(15) "debug_backtrace" float(0.00034308433532715) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033378601074219) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033402442932129) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042200088500977) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00033402442932129) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033307075500488) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033283233642578) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00034999847412109) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033378601074219) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003359317779541) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00021791458129883) string(16) "get_called_class" float(0)
Output for 7.3.8
string(15) "debug_backtrace" float(0.00034618377685547) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033807754516602) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00034284591674805) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033783912658691) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033688545227051) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003361701965332) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00034809112548828) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033712387084961) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033688545227051) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033903121948242) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00022006034851074) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 7.3.7
string(15) "debug_backtrace" float(0.00034999847412109) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00032901763916016) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00032901763916016) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00032877922058105) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00032901763916016) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00034499168395996) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00033402442932129) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033807754516602) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00032997131347656) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033187866210938) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00021195411682129) string(16) "get_called_class" float(0)
Output for 7.3.6
string(15) "debug_backtrace" float(0.00034284591674805) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00033307075500488) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033211708068848) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033211708068848) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033187866210938) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00039219856262207) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00034689903259277) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033402442932129) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00033402442932129) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003359317779541) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00021886825561523) string(16) "get_called_class" float(0)
Output for 7.3.5
string(15) "debug_backtrace" float(0.00037384033203125) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00036406517028809) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00036311149597168) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00036406517028809) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00036406517028809) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00036311149597168) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00036382675170898) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00041794776916504) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00036501884460449) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0003662109375) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00023698806762695) string(16) "get_called_class" float(0)
Output for 7.3.4
string(15) "debug_backtrace" float(0.00037884712219238) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00037002563476562) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00040102005004883) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037693977355957) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00036978721618652) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037693977355957) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00038290023803711) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00039005279541016) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037407875061035) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00043892860412598) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00029802322387695) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.3.3
string(15) "debug_backtrace" float(0.00081086158752441) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00072216987609863) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00080084800720215) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00077009201049805) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00036811828613281) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003809928894043) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037598609924316) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037717819213867) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037097930908203) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037693977355957) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00025701522827148) string(16) "get_called_class" float(0)
Output for 7.3.2
string(15) "debug_backtrace" float(0.00037407875061035) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0003659725189209) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003659725189209) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00036501884460449) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00036501884460449) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037598609924316) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00039005279541016) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00038886070251465) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037693977355957) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00036883354187012) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00023818016052246) string(16) "get_called_class" float(0)
Output for 7.3.1
string(15) "debug_backtrace" float(0.00070309638977051) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00070309638977051) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00069093704223633) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00069117546081543) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00069093704223633) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0007319450378418) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00063776969909668) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003359317779541) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003352165222168) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033998489379883) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00021791458129883) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 7.3.0
string(15) "debug_backtrace" float(0.00034189224243164) string(16) "get_called_class" float(2.1457672119141E-6) string(15) "debug_backtrace" float(0.00034379959106445) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033307075500488) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00036501884460449) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00034499168395996) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00034308433532715) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00034499168395996) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00035500526428223) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00038409233093262) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003960132598877) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0002751350402832) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.2.25
string(15) "debug_backtrace" float(0.00038814544677734) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00048089027404785) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00038504600524902) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00037384033203125) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00037407875061035) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037693977355957) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00045418739318848) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00046801567077637) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00039386749267578) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037598609924316) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0002589225769043) string(16) "get_called_class" float(0)
Output for 7.2.24
string(15) "debug_backtrace" float(0.0006110668182373) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00058913230895996) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00060105323791504) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0006108283996582) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00061202049255371) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00064587593078613) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0006101131439209) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0006108283996582) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00061392784118652) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00061202049255371) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00042295455932617) string(16) "get_called_class" float(0)
Output for 7.2.23
string(15) "debug_backtrace" float(0.00046706199645996) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00045919418334961) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00047707557678223) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00054192543029785) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00052881240844727) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00051307678222656) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00051712989807129) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00051498413085938) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00052499771118164) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00051498413085938) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00035691261291504) string(16) "get_called_class" float(0)
Output for 7.2.22
string(15) "debug_backtrace" float(0.00038790702819824) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037193298339844) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00037002563476562) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00039100646972656) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037384033203125) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00038003921508789) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00038003921508789) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00038409233093262) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00038409233093262) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00038480758666992) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00025010108947754) string(16) "get_called_class" float(0)
Output for 7.2.21
string(15) "debug_backtrace" float(0.00079798698425293) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0007479190826416) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00042295455932617) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00039887428283691) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042605400085449) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00044488906860352) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00036883354187012) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00039196014404297) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042605400085449) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0003960132598877) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00026106834411621) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 7.2.20
string(15) "debug_backtrace" float(0.00074005126953125) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00064301490783691) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00062894821166992) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0006110668182373) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0006110668182373) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00062704086303711) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0006110668182373) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00061392784118652) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00059103965759277) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00055909156799316) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00038909912109375) string(16) "get_called_class" float(0)
Output for 7.2.19
string(15) "debug_backtrace" float(0.00057315826416016) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00055718421936035) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00059604644775391) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00055193901062012) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00055193901062012) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00055313110351562) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00055313110351562) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00057220458984375) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00057697296142578) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00057005882263184) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00036883354187012) string(16) "get_called_class" float(0)
Output for 7.2.18
string(15) "debug_backtrace" float(0.00048995018005371) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00037097930908203) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037097930908203) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037002563476562) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037002563476562) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00037097930908203) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00037002563476562) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037693977355957) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037598609924316) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00038909912109375) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00023889541625977) string(16) "get_called_class" float(0)
Output for 7.2.17
string(15) "debug_backtrace" float(0.00043916702270508) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00042510032653809) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042510032653809) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042510032653809) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043296813964844) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042510032653809) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00045299530029297) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056004524230957) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00057196617126465) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0004270076751709) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00027704238891602) string(16) "get_called_class" float(0)
Output for 7.2.0
string(15) "debug_backtrace" float(0.00026798248291016) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00026178359985352) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0002601146697998) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0002589225769043) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00026106834411621) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00026106834411621) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0002589225769043) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0002589225769043) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0002589225769043) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0002751350402832) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00031805038452148) string(16) "get_called_class" float(0)
Output for 7.1.33
string(15) "debug_backtrace" float(0.0007472038269043) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00074005126953125) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00074195861816406) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00075697898864746) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00076508522033691) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00074195861816406) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00074100494384766) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00066208839416504) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049400329589844) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049901008605957) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033307075500488) string(16) "get_called_class" float(0)
Output for 7.1.32
string(15) "debug_backtrace" float(0.00055599212646484) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00049304962158203) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049400329589844) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049591064453125) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049495697021484) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00050497055053711) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049519538879395) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049591064453125) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049495697021484) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00049686431884766) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033187866210938) string(16) "get_called_class" float(0)
Output for 7.1.31
string(15) "debug_backtrace" float(0.0006859302520752) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00069499015808105) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00067615509033203) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00067687034606934) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00069379806518555) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00083780288696289) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00077486038208008) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00076007843017578) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00067806243896484) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00070595741271973) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00033211708068848) string(16) "get_called_class" float(0)
Output for 7.1.30
string(15) "debug_backtrace" float(0.00059986114501953) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00059795379638672) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00059700012207031) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00059700012207031) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00061893463134766) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00059604644775391) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00059604644775391) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00059795379638672) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00059604644775391) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00060796737670898) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00040102005004883) string(16) "get_called_class" float(0)
Output for 7.1.29
string(15) "debug_backtrace" float(0.00098013877868652) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090789794921875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00053596496582031) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049495697021484) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00051498413085938) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0005040168762207) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0005030632019043) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00054097175598145) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00049901008605957) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052285194396973) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00034117698669434) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 7.1.28
string(15) "debug_backtrace" float(0.00050711631774902) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00053095817565918) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052094459533691) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00051593780517578) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052309036254883) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00057697296142578) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049686431884766) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00050210952758789) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00055289268493652) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0005040168762207) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00033211708068848) string(16) "get_called_class" float(0)
Output for 7.1.27
string(15) "debug_backtrace" float(0.00061607360839844) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00060296058654785) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00060415267944336) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0006110668182373) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00060391426086426) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00060391426086426) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00060486793518066) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00060486793518066) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00065207481384277) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00063300132751465) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042295455932617) string(16) "get_called_class" float(0)
Output for 7.1.26
string(15) "debug_backtrace" float(0.00050020217895508) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049185752868652) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0005030632019043) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049400329589844) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00051116943359375) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049495697021484) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00049400329589844) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052690505981445) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049591064453125) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049614906311035) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033116340637207) string(16) "get_called_class" float(0)
Output for 7.1.7
string(15) "debug_backtrace" float(0.00059103965759277) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00058603286743164) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00058698654174805) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00058698654174805) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00060105323791504) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00058698654174805) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00058698654174805) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00058698654174805) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00058794021606445) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00058984756469727) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037789344787598) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.1.6
string(15) "debug_backtrace" float(0.00033903121948242) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00031113624572754) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00031399726867676) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00030517578125) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00032305717468262) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00031709671020508) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00030708312988281) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00029706954956055) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00032401084899902) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00034880638122559) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00024104118347168) string(16) "get_called_class" float(0)
Output for 7.1.5
string(15) "debug_backtrace" float(0.00056791305541992) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0005640983581543) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00057315826416016) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056099891662598) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056290626525879) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056695938110352) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0005650520324707) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056099891662598) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00054287910461426) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052809715270996) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00032901763916016) string(16) "get_called_class" float(0)
Output for 7.1.0
string(15) "debug_backtrace" float(0.00046801567077637) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00046300888061523) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00045299530029297) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00045084953308105) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00045394897460938) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00045514106750488) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0004580020904541) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00045299530029297) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00045394897460938) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00046586990356445) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00028014183044434) string(16) "get_called_class" float(0)
Output for 7.0.20
string(15) "debug_backtrace" float(0.001115083694458) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00051999092102051) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00066399574279785) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00058412551879883) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0006859302520752) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0006558895111084) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00067400932312012) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00067996978759766) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00068283081054688) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00066590309143066) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00036191940307617) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.0.14
string(15) "debug_backtrace" float(0.00094509124755859) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010249614715576) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001007080078125) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010149478912354) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099611282348633) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094819068908691) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093793869018555) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093889236450195) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00089693069458008) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00089693069458008) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00051283836364746) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.0.11
string(15) "debug_backtrace" float(0.00043296813964844) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00041604042053223) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00041794776916504) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043296813964844) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042510032653809) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00044608116149902) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00044608116149902) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043892860412598) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043916702270508) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043988227844238) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0002601146697998) string(16) "get_called_class" float(0)
Output for 7.0.10
string(15) "debug_backtrace" float(0.00042510032653809) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00043010711669922) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042200088500977) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042605400085449) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00042200088500977) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042295455932617) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042200088500977) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042200088500977) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042319297790527) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042200088500977) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00025415420532227) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.0.9
string(15) "debug_backtrace" float(0.0004270076751709) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00044703483581543) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0004420280456543) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00057005882263184) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00058984756469727) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0005648136138916) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043797492980957) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043106079101562) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00042986869812012) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043201446533203) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00024604797363281) string(16) "get_called_class" float(0)
Output for 7.0.8
string(15) "debug_backtrace" float(0.00045919418334961) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0004420280456543) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043416023254395) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043416023254395) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043416023254395) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043416023254395) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043392181396484) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043296813964844) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00045084953308105) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00043296813964844) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00025200843811035) string(16) "get_called_class" float(0)
Output for 7.0.7
string(15) "debug_backtrace" float(0.00057315826416016) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00057792663574219) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00056719779968262) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056600570678711) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00057196617126465) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056695938110352) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056910514831543) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056815147399902) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00056695938110352) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056791305541992) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00032305717468262) string(16) "get_called_class" float(0)
Output for 7.0.6
string(15) "debug_backtrace" float(0.00065016746520996) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00067019462585449) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00066399574279785) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00066304206848145) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00066304206848145) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00067400932312012) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00064992904663086) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00063490867614746) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00063514709472656) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00063109397888184) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00037717819213867) string(16) "get_called_class" float(0)
Output for 7.0.5
string(15) "debug_backtrace" float(0.00053286552429199) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052809715270996) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052404403686523) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052404403686523) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052404403686523) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00052404403686523) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052404403686523) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0005340576171875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00053811073303223) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00055599212646484) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00031399726867676) string(16) "get_called_class" float(0)
Output for 7.0.4
string(15) "debug_backtrace" float(0.00046992301940918) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00046706199645996) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00046801567077637) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00046706199645996) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00046706199645996) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00048613548278809) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00046205520629883) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00045418739318848) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00045514106750488) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00060510635375977) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00025606155395508) string(16) "get_called_class" float(0)
Output for 7.0.3
string(15) "debug_backtrace" float(0.00069618225097656) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052785873413086) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052785873413086) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052499771118164) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00051999092102051) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052094459533691) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052809715270996) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052118301391602) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052094459533691) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00051999092102051) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00029587745666504) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 7.0.2
string(15) "debug_backtrace" float(0.00061893463134766) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00061488151550293) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00058197975158691) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00059700012207031) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00053882598876953) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00053501129150391) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056099891662598) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00063300132751465) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00063204765319824) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00060105323791504) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00033402442932129) string(16) "get_called_class" float(0)
Output for 7.0.1
string(15) "debug_backtrace" float(0.0005040168762207) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049877166748047) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0005030632019043) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00050497055053711) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00050783157348633) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00050616264343262) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00050902366638184) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00050497055053711) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00050687789916992) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00051617622375488) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00028800964355469) string(16) "get_called_class" float(0)
Output for 7.0.0
string(15) "debug_backtrace" float(0.00049805641174316) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049304962158203) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049495697021484) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049209594726562) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00050592422485352) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049495697021484) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049901008605957) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049996376037598) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049901008605957) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00050091743469238) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00028896331787109) string(16) "get_called_class" float(0)
Output for 5.6.28
string(15) "debug_backtrace" float(0.0017931461334229) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0017900466918945) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0017929077148438) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0017101764678955) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0017127990722656) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0017139911651611) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0017158985137939) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0017099380493164) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0017318725585938) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0017139911651611) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010030269622803) string(16) "get_called_class" float(0)
Output for 5.6.26
string(15) "debug_backtrace" float(0.0008091926574707) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00079202651977539) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00081491470336914) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00078296661376953) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00078320503234863) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00079703330993652) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0007779598236084) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00078892707824707) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00079607963562012) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00078821182250977) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0004880428314209) string(16) "get_called_class" float(0)
Output for 5.6.25
string(15) "debug_backtrace" float(0.00078701972961426) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00077986717224121) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00078487396240234) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00077915191650391) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00078105926513672) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0007789134979248) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00078392028808594) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00078105926513672) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0007779598236084) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00077986717224121) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00047016143798828) string(16) "get_called_class" float(0)
Output for 5.6.24
string(15) "debug_backtrace" float(0.00079202651977539) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0007781982421875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00080084800720215) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00081896781921387) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00078201293945312) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00076198577880859) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00074911117553711) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00075006484985352) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00075316429138184) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00074887275695801) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00044393539428711) string(16) "get_called_class" float(0)
Output for 5.6.23
string(15) "debug_backtrace" float(0.0012760162353516) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0013210773468018) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012660026550293) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098395347595215) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094008445739746) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00093913078308105) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094914436340332) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00093293190002441) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094318389892578) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095105171203613) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00055503845214844) string(16) "get_called_class" float(0)
Output for 5.6.22
string(15) "debug_backtrace" float(0.0015139579772949) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0014851093292236) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014879703521729) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014879703521729) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014970302581787) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0014801025390625) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015609264373779) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0014247894287109) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014278888702393) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014209747314453) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00084495544433594) string(16) "get_called_class" float(0)
Output for 5.6.21
string(15) "debug_backtrace" float(0.00094103813171387) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00093913078308105) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094199180603027) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00093507766723633) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093793869018555) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093412399291992) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093412399291992) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093698501586914) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090694427490234) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090503692626953) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00054001808166504) string(16) "get_called_class" float(0)
Output for 5.6.20
string(15) "debug_backtrace" float(0.00092506408691406) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092601776123047) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094389915466309) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093388557434082) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093984603881836) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093293190002441) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009310245513916) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009911060333252) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091409683227539) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093293190002441) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056195259094238) string(16) "get_called_class" float(0)
Output for 5.6.19
string(15) "debug_backtrace" float(0.00090622901916504) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093603134155273) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093507766723633) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00095701217651367) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092101097106934) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090813636779785) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00089907646179199) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00090694427490234) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00089597702026367) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00089287757873535) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00053906440734863) string(16) "get_called_class" float(0)
Output for 5.6.18
string(15) "debug_backtrace" float(0.00092196464538574) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093603134155273) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094389915466309) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095009803771973) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095200538635254) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00094485282897949) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00094914436340332) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096297264099121) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00094294548034668) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095009803771973) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056004524230957) string(16) "get_called_class" float(0)
Output for 5.6.17
string(15) "debug_backtrace" float(0.0009300708770752) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091314315795898) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093603134155273) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014212131500244) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092196464538574) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093197822570801) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096297264099121) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096893310546875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009760856628418) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095605850219727) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00055789947509766) string(16) "get_called_class" float(0)
Output for 5.6.16
string(15) "debug_backtrace" float(0.0012800693511963) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094199180603027) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0009009838104248) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00092506408691406) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00087118148803711) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00087404251098633) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00086092948913574) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096988677978516) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00084209442138672) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010280609130859) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0005800724029541) string(16) "get_called_class" float(0)
Output for 5.6.15
string(15) "debug_backtrace" float(0.0012829303741455) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011770725250244) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011880397796631) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010290145874023) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010280609130859) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0008690357208252) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00084996223449707) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010309219360352) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010221004486084) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010249614715576) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00051093101501465) string(16) "get_called_class" float(0)
Output for 5.6.14
string(15) "debug_backtrace" float(0.0011551380157471) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098896026611328) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00086402893066406) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011060237884521) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00093793869018555) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00086212158203125) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010888576507568) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00089001655578613) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095391273498535) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00097298622131348) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00049185752868652) string(16) "get_called_class" float(0)
Output for 5.6.13
string(15) "debug_backtrace" float(0.0024120807647705) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0024700164794922) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0023910999298096) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0023410320281982) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0023579597473145) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.002418041229248) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0023849010467529) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0023071765899658) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0015759468078613) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012428760528564) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00074601173400879) string(16) "get_called_class" float(0)
Output for 5.6.12
string(15) "debug_backtrace" float(0.0013411045074463) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013101100921631) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013308525085449) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0013339519500732) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0013420581817627) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013320446014404) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013618469238281) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0013158321380615) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0013279914855957) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00098180770874023) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00058484077453613) string(16) "get_called_class" float(0)
Output for 5.6.11
string(15) "debug_backtrace" float(0.00090217590332031) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090813636779785) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009310245513916) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092887878417969) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093483924865723) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093603134155273) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00093293190002441) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093412399291992) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093889236450195) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093698501586914) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00055599212646484) string(16) "get_called_class" float(0)
Output for 5.6.10
string(15) "debug_backtrace" float(0.0013399124145508) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001359224319458) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013518333435059) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013680458068848) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013630390167236) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012359619140625) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0012509822845459) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012459754943848) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012521743774414) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0012428760528564) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00074100494384766) string(16) "get_called_class" float(0)
Output for 5.6.9
string(15) "debug_backtrace" float(0.0012509822845459) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012340545654297) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012328624725342) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012578964233398) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0015029907226562) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012550354003906) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001276969909668) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001600980758667) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.001209020614624) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.001215934753418) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0007328987121582) string(16) "get_called_class" float(0)
Output for 5.6.8
string(15) "debug_backtrace" float(0.0014069080352783) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014340877532959) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013809204101562) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014119148254395) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010778903961182) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010910034179688) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010859966278076) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010871887207031) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010900497436523) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011050701141357) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00064396858215332) string(16) "get_called_class" float(0)
Output for 5.6.7
string(15) "debug_backtrace" float(0.0011599063873291) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011539459228516) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011539459228516) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0011661052703857) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011258125305176) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001101016998291) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001107931137085) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0011239051818848) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011131763458252) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00118088722229) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00074505805969238) string(16) "get_called_class" float(0)
Output for 5.6.6
string(15) "debug_backtrace" float(0.001147985458374) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011200904846191) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011680126190186) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011570453643799) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011589527130127) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011711120605469) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011429786682129) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011539459228516) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011448860168457) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011630058288574) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00071382522583008) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.6.5
string(15) "debug_backtrace" float(0.0013048648834229) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013270378112793) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012989044189453) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013301372528076) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0013070106506348) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0012669563293457) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0012528896331787) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011060237884521) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096893310546875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094389915466309) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00057005882263184) string(16) "get_called_class" float(0)
Output for 5.6.4
string(15) "debug_backtrace" float(0.00090599060058594) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00084590911865234) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010311603546143) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00086402893066406) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009009838104248) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00096321105957031) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00090503692626953) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097918510437012) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093603134155273) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009620189666748) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00059604644775391) string(16) "get_called_class" float(0)
Output for 5.6.3
string(15) "debug_backtrace" float(0.0017268657684326) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015199184417725) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0018250942230225) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014569759368896) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0014500617980957) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0017318725585938) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014410018920898) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014700889587402) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014688968658447) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015699863433838) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00081896781921387) string(16) "get_called_class" float(0)
Output for 5.6.2
string(15) "debug_backtrace" float(0.001939058303833) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0019340515136719) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0019431114196777) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0019631385803223) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0019421577453613) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0019400119781494) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0019550323486328) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0019490718841553) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0013198852539062) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00089406967163086) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00064206123352051) string(16) "get_called_class" float(0)
Output for 5.6.1
string(15) "debug_backtrace" float(0.00087904930114746) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00087094306945801) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00078606605529785) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095987319946289) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00080013275146484) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011789798736572) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094294548034668) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00098109245300293) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00089907646179199) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00095796585083008) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00065898895263672) string(16) "get_called_class" float(0)
Output for 5.6.0
string(15) "debug_backtrace" float(0.0013079643249512) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012950897216797) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013010501861572) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0012960433959961) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0012929439544678) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.001323938369751) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012519359588623) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012547969818115) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0012519359588623) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012969970703125) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00070691108703613) string(16) "get_called_class" float(0)
Output for 5.5.38
string(15) "debug_backtrace" float(0.00081396102905273) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00081586837768555) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0008080005645752) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00080704689025879) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00081014633178711) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.000823974609375) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00081300735473633) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0008080005645752) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00080680847167969) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00080704689025879) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0004880428314209) string(16) "get_called_class" float(0)
Output for 5.5.37
string(15) "debug_backtrace" float(0.00095415115356445) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00088095664978027) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090503692626953) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00089287757873535) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093293190002441) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090599060058594) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010168552398682) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.000946044921875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091886520385742) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00089716911315918) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0005638599395752) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.36
string(15) "debug_backtrace" float(0.0012640953063965) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011351108551025) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092601776123047) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010719299316406) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00096392631530762) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010550022125244) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.000885009765625) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010769367218018) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011460781097412) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00097489356994629) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00067996978759766) string(16) "get_called_class" float(0)
Output for 5.5.35
string(15) "debug_backtrace" float(0.0012519359588623) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012211799621582) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012350082397461) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001237154006958) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012378692626953) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012421607971191) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0012338161468506) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012550354003906) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012249946594238) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011889934539795) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00070691108703613) string(16) "get_called_class" float(0)
Output for 5.5.34
string(15) "debug_backtrace" float(0.0009758472442627) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00097417831420898) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096893310546875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096797943115234) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097012519836426) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097107887268066) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00096893310546875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098896026611328) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096988677978516) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009758472442627) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00057697296142578) string(16) "get_called_class" float(0)
Output for 5.5.33
string(15) "debug_backtrace" float(0.0020158290863037) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0018830299377441) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0016958713531494) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0019090175628662) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001878023147583) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.002007007598877) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0019199848175049) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.002000093460083) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0020051002502441) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001884937286377) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00055408477783203) string(16) "get_called_class" float(0)
Output for 5.5.32
string(15) "debug_backtrace" float(0.00095605850219727) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094914436340332) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095605850219727) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001539945602417) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0017380714416504) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014219284057617) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0009758472442627) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009608268737793) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014579296112061) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095510482788086) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00055718421936035) string(16) "get_called_class" float(0)
Output for 5.5.31
string(15) "debug_backtrace" float(0.00096988677978516) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098395347595215) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097990036010742) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010170936584473) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095796585083008) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097894668579102) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096321105957031) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010139942169189) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0018038749694824) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0017819404602051) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010719299316406) string(16) "get_called_class" float(0)
Output for 5.5.30
string(15) "debug_backtrace" float(0.0028729438781738) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0027740001678467) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0027730464935303) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0027689933776855) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0027720928192139) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0027079582214355) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0027029514312744) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0026750564575195) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0026838779449463) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.002659797668457) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0015881061553955) string(16) "get_called_class" float(0)
Output for 5.5.29
string(15) "debug_backtrace" float(0.0012938976287842) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0013711452484131) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00089597702026367) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097012519836426) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097513198852539) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013101100921631) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.001072883605957) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012309551239014) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010490417480469) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010480880737305) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00052809715270996) string(16) "get_called_class" float(0)
Output for 5.5.28
string(15) "debug_backtrace" float(0.0010471343994141) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001054048538208) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010499954223633) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010290145874023) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010340213775635) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010261535644531) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001025915145874) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010261535644531) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011570453643799) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011880397796631) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00070691108703613) string(16) "get_called_class" float(0)
Output for 5.5.27
string(15) "debug_backtrace" float(0.0009620189666748) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096321105957031) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096702575683594) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096392631530762) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00096893310546875) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00096511840820312) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098800659179688) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096607208251953) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097489356994629) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00096988677978516) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00059890747070312) string(16) "get_called_class" float(0)
Output for 5.5.26
string(15) "debug_backtrace" float(0.00086116790771484) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011200904846191) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0010828971862793) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012679100036621) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00090289115905762) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001079797744751) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00097990036010742) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001133918762207) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011122226715088) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00094699859619141) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00069379806518555) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.25
string(15) "debug_backtrace" float(0.0010092258453369) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010089874267578) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010111331939697) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010209083557129) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099682807922363) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099611282348633) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010099411010742) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010099411010742) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010080337524414) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010120868682861) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00061798095703125) string(16) "get_called_class" float(0)
Output for 5.5.24
string(15) "debug_backtrace" float(0.0010089874267578) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010359287261963) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010280609130859) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010039806365967) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010011196136475) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097799301147461) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096297264099121) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009610652923584) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00097107887268066) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094795227050781) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00055599212646484) string(16) "get_called_class" float(0)
Output for 5.5.23
string(15) "debug_backtrace" float(0.0011639595031738) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011579990386963) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011849403381348) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011940002441406) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011961460113525) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.001201868057251) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011920928955078) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001194953918457) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011880397796631) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011270046234131) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00063920021057129) string(16) "get_called_class" float(0)
Output for 5.5.22
string(15) "debug_backtrace" float(0.0012829303741455) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012381076812744) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.001101016998291) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011050701141357) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013329982757568) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010919570922852) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010769367218018) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011000633239746) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010759830474854) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010709762573242) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00063109397888184) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.21
string(15) "debug_backtrace" float(0.0011811256408691) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011670589447021) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011720657348633) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.001201868057251) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011999607086182) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011579990386963) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001168966293335) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011210441589355) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011138916015625) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0011260509490967) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00067591667175293) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.5.20
string(15) "debug_backtrace" float(0.00094294548034668) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010628700256348) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00084400177001953) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092101097106934) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.000946044921875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00086092948913574) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097393989562988) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001107931137085) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010838508605957) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00092911720275879) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00063490867614746) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.19
string(15) "debug_backtrace" float(0.0016448497772217) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0016629695892334) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00164794921875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0016589164733887) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.001600980758667) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0016169548034668) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0016090869903564) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0016210079193115) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0015959739685059) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015649795532227) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00087594985961914) string(16) "get_called_class" float(0)
Output for 5.5.18
string(15) "debug_backtrace" float(0.0014781951904297) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0014700889587402) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014650821685791) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014622211456299) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014770030975342) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014138221740723) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013999938964844) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014059543609619) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013980865478516) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0013978481292725) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00083684921264648) string(16) "get_called_class" float(0)
Output for 5.5.16
string(15) "debug_backtrace" float(0.0013389587402344) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014398097991943) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014200210571289) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013999938964844) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013589859008789) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012509822845459) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010159015655518) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010159015655518) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010180473327637) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010077953338623) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00060296058654785) string(16) "get_called_class" float(0)
Output for 5.5.15
string(15) "debug_backtrace" float(0.0024969577789307) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0025100708007812) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0024459362030029) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0024130344390869) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0024120807647705) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0024259090423584) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0019149780273438) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012409687042236) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012528896331787) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012459754943848) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00074195861816406) string(16) "get_called_class" float(0)
Output for 5.5.14
string(15) "debug_backtrace" float(0.001255989074707) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012569427490234) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012731552124023) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0012798309326172) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012881755828857) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0012879371643066) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012898445129395) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013360977172852) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013289451599121) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013341903686523) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00077104568481445) string(16) "get_called_class" float(0)
Output for 5.5.13
string(15) "debug_backtrace" float(0.00098204612731934) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00097990036010742) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097894668579102) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097489356994629) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00098514556884766) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0009920597076416) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097799301147461) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00098800659179688) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098705291748047) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097298622131348) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00057697296142578) string(16) "get_called_class" float(0)
Output for 5.5.12
string(15) "debug_backtrace" float(0.00098013877868652) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00097298622131348) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00097823143005371) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0009920597076416) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0009911060333252) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097799301147461) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098586082458496) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.001054048538208) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010380744934082) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093984603881836) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00055909156799316) string(16) "get_called_class" float(0)
Output for 5.5.11
string(15) "debug_backtrace" float(0.00095701217651367) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096797943115234) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093913078308105) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093793869018555) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094413757324219) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.000946044921875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096297264099121) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094509124755859) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010159015655518) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095605850219727) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00057601928710938) string(16) "get_called_class" float(0)
Output for 5.5.10
string(15) "debug_backtrace" float(0.00096988677978516) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099396705627441) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099015235900879) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00096416473388672) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098609924316406) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096511840820312) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094199180603027) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093913078308105) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094294548034668) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093698501586914) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00055694580078125) string(16) "get_called_class" float(0)
Output for 5.5.9
string(15) "debug_backtrace" float(0.0016438961029053) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0016398429870605) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015659332275391) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0016019344329834) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015900135040283) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015850067138672) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001582145690918) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0015869140625) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015430450439453) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015749931335449) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092291831970215) string(16) "get_called_class" float(0)
Output for 5.5.8
string(15) "debug_backtrace" float(0.00097298622131348) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009620189666748) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00098609924316406) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010068416595459) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099897384643555) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098586082458496) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098109245300293) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00098109245300293) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097107887268066) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097990036010742) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00057792663574219) string(16) "get_called_class" float(0)
Output for 5.5.7
string(15) "debug_backtrace" float(0.0011329650878906) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011870861053467) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010418891906738) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093817710876465) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090503692626953) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011239051818848) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001237154006958) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00099992752075195) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014748573303223) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010590553283691) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00057387351989746) string(16) "get_called_class" float(0)
Output for 5.5.6
string(15) "debug_backtrace" float(0.00078010559082031) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0007779598236084) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00080084800720215) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00079798698425293) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0008080005645752) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00080394744873047) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00081610679626465) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00079798698425293) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00081014633178711) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00079798698425293) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00047898292541504) string(16) "get_called_class" float(0)
Output for 5.5.5
string(15) "debug_backtrace" float(0.0009770393371582) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010430812835693) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010979175567627) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011870861053467) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009608268737793) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011880397796631) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095486640930176) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010421276092529) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010049343109131) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094699859619141) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0006101131439209) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.5.4
string(15) "debug_backtrace" float(0.0017578601837158) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0014879703521729) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00148606300354) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014841556549072) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015590190887451) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014188289642334) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014159679412842) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014169216156006) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014219284057617) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0014450550079346) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00088310241699219) string(16) "get_called_class" float(0)
Output for 5.5.3
string(15) "debug_backtrace" float(0.0016219615936279) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0016229152679443) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015888214111328) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0016319751739502) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0016579627990723) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0016450881958008) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015978813171387) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015249252319336) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0015571117401123) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015451908111572) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00091814994812012) string(16) "get_called_class" float(0)
Output for 5.5.2
string(15) "debug_backtrace" float(0.00094294548034668) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094199180603027) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093603134155273) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093793869018555) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095295906066895) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094890594482422) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097393989562988) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098776817321777) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097918510437012) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00098204612731934) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00058197975158691) string(16) "get_called_class" float(0)
Output for 5.5.1
string(15) "debug_backtrace" float(0.00081110000610352) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00083184242248535) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00083184242248535) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.000823974609375) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.000823974609375) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00081181526184082) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00082206726074219) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00081682205200195) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00080680847167969) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00079703330993652) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00046992301940918) string(16) "get_called_class" float(0)
Output for 5.5.0
string(15) "debug_backtrace" float(0.0010280609130859) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00099492073059082) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010020732879639) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010321140289307) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00093507766723633) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011148452758789) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010700225830078) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010159015655518) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00087285041809082) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010831356048584) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00047588348388672) string(16) "get_called_class" float(0)
Output for 5.4.45
string(15) "debug_backtrace" float(0.0020279884338379) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.002004861831665) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0020148754119873) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0020091533660889) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0019609928131104) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0019500255584717) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0019540786743164) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0019569396972656) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011551380157471) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011780261993408) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011169910430908) string(16) "get_called_class" float(0)
Output for 5.4.44
string(15) "debug_backtrace" float(0.0010309219360352) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090289115905762) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00086498260498047) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00083589553833008) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093388557434082) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009918212890625) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011320114135742) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00089287757873535) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00089693069458008) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090289115905762) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00051188468933105) string(16) "get_called_class" float(0)
Output for 5.4.43
string(15) "debug_backtrace" float(0.0013260841369629) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.001352071762085) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013389587402344) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.001352071762085) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012948513031006) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0014209747314453) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0014610290527344) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014610290527344) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014739036560059) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0015230178833008) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00084114074707031) string(16) "get_called_class" float(0)
Output for 5.4.42
string(15) "debug_backtrace" float(0.0010390281677246) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090789794921875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010290145874023) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009160041809082) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010249614715576) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00093793869018555) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092315673828125) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093197822570801) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092196464538574) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001021146774292) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00054407119750977) string(16) "get_called_class" float(0)
Output for 5.4.41
string(15) "debug_backtrace" float(0.001093864440918) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010960102081299) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011022090911865) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011100769042969) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011000633239746) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010349750518799) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010180473327637) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010201930999756) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010261535644531) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010170936584473) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0006110668182373) string(16) "get_called_class" float(0)
Output for 5.4.40
string(15) "debug_backtrace" float(0.0016000270843506) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0015721321105957) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015740394592285) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0015819072723389) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015459060668945) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0014908313751221) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015189647674561) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001492977142334) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015089511871338) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015108585357666) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00089788436889648) string(16) "get_called_class" float(0)
Output for 5.4.39
string(15) "debug_backtrace" float(0.001460075378418) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001446008682251) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014669895172119) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014650821685791) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011780261993408) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011100769042969) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010991096496582) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011157989501953) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011160373687744) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011029243469238) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00066304206848145) string(16) "get_called_class" float(0)
Output for 5.4.38
string(15) "debug_backtrace" float(0.0011141300201416) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011370182037354) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011389255523682) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011429786682129) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.001101016998291) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010890960693359) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010499954223633) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010709762573242) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010509490966797) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010371208190918) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00063109397888184) string(16) "get_called_class" float(0)
Output for 5.4.37
string(15) "debug_backtrace" float(0.00098395347595215) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001086950302124) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00085783004760742) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010409355163574) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094699859619141) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010089874267578) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012860298156738) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010671615600586) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011780261993408) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093483924865723) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00058913230895996) string(16) "get_called_class" float(0)
Output for 5.4.36
string(15) "debug_backtrace" float(0.0014231204986572) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0013999938964844) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00142502784729) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014388561248779) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0013968944549561) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0013811588287354) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013208389282227) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013439655303955) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013260841369629) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013198852539062) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00080680847167969) string(16) "get_called_class" float(0)
Output for 5.4.35
string(15) "debug_backtrace" float(0.0011990070343018) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010738372802734) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0012199878692627) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010690689086914) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014081001281738) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096511840820312) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097298622131348) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094985961914062) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094294548034668) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092196464538574) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00055599212646484) string(16) "get_called_class" float(0)
Output for 5.4.34
string(15) "debug_backtrace" float(0.0010828971862793) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010800361633301) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010969638824463) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011060237884521) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011448860168457) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010828971862793) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011050701141357) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010919570922852) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010960102081299) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011000633239746) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00065803527832031) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.32
string(15) "debug_backtrace" float(0.001291036605835) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012879371643066) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0012819766998291) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012907981872559) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012838840484619) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0012950897216797) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0013060569763184) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012259483337402) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012369155883789) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012362003326416) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00073885917663574) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.31
string(15) "debug_backtrace" float(0.001539945602417) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0015888214111328) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013589859008789) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0013689994812012) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014090538024902) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013659000396729) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013871192932129) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013148784637451) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013070106506348) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0015480518341064) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00075006484985352) string(16) "get_called_class" float(0)
Output for 5.4.30
string(15) "debug_backtrace" float(0.00092196464538574) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092220306396484) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092101097106934) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00092697143554688) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00091385841369629) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092101097106934) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092983245849609) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009150505065918) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009150505065918) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091910362243652) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00054192543029785) string(16) "get_called_class" float(0)
Output for 5.4.29
string(15) "debug_backtrace" float(0.0012621879577637) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0013120174407959) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012121200561523) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011699199676514) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011839866638184) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011930465698242) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011780261993408) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001176118850708) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011861324310303) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0012021064758301) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0007178783416748) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.28
string(15) "debug_backtrace" float(0.0011570453643799) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011920928955078) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001209020614624) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011520385742188) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010988712310791) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0011248588562012) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0009920597076416) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009620189666748) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010080337524414) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.000946044921875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00057291984558105) string(16) "get_called_class" float(0)
Output for 5.4.27
string(15) "debug_backtrace" float(0.00091099739074707) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090503692626953) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090599060058594) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00091695785522461) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009000301361084) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090909004211426) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090789794921875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090789794921875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091910362243652) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090599060058594) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00054502487182617) string(16) "get_called_class" float(0)
Output for 5.4.26
string(15) "debug_backtrace" float(0.0013761520385742) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0015499591827393) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013420581817627) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013279914855957) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0014610290527344) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0014569759368896) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001305103302002) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0014550685882568) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013048648834229) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0017271041870117) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00078511238098145) string(16) "get_called_class" float(0)
Output for 5.4.25
string(15) "debug_backtrace" float(0.00099515914916992) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098204612731934) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098204612731934) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099802017211914) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094985961914062) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095009803771973) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096702575683594) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00095200538635254) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096511840820312) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095295906066895) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0005800724029541) string(16) "get_called_class" float(0)
Output for 5.4.24
string(15) "debug_backtrace" float(0.00095891952514648) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093913078308105) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010712146759033) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093889236450195) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0009610652923584) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099611282348633) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00095605850219727) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093507766723633) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092911720275879) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092387199401855) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00055098533630371) string(16) "get_called_class" float(0)
Output for 5.4.23
string(15) "debug_backtrace" float(0.00090885162353516) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091791152954102) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010910034179688) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090193748474121) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00085306167602539) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097298622131348) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00087809562683105) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009150505065918) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098586082458496) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00081801414489746) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00056004524230957) string(16) "get_called_class" float(0)
Output for 5.4.22
string(15) "debug_backtrace" float(0.0010089874267578) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0009770393371582) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001147985458374) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00087594985961914) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0013332366943359) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010747909545898) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092506408691406) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099396705627441) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095009803771973) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013020038604736) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00065207481384277) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.21
string(15) "debug_backtrace" float(0.0013351440429688) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001384973526001) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013799667358398) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0012991428375244) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010180473327637) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009620189666748) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00096392631530762) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009608268737793) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009610652923584) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099706649780273) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00058722496032715) string(16) "get_called_class" float(0)
Output for 5.4.20
string(15) "debug_backtrace" float(0.00076794624328613) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.000762939453125) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00076103210449219) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00077581405639648) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0007622241973877) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00076889991760254) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00079202651977539) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0007939338684082) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00079894065856934) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00079894065856934) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00047492980957031) string(16) "get_called_class" float(0)
Output for 5.4.19
string(15) "debug_backtrace" float(0.0012359619140625) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012071132659912) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001209020614624) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0012168884277344) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012121200561523) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012288093566895) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001183032989502) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011608600616455) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0011661052703857) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011699199676514) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00069499015808105) string(16) "get_called_class" float(0)
Output for 5.4.18
string(15) "debug_backtrace" float(0.00097012519836426) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00097179412841797) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093698501586914) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094008445739746) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00095891952514648) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094699859619141) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095796585083008) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00096988677978516) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011260509490967) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092887878417969) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0006098747253418) string(16) "get_called_class" float(1.1920928955078E-6)
Output for 5.4.17
string(15) "debug_backtrace" float(0.000946044921875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094914436340332) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093793869018555) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095295906066895) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095295906066895) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095891952514648) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00097799301147461) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009911060333252) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095391273498535) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00095391273498535) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00058102607727051) string(16) "get_called_class" float(0)
Output for 5.4.16
string(15) "debug_backtrace" float(0.00089621543884277) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010530948638916) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091099739074707) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00079607963562012) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00087904930114746) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091695785522461) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00081896781921387) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091981887817383) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010170936584473) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00083303451538086) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00055193901062012) string(16) "get_called_class" float(0)
Output for 5.4.15
string(15) "debug_backtrace" float(0.00093197822570801) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092101097106934) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090789794921875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090789794921875) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091695785522461) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092101097106934) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091981887817383) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092005729675293) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094079971313477) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001349925994873) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011000633239746) string(16) "get_called_class" float(9.5367431640625E-7)
Output for 5.4.14
string(15) "debug_backtrace" float(0.00093793869018555) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009300708770752) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093483924865723) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00092911720275879) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094509124755859) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093197822570801) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092411041259766) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093889236450195) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092196464538574) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092816352844238) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00055098533630371) string(16) "get_called_class" float(0)
Output for 5.4.13
string(15) "debug_backtrace" float(0.0011148452758789) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010480880737305) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010409355163574) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010759830474854) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010559558868408) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010359287261963) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010581016540527) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010859966278076) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010688304901123) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010781288146973) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00061798095703125) string(16) "get_called_class" float(0)
Output for 5.4.12
string(15) "debug_backtrace" float(0.0010890960693359) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010859966278076) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010969638824463) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010809898376465) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001082181930542) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010809898376465) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001079797744751) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010919570922852) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010879039764404) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010828971862793) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0006251335144043) string(16) "get_called_class" float(0)
Output for 5.4.11
string(15) "debug_backtrace" float(0.00091290473937988) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090813636779785) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091695785522461) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090599060058594) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090384483337402) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090503692626953) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090885162353516) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090599060058594) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090599060058594) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091290473937988) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00054192543029785) string(16) "get_called_class" float(0)
Output for 5.4.10
string(15) "debug_backtrace" float(0.001039981842041) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010380744934082) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099587440490723) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099706649780273) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00099802017211914) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099802017211914) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099802017211914) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010030269622803) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099706649780273) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00099682807922363) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00058794021606445) string(16) "get_called_class" float(0)
Output for 5.4.9
string(15) "debug_backtrace" float(0.001086950302124) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00098013877868652) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010440349578857) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010199546813965) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00086712837219238) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010268688201904) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.0010089874267578) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00084900856018066) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012011528015137) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00086712837219238) string(16) "get_called_class" float(1.1920928955078E-6) string(15) "debug_backtrace" float(0.00059294700622559) string(16) "get_called_class" float(0)
Output for 5.4.8
string(15) "debug_backtrace" float(0.00093507766723633) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.001147985458374) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012531280517578) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00088000297546387) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00093197822570801) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00086402893066406) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094819068908691) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010910034179688) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011610984802246) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009760856628418) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00055098533630371) string(16) "get_called_class" float(0)
Output for 5.4.7
string(15) "debug_backtrace" float(0.001079797744751) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010740756988525) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010597705841064) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00105881690979) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010628700256348) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.001060962677002) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010590553283691) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0010640621185303) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010688304901123) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010590553283691) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00063395500183105) string(16) "get_called_class" float(0)
Output for 5.4.6
string(15) "debug_backtrace" float(0.0007929801940918) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0008089542388916) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00081706047058105) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0008089542388916) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00080990791320801) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00078797340393066) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00078296661376953) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00078105926513672) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092506408691406) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00078201293945312) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00047397613525391) string(16) "get_called_class" float(0)
Output for 5.4.5
string(15) "debug_backtrace" float(0.0012071132659912) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012171268463135) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0012028217315674) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011990070343018) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0013389587402344) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011229515075684) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011229515075684) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011208057403564) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011210441589355) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.0011899471282959) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00066494941711426) string(16) "get_called_class" float(0)
Output for 5.4.4
string(15) "debug_backtrace" float(0.00075888633728027) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0007479190826416) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00075316429138184) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.000762939453125) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00077295303344727) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00077986717224121) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00079512596130371) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00079917907714844) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00075197219848633) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00078201293945312) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00049996376037598) string(16) "get_called_class" float(0)
Output for 5.4.3
string(15) "debug_backtrace" float(0.0010850429534912) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011379718780518) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011281967163086) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011308193206787) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010888576507568) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010790824890137) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010759830474854) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0010490417480469) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091791152954102) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091099739074707) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00054383277893066) string(16) "get_called_class" float(0)
Output for 5.4.2
string(15) "debug_backtrace" float(0.00092697143554688) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0011179447174072) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091004371643066) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091004371643066) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00092411041259766) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00094318389892578) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091099739074707) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.0009160041809082) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091004371643066) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090909004211426) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00054407119750977) string(16) "get_called_class" float(0)
Output for 5.4.1
string(15) "debug_backtrace" float(0.00091910362243652) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091695785522461) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091099739074707) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00090909004211426) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091004371643066) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00091099739074707) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00091004371643066) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091004371643066) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091099739074707) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00091910362243652) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00062108039855957) string(16) "get_called_class" float(0)
Output for 5.4.0
string(15) "debug_backtrace" float(0.00076794624328613) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00076699256896973) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00076079368591309) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.000762939453125) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00075912475585938) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00076198577880859) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00087714195251465) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00076985359191895) string(16) "get_called_class" float(9.5367431640625E-7) string(15) "debug_backtrace" float(0.00076603889465332) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00085997581481934) string(16) "get_called_class" float(0) string(15) "debug_backtrace" float(0.00045013427734375) string(16) "get_called_class" float(0)

preferences:
143.49 ms | 403 KiB | 166 Q