devel_session()Menu callback: display the session.
sites/all/modules/devel/devel.module, line 1291
<?php
function devel_session() {
global $user;
$output = kprint_r($_SESSION, TRUE);
$headers = array(t('Session name'), t('Session ID'));
$output .= theme('table', $headers, array(array(session_name(), session_id())));
return $output;
}
?>