有人能帮帮我吗? 当我在实时服务器中读取cookie时,cookie会在实时服务器中返回加密数据。但是在本地cookie中返回解密数据。 Cookie配置如下
$this->Cookie->name = 'rememberMe';
$this->Cookie->secure = false;
$this->Cookie->key = 'key';
$this->Cookie->httpOnly = true;
$this->Cookie->type('rijndael');
我希望在读取cookie时cookie返回解密数据。 有人可以帮帮我吗?