function krumo::session

Same name in other branches
  1. 6.x-1.x krumo/class.krumo.php \krumo::session()

Prints a list of all the values from the <i>$_SESSION</i> array.

@access public @static

File

krumo/class.krumo.php, line 488

Class

krumo
Krumo API

Code

public static function session() {
    // disabled ?
    //
    if (!krumo::_debug()) {
        return false;
    }
    // render it
    //
    ?>
<div class="krumo-title">
This is a list of all the values from the <code><b>$_SESSION</b></code> array.
</div>
    <?php

    return krumo::dump($_SESSION);
}