php 之 cookie 跟 session 简单解读(笔记)
php 之 cookie 和 session 简单解读(笔记)
cookie:保存值在本地,也就是客户端。优点是可以设置保存多长长时间,但不安全
session : 保存在服务器,关掉浏览器就木了
如:登陆页面有个文本框的名字为 "username",登陆成功后在显示页(xs.php)面显示?登陆的用户名 ,并有个退出的文字按钮
登陆页面代码如下:
$username=$_POST['username']; //得到文本框中的值,这里就是用户名setcookie('username',$username,time()+3600);// 这里设置 cookie的名称,指向设置的值(就是指向上面用户名),然后是保存时间为3600
显示页面代码:?
echo "用户名为:".$_COOKIE[username]; //取得用户名 echo "<a href="xs.php?out=out" mce_href="xs.php?out=out">退出</a>"; //给一退出用户名的按钮链接,原理就是重新设置cookie的值为空 if($_GET['out']) { setcookie('username',''); //这里就设置了为空 echo "<mce:script type="text/javascript"><!--location.href='login.php'// --></mce:script>"; //重新跳转到登陆页面 }
?? ?上面最后 echo 是这样的:echo "<script>location.href='login.php'</script>";
session?
?登陆页面代码
session_start(); //启动session,这里必须写文件的最上面$username=$_POST['username'];$_SESSION[username]=$username;
?显示页面:
session_start();echo "欢迎您".$_SESSION[username];echo "<a href="xs.php?out=out" mce_href="xs.php?out=out">退出</a>";if($_GET['out']) { unset($_SESSION[username]); //这里就是清除session echo "<mce:script type="text/javascript"><!--location.href='login.php'// --></mce:script>"; }
?

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The problem was found in the springboot project production session-out timeout. The problem is described below: In the test environment, the session-out was configured by changing the application.yaml. After setting different times to verify that the session-out configuration took effect, the expiration time was directly set to 8 hours for release. Arrived in production environment. However, I received feedback from customers at noon that the project expiration time was set to be short. If no operation is performed for half an hour, the session will expire and require repeated logins. Solve the problem of handling the development environment: the springboot project has built-in Tomcat, so the session-out configured in application.yaml in the project is effective. Production environment: Production environment release is

Session failure is usually caused by the session lifetime expiration or server shutdown. The solutions: 1. Extend the lifetime of the session; 2. Use persistent storage; 3. Use cookies; 4. Update the session asynchronously; 5. Use session management middleware.

Solution to the cross-domain problem of PHPSession In the development of front-end and back-end separation, cross-domain requests have become the norm. When dealing with cross-domain issues, we usually involve the use and management of sessions. However, due to browser origin policy restrictions, sessions cannot be shared by default across domains. In order to solve this problem, we need to use some techniques and methods to achieve cross-domain sharing of sessions. 1. The most common use of cookies to share sessions across domains

Solution to the problem that the php session disappears after refreshing: 1. Open the session through "session_start();"; 2. Write all public configurations in a php file; 3. The variable name cannot be the same as the array subscript; 4. In Just check the storage path of the session data in phpinfo and check whether the sessio in the file directory is saved successfully.

SPDIFOUT connection line sequence on the motherboard. Recently, I encountered a problem regarding the wiring sequence of the wires. I checked online. Some information says that 1, 2, and 4 correspond to out, +5V, and ground; while other information says that 1, 2, and 4 correspond to out, ground, and +5V. The best way is to check your motherboard manual. If you can't find the manual, you can use a multimeter to measure it. Find the ground first, then you can determine the order of the rest of the wiring. How to connect motherboard VDG wiring When connecting the VDG wiring of the motherboard, you need to plug one end of the VGA cable into the VGA interface of the monitor and the other end into the VGA interface of the computer's graphics card. Please be careful not to plug it into the motherboard's VGA port. Once connected, you can

The default expiration time of session PHP is 1440 seconds, which is 24 minutes, which means that if the client does not refresh for more than 24 minutes, the current session will expire; if the user closes the browser, the session will end and the Session will no longer exist.

When you are using a PHP session (Session), sometimes you will find that the Session can be read normally in one file, but cannot be read in another file. This may confuse you since session data is supposed to be shared across the entire application. This article will explain how to correctly read and write PHP session data in multiple files.

Problem: Today, we encountered a setting timeout problem in our project, and changes to SpringBoot2’s application.properties never took effect. Solution: The server.* properties are used to control the embedded container used by SpringBoot. SpringBoot will create an instance of the servlet container using one of the ServletWebServerFactory instances. These classes use server.* properties to configure the controlled servlet container (tomcat, jetty, etc.). When the application is deployed as a war file to a Tomcat instance, the server.* properties do not apply. They do not apply,
