clean up any output before kint and place the dump at the top of page:
- Kint::dump()
*****
expand all nodes on display:
! Kint::dump()
*****
dump variables disregarding their depth:
+ Kint::dump()
*****
return output instead of displaying it:
@ Kint::dump()
*****
force output as plain text
~ Kint::dump()
Modifiers are supported by all dump wrapper functions, including Kint::trace(). Space is optional.
You can also use the following shorthand to display debug_backtrace():
Kint::dump( 1 );
Passing the result from debug_backtrace() to kint::dump() as a single parameter will display it as trace too:
$trace = debug_backtrace( true );
Kint::dump( $trace );
Or simply:
Kint::dump( debug_backtrace() );