I have PHP 5.3.4 and when I try to use debug_print_backtrace, I don't get anything. When I use vardump, I get an empty array, as you can see below.

index.php:

<?php
define('WP_USE_THEMES', true);

require('./wp-blog-header.php');

var_dump(debug_backtrace());

echo PHP_VERSION;
?>

which returns

...
</html> 
array(0) {
}
5.3.4

Can anyone tell me what is wrong? I am expecting to see everything that was called in the run. Instead I don't see anything.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

debug_backtrace() doesn't show you what has been called so far but the current call stack (i.e. more or less where php would jump to on a return statement until it reaches the top level) when the function is invoked.
You might be interested in a profiler like e.g. the one implemented in XDebug plus something to analyse the data like e.g. kcachegrind.

link|improve this answer
If you're in the very first PHP document loaded by your application, i.e. not in a function or include file, you can echo __FILE__ and __LINE__ to output the current file name and line number. – Michael Butler Feb 1 at 15:40
feedback

I do not get your problem, if you are checking the backtrace from index.php then of course it's empty. State your goal please, what would you like to see?

link|improve this answer
Why would it be empty, please explain. – Arlen Beiler Feb 9 '11 at 16:02
@Arlen, you haven't called anything therefore you're at the top level. Since there is no backtrace the array returns 0. – JohnP Feb 9 '11 at 16:09
I have define('WP_USE_THEMES', true); and require('./wp-blog-header.php'); before it, shouldn't that do it. – Arlen Beiler Feb 9 '11 at 16:12
No, since even though you've included it, you aren't inside that method when you call the stacktrace. If you want to see the current file that is being run, simply use the FILE magic variable in PHP – JohnP Feb 10 '11 at 5:29
feedback

If you're really after Code Coverage (which it sounds like from your description) then XDebug is useful, or see the responses to this SO question

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.