how to read cookie value in cakephp view file

前端 未结 4 1884
执笔经年
执笔经年 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条回答
  •  天涯浪人
    2021-01-15 15:52

    Use Cookie components in AppController:

    $components = array('Cookie');
    

    Define following in AppController's beforeFilter():

    $this->set('cookieHelper', $this->Cookie);
    

    So that you could use it in view:

    $cookieHelper->read('something');
    

提交回复
热议问题