예제 #1
0
파일: zshellz.php 프로젝트: sinfocol/gwf3
function zreloadGetDebug()
{
    $data = GWF_Session::getSessData();
    foreach ($data as $key => $value) {
        if (Common::strStartsWith($key, 'csrf')) {
            continue;
        }
        if (in_array($key, array('sess_expire', 'returnto', 'user'))) {
            continue;
        }
        var_dump($key);
        var_dump($value);
    }
}