gpt4 book ai didi

php - 如何在 Laravel 5.4 中设置 cookie?

转载 作者:行者123 更新时间:2023-12-01 22:46:58 26 4
gpt4 key购买 nike

我在 laravel 5.4 中有这个功能,但我无法从 cookie 中获取任何内容。

Cookie::queue('currentLang', 'heb', 999999999);

echo $request->cookie('currentLang');

但是我得到了一些长字符串,而不是我设置的。

最佳答案

Laravel 有一个 cookie 助手!

/**
* Create a new cookie instance.
*
* @param string $name
* @param string $value
* @param int $minutes
* @param string $path
* @param string $domain
* @param bool $secure
* @param bool $httpOnly
* @return \Symfony\Component\HttpFoundation\Cookie
*/
function cookie($name = null, $value = null, $minutes = 0, $path = null, $domain = null, $secure = false, $httpOnly = true)
{
$cookie = app(CookieFactory::class);

if (is_null($name)) {
return $cookie;
}

return $cookie->make($name, $value, $minutes, $path, $domain, $secure, $httpOnly);
}

然后使用:

Cookie::get('$name')

关于php - 如何在 Laravel 5.4 中设置 cookie?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44870016/

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