Blogger Information
Blog 17
fans 0
comment 0
visits 19017
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP中的会话控制(cookie、session)
嘬一口啊
Original
873 people have browsed it
  • cookie的两种设置方式

cookie存储在客户端

1.setcookie()设置cookie

  1. setcookie('cookie名称','cookie值','cookie存活时间','cookie 的服务器路径','cookie的有效域名','规定是否需要在安全的 HTTPS 连接来传输 cookie,是设为true,否则false';
  2. 注;常用参数前三个,后面选用
  3. 例:
  4. setcookie('username','zhangsan',time()+3600*24,'/','.cc.com','1');

2.通过header响应头设置cookie

  1. header('Set-cookie:cookie名=cookie值')
  2. 例:
  3. header('Set-cookie:a=1');
  1. 注意:如果设置cookie时不添加生存时间那么当浏览器关闭时会自动清除掉没有设置生存时间的cookie
  2. cookie设置后再第二次加载时才能访问到,第一次在响应头中显示,第二次在请求头中显示[响应头比请求头慢一步]
  • 更新cookie

注意:更新cookie,参数要一一对应

  1. 更新cookie [就是在设置一个cookie名字和要修改的那个cookie名相同把cookie值或其他参数修改,直接覆盖上一个同名的cookie]
  2. 例:
  3. setcookie('user','zhangsan');
  4. // 更新cookie值
  5. setcookie('user','lisi');
  6. // 打印查看cookie是否更新成功
  7. // 使用超全局数组$_COOKIE来打印输出
  8. var_dump($_COOKIE['user']); // 输出 "lisi"
  • 打印输出cooie值
  1. 使用超全局数组$_COOKIE来打印输出查看cookie
  2. // 打印输出全部cookie的值
  3. var_dump($_COOKIE);
  4. // var_dump($_COOKIE['指定的cookie名称']);打印输出指定值
  5. 例:
  6. var_dump($_COOKIE['user']); // 输出 lisi
  • 销毁session

注意:销毁cookie时如果该cookie有写路径销毁的时候一定要把路径参数写上

  1. 销毁cookie setcookie('要销毁的cookie的名',值设置为null,过期时间time()-3600/或0);
  2. 例:
  3. setcookie('username','',time()-3600,'/');
  • 设置cookie时值中有特殊字符让特殊字符正常显示
  1. 例:
  2. // 设置cookie是特殊字符正常显示
  3. setcookie('email','123@qq.com'); // 浏览器显示 Set-Cookie: email=123%40qq.com [@被解析成了一个%]
  4. // 让特殊字符正常输出
  5. setrawcookie('email','123@qq.com'); // 浏览器显示 Set-Cookie: email=123@qq.com

PHP会话控制-session

session存储在服务器端

  • 设置或使用session第一步先开启session
  1. session_stat();
  • 设置session
  1. 例:
  2. $_SESSION["test"] = "ceshi";
  • 输出查看session
  1. // 使用超全局数组$_SESSION
  2. // 查看指定session值 $_SESSION['要查看的session的名称'];
  3. 例:
  4. var_dump($_SESSION['test']);
  5. // 查看全部session值
  6. 例:
  7. var_dump($_SESSION);
  • 销毁session
  1. //unset($_SESSION['要销毁的session名称'])
  2. 例:
  3. unset($_SESSION['test']);
  4. // session_destroy(); 销毁所有session,没有参数
  5. 例:
  6. session_destroy();
  1. // 登录页面
  2. <?php
  3. // 获取post提交的值
  4. $username = $_POST['username'];
  5. $password = $_POST['password'];
  6. // echo $username,$password;
  7. // 清除cookie中所有的用户信息
  8. function clearCookies(){
  9. setcookie("username",null,0);
  10. setcookie("isLogin",null,0);
  11. }
  12. // 判断是否提交数据
  13. if (isset($_POST['sub'])) {
  14. // 判断用户名和密码是否正确
  15. if ($username == '张三' && $password=='123456') {
  16. // 清除之前的登录用户cookie
  17. clearCookies();
  18. // 信息正确设置cookie
  19. setcookie('username',$username,time()+3600*7);
  20. setrawcookie('isLogin','1',time()+3600*7);
  21. // 设置完成直接跳转页面
  22. header("Location:index.php");
  23. } else {
  24. exit('用户名或密码不正确');
  25. }
  26. }
  27. // 当点击退出时跳转到该页面并在get中附带action动作,值等于logOut
  28. if ($_GET['action'] == "logOut") {
  29. clearCookies();
  30. }
  31. ?>
  32. <!DOCTYPE html>
  33. <html lang="en">
  34. <head>
  35. <meta charset="UTF-8">
  36. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  37. <title>用户登录</title>
  38. </head>
  39. <body>
  40. <h1>用户登录</h1>
  41. <form action="" method="post">
  42. <table border="1">
  43. <tr>
  44. <td>用户名</td>
  45. <td>
  46. <input type="text" name="username" placeholder="请输入用户名">
  47. </td>
  48. </tr>
  49. <tr>
  50. <td>密码</td>
  51. <td>
  52. <input type="password" name="password" placeholder="请输入密码">
  53. </td>
  54. </tr>
  55. <tr>
  56. <td align="center" colspan="2">
  57. <input name="sub" type="submit" value="提交111111">
  58. </td>
  59. </tr>
  60. </table>
  61. </form>
  62. </body>
  63. </html>
  1. <?php
  2. // 登录成功页面
  3. // 判断cookie中sLogin是否存在如果存在值是否等于1满足这两项进入登录,否则拦截
  4. if (!isset($_COOKIE['isLogin']) || $_COOKIE['isLogin'] !="1") {
  5. exit('<script>
  6. alert("请您先登录再访问");
  7. location.href="login.php";
  8. </script>');
  9. }
  10. ?>
  11. <!DOCTYPE html>
  12. <html lang="en">
  13. <head>
  14. <meta charset="UTF-8">
  15. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  16. <title>主页</title>
  17. </head>
  18. <body>
  19. <h1>主页</h1>
  20. <?php echo "欢迎您" . $_COOKIE['username']?>
  21. <a href="login.php?action=logOut">退出</a>
  22. </body>
  23. </html>
Correcting teacher:GuanhuiGuanhui

Correction status:qualified

Teacher's comments:写的很好!cookie和session一些其它的函数可以看一看,试一试。
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post