ZBlogPHP::GetToken PHP Method

GetToken() public method

获取会话Token
public GetToken ( $s = '' ) : string
$s
return string
    public function GetToken($s = '')
    {
        return md5($this->guid . $this->user->Guid . $s . date('Ymdh'));
    }
ZBlogPHP