如何知道 cakephp 中是否设置了 cookie
我已经向 cakephp Cookie 写入了一个数组。我可以完美地执行读写操作。但是有没有直接的方法可以知道某些 cookie 是否设置了呢? 。我的意思是像
if($this->Cookie('somevalue')==false) {
return;
}
I've wrote an array to cakephp Cookie. I could perform read and write operations perfectly. But is there any direct way to know whether some cookie set or not ? . I mean like
if($this->Cookie('somevalue')==false) {
return;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
在 2.3 中,他们添加了 $this->Cookie->check('key');你可以在这里看到它
In 2.3 they added $this->Cookie->check('key'); you can see it here
@苏迪尔
@newRehtse
从什么时候可以使用isset()或empty()中的方法?
这对我来说是新闻..^^
所以正确的是
@ sudhir
@ newRehtse
since when can use you methods in isset() or empty()?
thats news to me..^^
so correct would be
您可以尝试读取该值并检查它是否已设置,就像@Lake告诉您的那样,但是在Cakephp中:
也许有更好的方法,但我没有在书中找到它, Cookie 组件
You can try to read the value and check if it is set, like @Lake told you, but in Cakephp:
Maybe there is a better way but I didn't find it in the book, Cookie component
您的意思是:
希望有帮助
Do you mean:
Hope it helps