how to read cookie value in cakephp view file

前端 未结 4 1879
执笔经年
执笔经年 2021-01-15 15:40

in this i write the cookie value in controller file. i wanna read that cookie value in view file than how it possible.

4条回答
  •  -上瘾入骨i
    2021-01-15 15:49

    After all CakePHP is a PHP framework, you can read them by $_COOKIE :)

    Bear in mind that you should use:

    $this->Cookie->write('myValue', $value, false);
    

    in your controller, because otherwise it will be encrypted and it will be hard to use :)

提交回复
热议问题