how to read cookie value in cakephp view file

前端 未结 4 1877
执笔经年
执笔经年 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:56

    You must read it in the controller and set the value to make it available to the view:

    $this->set('myValue', $this->Cookie->read('cookieValue'));
    

    Then in the view, you can access the variable $myValue to return the value of 'cookieValue':

    
    

提交回复
热议问题