SS_Backtrace
class SS_Backtrace (View source)
Properties
Methods
Return debug_backtrace() results with functions filtered specific to the debugging system, and not the trace.
Filter a backtrace so that it doesn't show the calls to the debugging system, which is useless information.
Render or return a backtrace from the given scope.
Return the full function name. If showArgs is set to true, a string representation of the arguments will be shown
Render a backtrace array into an appropriate plain-text or HTML string.
Details
static array
filtered_backtrace(null|array $ignoredFunctions = null)
Return debug_backtrace() results with functions filtered specific to the debugging system, and not the trace.
static array
filter_backtrace(array $bt, null|array $ignoredFunctions = null)
Filter a backtrace so that it doesn't show the calls to the debugging system, which is useless information.
static unknown
backtrace(unknown_type $returnVal = false, unknown_type $ignoreAjax = false, $ignoredFunctions = null)
Render or return a backtrace from the given scope.
static string
full_func_name(SS_Object $item, $showArgs = false, int $argCharLimit = 10000)
Return the full function name. If showArgs is set to true, a string representation of the arguments will be shown
static string
get_rendered_backtrace(string $bt, bool $plainText = false, $ignoredFunctions = null)
Render a backtrace array into an appropriate plain-text or HTML string.