Backtrace
class Backtrace (View source)
Backtrace helper
Traits
Provides extensions to this object to integrate it with standard config API methods.
Config options
ignore_function_args | array | Replaces all arguments with a ' |
Properties
Methods
Get a configuration accessor for this class. Short hand for Config::inst()->get($this->class, .....).
Gets the uninherited value for the given config option
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 Config_ForClass
config()
Get a configuration accessor for this class. Short hand for Config::inst()->get($this->class, .....).
mixed
stat(string $name)
deprecated
deprecated
Get inherited config value
mixed
uninherited(string $name)
Gets the uninherited value for the given config option
$this
set_stat(string $name, mixed $value)
deprecated
deprecated
Update the config value for a given property
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 mixed
backtrace(mixed $returnVal = false, bool $ignoreAjax = false, array $ignoredFunctions = null)
Render or return a backtrace from the given scope.
static string
full_func_name(object $item, bool $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(array $bt, bool $plainText = false, array $ignoredFunctions = null)
Render a backtrace array into an appropriate plain-text or HTML string.