CarbonCopy Posted June 1, 2009 Share Posted June 1, 2009 Says all in title, my code: <?php var_dump(debug_backtrace()); ?> Gives the output array(0) { } No idea why, any help? Link to comment https://forums.phpfreaks.com/topic/160418-php-debug_backtrace-just-gives-me-array0/ Share on other sites More sharing options...
btherl Posted June 1, 2009 Share Posted June 1, 2009 Try this: <?php foo(); function foo() { var_dump(debug_backtrace()); } ?> Link to comment https://forums.phpfreaks.com/topic/160418-php-debug_backtrace-just-gives-me-array0/#findComment-846521 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.