Tagged Questions

23
votes
9answers
10k views

Print PHP Call Stack

I'm looking for a way to print the call stack in PHP. Bonus points if the function flushes the IO buffer.
7
votes
6answers
4k views

How can I get PHP to produce a backtrace upon errors?

Trying to debug PHP using its default current-line-only error messages is horrible. How can I get PHP to produce a backtrace (stack trace) when errors are produced?
3
votes
3answers
137 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 ...
3
votes
2answers
569 views

how to obtain a stack trace when WAMP server crashes?

Some times my WAMP server crashes . I get the following error. HTTP has encountered exception and needs to close. Unreferenced Memory. szAppName : httpd.exe szAppVer : 2.2.11.0 szModName : ...
2
votes
1answer
255 views

NetBeans + xdebug: No stack trace for PHP exceptions

I am a C++/C# programmer who has some experience building websites with PHP. I recently installed NetBeans and xdebug because I couldn't stand working without a debugger anymore. Stepping through the ...
2
votes
3answers
155 views

PHP - Log stacktrace for warnings?

Is it possible to log stacktraces for php warnings? Or catch a warning and error_log() it? There's some code causing warnings in my error log, but it's impossible to know what's causing these ...
1
vote
3answers
54 views

how to make a stack trace as in zend framework?

zend framework how to do a stack trace? Stack trace: # 0 C: \ apache \ www \ itransition \ library \ Zend \ Controller \ Front.php (954): Zend_Controller_Dispatcher_Standard-> dispatch (Object ...
1
vote
0answers
33 views

Print PHP running call stack from outside the PHP

Is there any runtime stack trace feature in PHP, by a given PID of it? (For whom also write Java, I mean jstack.) I got few PHP background process that they are freeze once a while on some unknown ...
1
vote
2answers
69 views

Tracing a previous method call in PHP

Use Case: I'm trying to create a diagnostic test for my unit testing framework that runs each test case and then returns a list of public methods which have not yet been covered by the test case. The ...
1
vote
1answer
95 views

How to get a stack-trace via api-call in xdebug?

We are using xdebug and the tracing works as advertised during code execution via.. function someGetUsersHelper() { xdebug_start_trace(); [SOME CODE HERE] xdebug_stop_trace(); } It ...
1
vote
1answer
50 views

Which order does getTrace return calls?

Probably a trivial question, but in which order does Exception::getTrace return calls? Most recent first or last? I'd like to know before I implement my error handler. BenTheDesigner
1
vote
3answers
1k views

PHP: Callback on Entry/Exit of Class Methods?

Is there a way I can set up callbacks on (or automataically log) method parameters, entries, and exits without making explicit calls within each method? I basically want to log this information to my ...
0
votes
1answer
87 views

How to debug a class redefinition in PHP?

I'm getting a PHP Fatal error: Cannot redeclare class Foo in /directory/ on line 20 error, but I have no idea where it's coming from. I'm always using require_once for this class file, and I'm not ...
0
votes
2answers
206 views

how to avoid strace in php

I'm having PHP + MySQL code base. If MySQL is stopped and during log-in it fails like this: Fatal error: Uncaught exception 'FrameworkException' with message 'Can't connect to local MySQL server ...
0
votes
1answer
372 views

Expand PHP Stack Trace Arguments

On a stack trace returned from a PHP application in development, long string arguments to a function are truncated when display on the error page: Abstract.php(238): ...
0
votes
1answer
286 views

CodeIgniter Stacl Trace

I want to log the stack trace from time to time in my application folder. writing to the log the result of debug_backtrace() , will cause to: Fatal error: Allowed memory size of 33554432 bytes ...
0
votes
2answers
121 views

How do I find the list of functions executed to build a page?

I want the list of all functions executed to a certain point in code, somehow like debug_backtrace() but including functions not in the exact thread that leads to where debug_backtrace() is called. ...