Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
178 views

debug_backtrace() from registered shutdown function in PHP

While tinkering for an answer to this question, I found that debug_backtrace() doesn't trace beyond the function registered to register_shutdown_function(), when called from within it. This was ...
2
votes
2answers
1k views

PHP: friend classes and ungreedy caller function/class

Is there any way to get the caller function with something else than debug_backtrace()? I'm looking for a less greedy way to simulate scopes like friend or internal. Let's say I have a class A and a ...
1
vote
2answers
36 views

Explanation of what this backtrace is telling me

I've got a program, randomly when a device disconnects or connects I get a crash. when I run a bt command in gdb I get the following: #0 0x00007fff881cf150 in objc_msgSend_vtable5 () #1 ...
1
vote
1answer
206 views

PHP - debug_backtrace() crashes - what can I do?

I looked at the messages I could find, but didn't find an answer that appears to help. I have a routine that calls debug_backtrace() and then cycles through the elements, outputting them in a nice ...
1
vote
3answers
234 views

debug_print_backtrace doesn't work

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); ...
1
vote
2answers
194 views

Trying to debug a symfony app showing the list of all the functions called, debug_backtrace() doesn't fits me

im trying to debug a symfony app. I've added a debug_backtrace() calling to this function below. It outputs a list of functions called, but the save() function (that is just before the ...
0
votes
1answer
131 views

How can I remove sensitive data from the debug_backtrace function?

I am using print_r(debug_backtrace(), true) to retrieve a string representation of the debug backtrace. This works fine, as print_r handles recursion. When I tried to recursively iterate through the ...
0
votes
3answers
498 views

Is debug_backtrace() safe for serious usage in production environment?

It's functionality is so strong that I worry about its stability and performance. What do you think? UPDATE What I'm doing is this: $old_dir = getcwd(); chdir( dirname($included_file) ); ...