Re: [PHP] Function Stack

2003-02-01 Thread Michael Sims
On Sat, 1 Feb 2003 07:08:05 -0500, you wrote: >Is there any way to access the Function Stack from php? Starting with PHP 4.3.0 you can use debug_backtrace(), which returns an array of caller stack information. You might want to build a wrapper around it which formats the information the way you

Re: [PHP] Function Stack

2003-02-01 Thread Matt
- Original Message - From: "Joshua Moore-Oliva" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, February 01, 2003 7:08 AM Subject: [PHP] Function Stack > Is there any way to access the Function Stack from php? Not built in, but you could manual

[PHP] Function Stack

2003-02-01 Thread Joshua Moore-Oliva
Is there any way to access the Function Stack from php? I would really like it for debugging, ala java style or C debugging style, where I could get a list of function like >From afunction line 83 >From bfunction line 179 >From cfunction line 345 Error here.. If I could somehow access the fun