如何在CakePHP中将cookie值定义和检索为数组?

时间:2011-05-08 16:24:46

标签: cakephp cookies

如何在CakePHP中将cookie值定义和检索为数组?

1 个答案:

答案 0 :(得分:1)

你不需要做任何特殊的事情,因为Cake的CookieComponent会无缝地处理数组。

在您的控制器中,确保您已包含CookieComponent:

var $components = array('Cookie');

在你的行动中,写一个数组:

$this->Cookie->write('test', array('value1', 'value2'));

然后再读回来:

$test = $this->Cookie->read('test');  // $test will be an array