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 manually add statement to do it your