Gajus\Bugger\Bugger::stack PHP Méthode

stack() public static méthode

Stacks information about the expression and dumps the stack at the end of the script execution.
public static stack ( mixed $expression = null ) : null
$expression mixed The variable you want to dump.
Résultat null
    public static function stack($expression = null)
    {
        while (ob_get_level()) {
            ob_end_clean();
        }
        static::$tracestack[] = static::getBacktrace();
        ob_start();
    }