gpt4 book ai didi

php - 在 cookie 中将 httponly 属性设置为 false

转载 作者:行者123 更新时间:2023-12-04 15:46:00 33 4
gpt4 key购买 nike

我将如何使用 Laravel 使用 Cookie::Make(或其他东西)制作 cookie 并将 httponly 属性设置为 false?

我想这样做,因为 cookie 包含一个我的 JS 必须能够读取的 key 。

最佳答案

Laravel 为此提供了一个选项,但文档没有显示它。最好的方法是查看源代码。如果您查看 CookieJar.php 文件 here,您将看到 httpOnly 选项。

public function make($name, $value, $minutes = 0, $path = null, $domain = null, $secure = false, $httpOnly = true)

所以只需执行以下操作:
Cookie::make('MyCookie', 'MyValue', 60, null, null, false, false);

关于php - 在 cookie 中将 httponly 属性设置为 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21510810/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com