currentPage(), time() + 31536000); 但我想在单击某个链接时-6ren">
gpt4 book ai didi

php - 我们可以使用 javascript 检索和设置 PHP cookie 吗

转载 作者:行者123 更新时间:2023-12-02 07:37:07 25 4
gpt4 key购买 nike

我已经使用 PHP 设置了一个 cookie,

setcookie("redirect", $this->currentPage(), time() + 31536000);  

但我想在单击某个链接时使用 javascript 检索此 cookie 的值。我该怎么做?

最佳答案

是的,这是可能的。

试试这个来读取 cookie:

function getCookie(c_name) {
var i,x,y,ARRcookies=document.cookie.split(";");
for (i=0;i<ARRcookies.length;i++) {
x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
x=x.replace(/^\s+|\s+$/g,"");
if (x==c_name){
return unescape(y);
}
}
}

// get cookie foo
var foo = getCookie('foo');

试试这个来设置 cookie:

/**
* Sets a cookie
*/
function setCookie(c_name,value,exdays) {
var exdate=new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString());
document.cookie=c_name + "=" + c_value;
}

// set a cookie 'foo=bar' for 3 days
setCookie('foo', 'bar', 3);

关于php - 我们可以使用 javascript 检索和设置 PHP cookie 吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15110020/

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