在 Zend MVC 项目中哪里创建仅保存用户 ID 的 cookie?
我正在使用 Zend MVC 项目。 我的任务:添加只有用户唯一 ID 的 cookie。
问题:我不知道在哪里创建 cookie。
放置创建 cookie 的选项,我关心的是:
bootstrap.php init()/run()
index.php (没有意义)
在控制器中
我的项目结构:
application/bootstrap.php
public/index.php
请帮助我,如果你能给出例子那就太好了。
谢谢, 约瑟夫
I am working with Zend MVC project.
MY mission: add cookie that will have only user unique id.
Problem:I don't know where create a cookie.
Options to place create a cookie, that I thing about:
bootstrap.php init()/run()
index.php (not make sense)
In Controllers
My project structure:
application/bootstrap.php
public/index.php
Please help me, if you can give example it will be great.
Thanks,
Yosef
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我把它放在 Bootstrup.php 中,我刚刚创建了一个名为 _initUserUniqueId 的新方法:
I've put it in the Bootstrup.php, I just created new method called _initUserUniqueId: