Home > php教程 > php手册 > php session和cookie的区别

php session和cookie的区别

WBOY
Release: 2016-06-13 09:36:39
Original
1376 people have browsed it

php 中 cookie 和session 的区别:

1、cookie数据存放在客户的浏览器上,session数据放在服务器上。

2、cookie不是很安全,别人可以分析存放在本地的COOKIE并进行COOKIE欺骗,考虑到安全应当使用session。

3、session会在一定时间内保存在服务器上。当访问增多,会比较占用你服务器的性能, 考虑到减轻服务器性能方面,应当使用COOKIE。

4、单个cookie在客户端的限制是3K,就是说一个站点在客户端存放的COOKIE不能3K。

所以个人建议:将登陆信息等重要信息存放为SESSION,其他信息如果需要保留,可以放在COOKIE中

您可能感兴趣的文章

  • php require和include的区别
  • phpMyAdmin Cannot start session without errors错误解决办法
  • PHP中return 和 exit 、break和contiue 区别与用法
  • php中echo,print,print_r,var_export,var_dump 的用法与区别
  • PHP中跳出多重循环使用break,continue,goto,return,exit的用法和区别
  • php Output Control 深入理解 ob_flush 和 flush 的区别
  • window.navigate 与 window.location.href 的使用区别详解
  • php中empty,is_null,isset的区别详解
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template