在 Zend MVC 项目中哪里创建仅保存用户 ID 的 cookie?

发布于 2024-09-26 16:09:50 字数 401 浏览 4 评论 0原文

我正在使用 Zend MVC 项目。 我的任务:添加只有用户唯一 ID 的 cookie。

问题:我不知道在哪里创建 cookie。

放置创建 cookie 的选项,我关心的是:

  1. bootstrap.php init()/run()

  2. index.php (没有意义)

  3. 在控制器中

我的项目结构:

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:

  1. bootstrap.php init()/run()

  2. index.php (not make sense)

  3. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

生生漫 2024-10-03 16:09:50

我把它放在 Bootstrup.php 中,我刚刚创建了一个名为 _initUserUniqueId 的新方法:

protected function _initUserUniqueId(){

    $uniq = uniqid();
    if(!isset($_COOKIE['f_uniq'])){ 
        setcookie('f_uniq', $uniq, time() + 60 * 60 * 24 * 365, '/');
    }
}

I've put it in the Bootstrup.php, I just created new method called _initUserUniqueId:

protected function _initUserUniqueId(){

    $uniq = uniqid();
    if(!isset($_COOKIE['f_uniq'])){ 
        setcookie('f_uniq', $uniq, time() + 60 * 60 * 24 * 365, '/');
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文