PHPSESSID 是什么?

What is PHPSESSID?(PHPSESSID 是什么?)
本文介绍了PHPSESSID 是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我在玩饼干.而且我没有任何名为 PHPSESSID 的 cookie.

I'm playing around with cookies. And I dont have any cookies called PHPSESSID.

我需要吗?我可以删除它吗?

Do i need it? Can i remove it?

它的功能"是什么?

if (count($_POST)) {

setcookie("TestCookie", htmlspecialchars($_POST['val']), time()+3600);
}

print_r($_COOKIE);

打印:

Array
(
    [TestCookie] => blabla
    [PHPSESSID] => el4ukv0kqbvoirg7nkp4dncpk3
)

推荐答案

PHP 使用两种方法之一来跟踪会话.如果启用了 cookie,就像您的情况一样,它就会使用它们.

PHP uses one of two methods to keep track of sessions. If cookies are enabled, like in your case, it uses them.

如果 cookie 被禁用,它会使用 URL.虽然这可以安全地完成,但它更难,而且通常不是.参见,例如,会话固定.

If cookies are disabled, it uses the URL. Although this can be done securely, it's harder and it often, well, isn't. See, e.g., session fixation.

搜索它,您会得到很多 SEO 建议.传统观点是您应该使用 cookie,但 php 会以任何一种方式跟踪会话.

Search for it, you will get lots of SEO advice. The conventional wisdom is that you should use the cookies, but php will keep track of the session either way.

这篇关于PHPSESSID 是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to make 5 random numbers with sum of 100(如何制作5个总和为100的随机数)
str_shuffle and randomness(str_shuffle 和随机性)
Algorithm for generating a random number(生成随机数的算法)
What#39;s the disadvantage of mt_rand?(mt_rand 的缺点是什么?)
What is the best way to generate a random key within PHP?(在 PHP 中生成随机密钥的最佳方法是什么?)
How to create a random string using PHP?(如何使用 PHP 创建随机字符串?)