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.