search
HomeBackend DevelopmentPHP TutorialCookies for php development_PHP tutorial

Cookies for php development

<code>cookie是一种在浏览器远端存储数据并以此来跟踪和识别用户的机制。简单的说,cookie是web服务器暂时存储在用户硬盘上的一个文件夹,并随时被web浏览器读取。当用户再次访问web网站的时候,网站通过获取cookie记录用户的特定访问信息(如:上次访问的位置,花费的时间,用户名和密码) ,从而迅速做出相应,比如不需要用户输入密码就可以登录。
文本文件的格式如下:用户名@网站地址[数字].txtcookie 的功能主要有以下几个方面:
</code>

1. Record certain information about visitors. For example, cookies can be used to record the number of times a user visits a page, or the information the user has entered. In addition, some websites can automatically record the last user name that can be logged in.
2. Pass variables between pages. The browser does not save any variable information of the current page. When the page is closed, all variable information on the page will disappear. If you declare a variable id=8 and want to pass this variable to another page, you can first save the variable in the form of a cookie, and then read the value of the variable in the cookie on the next page.
3. Store the Internet page you want to view in the cookie temporary folder, which can improve the browser's access speed in the future.
Create cookies through the setcookie() function in php. The cookie is part of the HTTP header and the header must be sent before other content on the page. It must be output first. If an HTML tag, echo statement, or even a blank line is output before the setcookie() function, a program error will occur.
The syntax format is as follows:
bool setcookie(string name[,string value[,int explre[,string path[,string domain[,int secure]]]]])
The parameters of the setcookie() function are explained as follows:
Cookies for php development_PHP tutorial
Cookies for php development_PHP tutorial
Use the setcookie() function to create a cookie. The sample code is as follows:

<code class="hljs perl"><!--?php

//setcookie("TMCookie",'www.baidu.com'); 
//setcookie("TMCookie",'www.baidu.com',time()+60);     //cookie的有效期为60秒

//设置有效时间为60秒,有效目录为"/temp/",有效于域名为"www.baidu.com" 及其所有子域名
$value =88;
setcookie("TMCookie",$value,time()+3600,"/temp/",".baidu.com");

?--></code>

Cookie reading
In php, you can directly use the global array $_COOKIE[] to read the value of the browser's cookie.
Use the print_r() function to read the cookie's variables. The sample code is as follows:

<code class="hljs xml"><!--?php

if(!isset($_COOKIE["visittime"])){                //检测cookie文件是否存在,如果不存在

    setcookie("visittime",date("Y-m-d H:i:s"));   //设置一个cookie变量
    echo "欢迎第一次访问网站!!!";                    //输出字符串
}else{

    setcookie("visittime",date("Y-m-d H:i:s"),time()+60);
    echo "上次访问的时间为:".$_COOKIE["visittime"]."\n";

}

echo "本次访问的时间为:".date("Y-m-d H:i:s")."\n";



?--></code>

The running results are as follows:
Cookies for php development_PHP tutorial
Cookies for php development_PHP tutorial

Delete cookies
Deleting cookies is mainly achieved by using the setcookie function, which is to reduce the cookie expiration time by 1 second, as shown in the title:
setcookie(“”visittime),time()-1);

Cookie life cycle
If the cookie does not set a time, it means that its life cycle is during the browser session. As long as the browser is closed, the cookie will be deleted. This kind of cookie is called a session cookie and is generally not stored on the hard disk but in memory.
If the cookie is set to expire, the browser will save the cookie to the hard drive, and the cookie will still be there when you open the browser again until the cookie's validity period expires.
The browser allows up to 300 cookie files to be stored, and each cookie file supports a maximum capacity of 4k, and each domain name supports a maximum of 20 cookies. If the limit is reached, the browser will randomly delete cookies.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/978477.htmlTechArticleCookie developed by PHP Cookie is a type of cookie that stores data remotely in the browser and uses it to track and identify users mechanism. Simply put, a cookie is a cookie that is temporarily stored on the user's hard drive by the web server...
Statement
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
11 Best PHP URL Shortener Scripts (Free and Premium)11 Best PHP URL Shortener Scripts (Free and Premium)Mar 03, 2025 am 10:49 AM

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Announcement of 2025 PHP Situation SurveyAnnouncement of 2025 PHP Situation SurveyMar 03, 2025 pm 04:20 PM

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.