Detailed explanation of how to use cookies in PHP

墨辰丷
Release: 2023-03-27 16:20:01
Original
1311 people have browsed it

This article mainly introduces the use of cookies in PHP: adding/updating/deleting/getting cookies, automatically filling in the user's user name and password, and determining whether to log in for the first time. It has a good reference value. Let's take a look at it with the editor

The use of cookies in PHP---add/update/delete/get cookies and automatically fill in the user's user name and password and determine whether it is the first time to log in

What is a cookie

The server saves user information on the client, such as login name, password, etc.

These data are like cookies. The amount of data is not large. The server can read it from the client when needed and save it in the client's browser cache directory.

① When the browser accesses, cookie.php, the server will also send an http response with Set-Cookie:name=zxf;expire=Wed,21-Sep-2017 20:14 GMT. When the browser obtains the message, it will save the cookie information. To local disk

② If we don’t have time (the third parameter)

The cookie will not be saved to the client. When the browser session ends, the cookie will expire

③ The cookie saves string information

④ The client can save multiple keys=>val

⑤ During the saving process of the cookie, Chinese will be urlencoded

Cookies can have multiple key=>val, and different key values can be assigned different validity times

The code is as follows: xx.php

 $value) { setcookie($key,"",time()-1); } echo "成功"; ?>
Copy after login

If the key=>val of the cookie you delete is not deleted, the cookie will be retained on the client. If you delete all the cookies on this website, the browser will delete the cookie file

Determine whether it is the first time to log in

Copy after login

When you open the login interface, automatically fill in the user name and password

checklogin.php

//获取用户是否选中了保存id if(!empty($_POST[‘cookie'])){ setcookie(“id”,$id,time()-100); }else{ if(!empty($_COOKIE[‘id'])){ setcookie(“id”,$id,time()-10); } }
Copy after login

The above is the entire content of this article, I hope It will be helpful to everyone’s study.


##Related recommendations:

Use ajaxfileupload.js to implement ajax upload file php version_jquery

Character processing performance comparison between#Node.js,PHP, and Python_node.js

Convert the URL address in the text into a Click the link JavaScript,PHPCustom function_javascript skills

The above is the detailed content of Detailed explanation of how to use cookies in PHP. For more information, please follow other related articles on the PHP Chinese website!

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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!