如何在php中设置cookie,在js中获取
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在php中设置cookie,在js中获取相关的知识,希望对你有一定的参考价值。
<?php
setcookie("key","value",0,"/");
?>
<script>
function getCookie(key){
if (document.cookie.length > 0){
c_start = document.cookie.indexOf(c_name + "=");
if (c_start != -1){
c_start = c_start + c_name.length + 1;
c_end = document.cookie.indexOf(";", c_start);
if (c_end == -1){
c_end = document.cookie.length;
}
return unescape(document.cookie.substring(c_start, c_end));
}
}return "";
}
alert(getCookie(key));
//打印cookie的值
</script>
以上是关于如何在php中设置cookie,在js中获取的主要内容,如果未能解决你的问题,请参考以下文章
你如何在 PHP 中设置使用 HttpOnly cookie