PHP 检查cookie是否存在,是否等于NULL,或者是否存在
PHP To check if cookie is there, equal to NULL, or exists
我在 PHP 中有一个登录表单和一个处理器。当我的所有代码都正确时,即使 cookie 存在,我的 PHP 仍然会重定向回登录表单...
<script >
function redir2()
// Original JavaScript code by Chirp Internet: www.chirp.com.au
// Please acknowledge use of this code by including this header.
{
function getCookie(user) {
var re = new RegExp(name + "=([^;]+)");
var value = re.exec(document.cookie);
return (value != null) ? decodeURI(value[1]) : null;
}
// End of code by Chirp Internet, rest of code done by Joey's Place
Productions, Ltd.
document.write(getCookie("user")); // <--- For debugging so i can see if
cookie('user') == Null || Value
var cookie = getCookie("user");
if (cookie == "" || "null") {
window.location.href = "/a.html";
} else {}
}
</script>
<?php
if(isset($_cookie['user'])) {
if($_COOKIE['user'] == '8877321829'){
echo 'debug1' ;
}
else{
echo "<script> redir2(); </script>";
}
} else {
echo "<script> redir2() </script>";
}
有人能告诉我我做错了什么以及需要修复什么吗...抱歉我奇怪的缩进和代码。我是初学者,因为这只是我的第二个 post。如果您需要更多信息,我也可以给您登录站点的代码
$_cookie
应该是大写。将其更改为 $_COOKIE
,它应该可以工作。
我在 PHP 中有一个登录表单和一个处理器。当我的所有代码都正确时,即使 cookie 存在,我的 PHP 仍然会重定向回登录表单...
<script >
function redir2()
// Original JavaScript code by Chirp Internet: www.chirp.com.au
// Please acknowledge use of this code by including this header.
{
function getCookie(user) {
var re = new RegExp(name + "=([^;]+)");
var value = re.exec(document.cookie);
return (value != null) ? decodeURI(value[1]) : null;
}
// End of code by Chirp Internet, rest of code done by Joey's Place
Productions, Ltd.
document.write(getCookie("user")); // <--- For debugging so i can see if
cookie('user') == Null || Value
var cookie = getCookie("user");
if (cookie == "" || "null") {
window.location.href = "/a.html";
} else {}
}
</script>
<?php
if(isset($_cookie['user'])) {
if($_COOKIE['user'] == '8877321829'){
echo 'debug1' ;
}
else{
echo "<script> redir2(); </script>";
}
} else {
echo "<script> redir2() </script>";
}
有人能告诉我我做错了什么以及需要修复什么吗...抱歉我奇怪的缩进和代码。我是初学者,因为这只是我的第二个 post。如果您需要更多信息,我也可以给您登录站点的代码
$_cookie
应该是大写。将其更改为 $_COOKIE
,它应该可以工作。