javascript – 使用php中的cookie保存变量

前端之家收集整理的这篇文章主要介绍了javascript – 使用php中的cookie保存变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在过去的两周里,我一直致力于在cookie中保存页面ID,然后在其他页面中检索它.

最后我解决了它,但现在我有一些其他问题我想在我的PHP代码中使用这个id(我在cookie中保存并检索它).

我知道javascript是客户端代码,PHP是服务器端代码,但我必须这样做.这个你能帮我吗.

这是我的javascript代码,它工作得很好,我得到了这行“value.favoriteid”的已保存ID

最佳答案
PHP端读取cookie,用js设置它们是最容易的事情.

Any cookies sent to you from the client will automatically be included
into a $_COOKIE auto-global array if variables_order contains “C”. If
you wish to assign multiple values to a single cookie,just add [] to
the cookie name.
Depending on register_globals,regular PHP variables can be created
from cookies

这里的PHP是一些例子:

PHP 
echo $_COOKIE["your cookie name"];
?>

PHP
print_r($_COOKIE);
?>

It’s not recommended to rely on them as this
feature is often turned off for the sake of security.

http://php.net/manual/en/features.cookies.php

原文链接:https://www.f2er.com/js/429046.html

猜你在找的JavaScript相关文章