


PHP session control cookie and Session processing_PHP tutorial
In PHP, cookies and sessions are usually used for registration, login and recording user information, but there are big differences between cookies and sessions. Let’s take a look at them together.
Session Introduction: HTTP (Hypertext Transfer Protocol) defines the transmission of text, graphics, video and all over the World Wide Web (WWW)
All other data rules. HTTP is a stateless protocol, which means that the processing of each request is related to the previous or following
The request is irrelevant. Although this simplified implementation has made an outstanding contribution to the popularity of HTTP, it is not suitable for those who want to create complex
For web application developers, this is a bit confusing. In order to solve this problem, there is a method on the client
A small amount of information (cookies) is stored on the machine.
Due to cookie size limitations, quantity and other reasons, developers have proposed another solution: session will
Word processing.
one. Cookie
Applications
Set cookies: The setcookie() function can generate a cookie file on the client, and this file can be saved to
Period time, name, value, etc.
Create cookie
The code is as follows | Copy code |
代码如下 | 复制代码 |
setcookie(‘name’,'Lee’,time()+(7*24*60*60));//设置一个过期时间为7天的cookie ?> |
?>
Parameter 1: cookie name
Parameter 3: cookie expiration time
View cookies
代码如下 | 复制代码 |
echo $_COOKIE['name']; ?> |
The code is as follows | Copy code | ||||
echo $_COOKIE['name'];
|
Delete cookies
The code is as follows | Copy code |
setcookie(‘name’,”); setcookie(‘name’,’Lee’,time()-1); ?>
|
1. Must be set before the content of the HTML file is output; 2. Different browsers handle cookies inconsistently, and sometimes incorrect results may occur.
3. The restriction is on the client side. The maximum number of cookies that a browser can create is 30, and each cookie cannot be
More than 4KB, the total number of cookies that can be set by each WEB site cannot exceed 20.
代码如下 | 复制代码 |
session_start(); $_SESSION['name'] = ‘Lee’; echo $_SESSION['name']; ?> |
2. Session
代码如下 | 复制代码 |
session_start(); $_SESSION['name'] = ‘Lee’; if (isset($_SESSION['name'])) { echo $_SESSION['name']; } ?> |
The code is as follows | Copy code |
session_start(); $_SESSION['name'] = 'Lee'; echo $_SESSION['name']; ?> |
The code is as follows | Copy code |
session_start(); $_SESSION['name'] = 'Lee'; if (isset($_SESSION['name'])) { echo $_SESSION['name']; } ?> |
Delete session
代码如下 | 复制代码 |
session_start(); $_SESSION['name'] = ‘Lee’; unset($_SESSION['name']); echo $_SESSION['name']; ?> |
Destroy all sessions
代码如下 | 复制代码 |
session_start(); $_SESSION['name'] = ‘Lee’; $_SESSION['name2'] = ‘Lee’; session_destroy(); echo $_SESSION['name']; echo $_SESSION['name2']; ?> |
The difference and relationship between cookie and session
•Storage location:
1. The session is stored on the server location, and session-related configurations can be configured through php.ini
2. Cookies are stored on the client (actually they can be divided into two types:
1. Persistent cookie, the time when the cookie is set, is stored on the hard disk in the form of a file,
2. Session cookie, no cookie time is set, and the life cycle of the cookie is to disappear before closing the browser. Generally, it will not be saved on the hard disk, but on the memory)
The relationship between cookie and session
Cookie sent via http header:
Cookie name=PHP%BB%B4%B1%B1; PHPSESSID=cpt2ah3pi4cu7lo69nfbfllbo7
PHPSESSID is an important parameter associated with the server session
Look at the session file again: sess_cpt2ah3pi4cu7lo69nfbfllbo7
The generation format of session_id is: sess_ plus a string of PHPSESSID values
We can understand it this way:
When the program needs to create a session for a client's request, the server first checks whether the client's request already contains a session identifier (called session id). If it does, it means that this client has been used before. Once a session is created, the server will retrieve the session and use it according to the session id (if it cannot be retrieved, it will create a new one). If the client request does not include the session id, a session will be created for the client and a session will be generated associated with this session. The session id, the value of the session id should be a string that is neither repeated nor easy to find patterns to counterfeit. This session id will be returned to the client in this response for storage. The method of saving this session ID can use cookies, so that during the interaction process, the browser can automatically send this identification to the server according to the rules. Generally, the name of this cookie is similar to SEEESIONID
Configuration related to session and cookie in php.ini
1,session.use_cookie = 1
Whether to use the Cookie method to pass the session id value. The default is 1, which means enabled.
2,session.name = PHPSESSID
Whether the cookie passes sessioin_id or the GET method passes session_id, the key value needs to be used. Their formats are Cookie: sess_name=session_id; and /path.php?sess_name=session_id, where sess_name is specified here.
3,session.use_only_cookies = 0
Indicates that only the session id is passed using the Cookie method. We have said that in addition to cookies, there is also the GET method for passing cookies. The GET method is an unsafe method. When cookies are disabled on the user side, the GET method will be used to pass the session_id. You can use this setting to pass the session_id using the GET method.
4. session.cookie_lifetime = 0, session.cookie_path = / and session.cookie_domain =
If you use the Cookie method to pass session_id, the cookie valid domain, directory and time are specified here. Corresponding to the formal parameters $expire, $path and $domain of the setcookie() function respectively. Among them, cookie_lifetime=0 means that the cookie will not be deleted until the browser is closed. These values can also be modified using the session_set_cookie_params() function.
5,session_name([string $name])
Get or update session_name. If name is passed, it means that the default name PHPSESSID (specified by session.name) is not used, otherwise the current session_name is obtained. Note: If session_name is set, it must be called before session_start() to take effect.
6,session_id([string $id])
Similar to session_name(), but it is a method to read or set session_id. Similarly, if session_id is set, it must be called before session_start() to be effective.
7, session_set_cookie_params() and session_get_cookie_params()
The three php.ini settings of session.cookie_lifetime, session.cookie_path and session.cookie_domain can be reset through session_set_cookie_params(). Session_get_cookie_params() obtains the values of these settings.
Here I made a table to summarize their differences and similarities:

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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











PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

PHP is suitable for web development, especially in rapid development and processing dynamic content, but is not good at data science and enterprise-level applications. Compared with Python, PHP has more advantages in web development, but is not as good as Python in the field of data science; compared with Java, PHP performs worse in enterprise-level applications, but is more flexible in web development; compared with JavaScript, PHP is more concise in back-end development, but is not as good as JavaScript in front-end development.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.
