Re: [PHP] call stack

2002-02-08 Thread S.Murali Krishna
I had a similar requierment. When I searched for it, came to know about APD ( Advanced PHP Debugger ) its a extension. We need to do some confs in php.ini for this. APD is somewhat better in tracing stacks. Try your best. [EMAIL PROTECTED] On Fri, 8 Feb 2002, Martin Towell wrote: I know this

[PHP] call stack

2002-02-07 Thread Martin Towell
I know this comes up again, and again, and I'm bringing it up again now :) There's been requests for a function that displays the current heirachy of calls I was just thinking about this - php must maintain a stack so that it knows what function to return to when another function exits, why can't

[PHP] call stack access

2001-12-25 Thread akul
Hello php-general, I want to make good error messages for my libraries, but can't because there is no way to get __FILE__ and __LINE__ for calling point. I can print only unusable point inside my library where trigger_error() is called. Is here any way to do this? May be I miss