Public Member Functions | |
| __construct ($trace=NULL) | |
| Constructor. | |
| getSlices () | |
| Returns all slices of this backtrace, ordered from last call to first call. | |
| __toString () | |
| Converts this backtrace to string. | |
| toString ($indent= '') | |
| Converts this backtrace to string. | |
Private Attributes | |
| $slices = NULL | |
| Multiple spunQ_BacktraceSlice objects, ordered from last call to first call. | |
| $trace | |
| The intermediate storage for the backtrace as returned by debug_backtrace(). | |
Definition at line 6 of file Backtrace.class.php.
| spunQ_Backtrace::__construct | ( | $ | trace = NULL |
) |
Constructor.
| $trace | A backtrace as provided by PHP (debug_backtrace()). |
Definition at line 26 of file Backtrace.class.php.
| spunQ_Backtrace::__toString | ( | ) |
Converts this backtrace to string.
Definition at line 71 of file Backtrace.class.php.
| spunQ_Backtrace::getSlices | ( | ) |
Returns all slices of this backtrace, ordered from last call to first call.
Definition at line 47 of file Backtrace.class.php.
| spunQ_Backtrace::toString | ( | $ | indent = '' |
) |
Converts this backtrace to string.
| $indent | The amount of indent to use for the code. |
Definition at line 80 of file Backtrace.class.php.
spunQ_Backtrace::$slices = NULL [private] |
Multiple spunQ_BacktraceSlice objects, ordered from last call to first call.
Will be initialized upon first call to getSlices().
Definition at line 13 of file Backtrace.class.php.
spunQ_Backtrace::$trace [private] |
The intermediate storage for the backtrace as returned by debug_backtrace().
Will be used to create the slices once they are requested.
Definition at line 20 of file Backtrace.class.php.
1.5.9