Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
php会话和cookie的最大值是多少?这是最多可以放入多少字节
$_SESSION['key'] = "here what maximum bytes are possible"; $_COOKIE['key'] = "here what maximum bytes are possible";
$_SESSION您可以保存无限量的数据,没有真正的限制......
$_SESSION
$_COOKIE我猜是在 4000 字节以下吗...(包括日期、名称、值、到期时间)
$_COOKIE
我认为使用会话在其中存储大量信息并不是一个好主意。但是,您可以在会话中存储尽可能多的信息,因为它只是存储在服务器上的一个文件。但是,如果您想存储大量信息,例如文本,我建议您使用数据库。并且永远不要将图像作为 blob 存储在数据库中,因为它只会使其过载。