search
HomeBackend DevelopmentPHP TutorialCorrect interpretation of how PHP reads Cookies_PHP Tutorial
Correct interpretation of how PHP reads Cookies_PHP TutorialJul 15, 2016 pm 01:33 PM
cookiesphpforintroduceusmethodcorrectofInterpretationread

The questions we introduce to you today are related to

  1. ?php
  2. setcookie("CookieID", $USERID);
  3. ?>
  4. HTML>
  5. < ; BODY>
  6. /BODY>
  7. /HTML>

PHP’s setcookie function for reading Cookies has a total of six parameters, separated by commas:

The name of the cookie is a string, for example: "CookieID". Colons, commas and spaces are not allowed in between. This parameter is required, while all other parameters are optional. If only this parameter is given, the cookie will be deleted.

The value of cookie, usually a string variable, for example: $USERID. You can also assign it a ?? to skip setting the value.

Time when the cookie expires. If omitted (or assigned a value of zero), the cookie will expire at the end of this session. This parameter can be an absolute time, represented by DD-Mon-YY HH:MM:SS, such as: "24-Nov-99 08:26:00". What is more commonly used is to set a relative time. This is achieved through the time() function or the mktime function. For example, time()+3600 will cause the cookie to expire after one hour.
A path used to match cookies. When there are multiple cookie settings with the same name on a server, this parameter is used to avoid confusion. Using the "/" path has the same effect as omitting this parameter. It should be noted that Netscape's cookie definition puts the domain name in front of the path, while PHP does the opposite.

The domain name of the server is also used to match cookies. It should be noted that a dot (.) must be placed before the domain name of the server. For example: ".friendshipcenter.com" . Because unless there are more than two points, this parameter cannot be accepted.

The security level of the cookie is an integer. 1 means this cookie can only be sent over "secure" networks. 0 or omitted means any type of network is acceptable 117-102 117-202 117-301.

Cookies and Variables

When the PHP script extracts a cookie from the client's browser, it will automatically convert it into a variable. For example: a cookie named CookieID will become the variable $CookieID.
The content of Cookies is reported and stored in the HTTP_COOKIE_VARS array. You can also access the specified cookie value through this array and the name of the cookie:
print $HTTP_COOKIE_VARS[CookieID];

Remember each user

Look back at the submitform.php3 file above. Its function is to put the customer’s name Added to the database, now I want to add something to it. I want to assign a unique user ID to each user, and then put this ID in Cookies, so that every time a user visits my website, I can know who he is through the cookie and the user ID in it. .
MySQL can be set to automatically assign a number to each new record. This number starts from 1 and automatically increases by 1 each time thereafter. With one line of SQL statements, you can easily add such a field to the data table. I call it

USERID:

ALTER TABLE dbname
ADD COLUMN
USERID INT(11) NOT NULL
PRIMARY KEY AUTO_INCREMENT;

We have made some special settings for this field. First, define its type as an 11-bit integer through "INT(11)"; then use the "NOT NULL" keyword to prevent the value of this field from being NULL; then use "PRIMARY KEY" to set it as an index field, so The search will be faster; finally, "AUTO_INCREMENT" defines it as an automatically incremented field.

Once the user's name has been inserted into the database, it's time to set a cookie on their browser. What is used at this time is the value of the USERID field we just talked about:

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><span>  ?php  </span></span></span></li>
<li><span>mysql_connect (localhost, username, password);  </span></li>
<li class="alt"><span>mysql_select_db (dbname);  </span></li>
<li><span>mysql_query ("INSERT INTO tablename (first_name, last_name) VALUES ("$first_name", "$last_name")");  </span></li>
<li class="alt"><span>setcookie("CookieID",  </span></li>
<li><span>mysql_insert_id(),  </span></li>
<li class="alt"><span>time()+94608000,  </span></li>
<li><span>"/"); /* 三年后 cookie 才会失效 */  </span></li>
<li class="alt">
<span class="tag">?></span><span> </span>
</li>
</ol>

The PHP function mysql_insert_id() returns the value of the field defined by AUTO_INCREMENT after the last INSERT query was executed. In this way, as long as you don’t clear your browser’s Cookies, the website will “remember” you forever

PHP reads Cookies

Let’s write a program like Amazon .com script. First, the PHP script checks to see if the client's browser sent a cookie. If so, the user's name is displayed. If the cookie is not found, display a form to ask the customer to register their name, then add it to the database and set the cookie while the customer is browsing.

First, display the content of the cookie:

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><span>  ?php  </span></span></span></li>
<li><span>print $CookieID;  </span></li>
<li class="alt">
<span class="tag">?></span><span> </span>
</li>
</ol>

Then, you can display the name:

<ol class="dp-xml">
<li class="alt"><span><span class="tag"><span>  ?php  </span></span></span></li>
<li><span>mysql_connect (localhost, username, password);  </span></li>
<li class="alt"><span>mysql_select_db (dbname);  </span></li>
<li>
<span>$</span><span class="attribute">selectresult</span><span> = </span><span class="attribute-value">mysql_query</span><span> ("SELECT * FROM tablename WHERE </span><span class="attribute">USERID</span><span> = </span><span class="attribute-value">"$CookieID"</span><span>");  </span>
</li>
<li class="alt">
<span>$</span><span class="attribute">row</span><span> = </span><span class="attribute-value">mysql_fetch_array</span><span>($selectresult);  </span>
</li>
<li><span>echo " 欢迎你的光临 ", $row[first_name], "!";  </span></li>
<li class="alt">
<span class="tag">?></span><span>   </span>
</li>
</ol>

The above is how PHP reads Cookies Specific implementation methods.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/446055.htmlTechArticleThe question we introduce to you today is about ?php setcookie(CookieID,$USERID); ? HTML BODY /BODY /HTML PHP's setcookie function that reads Cookies has a total of six parameters, separated by commas:...
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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

Win11系统下如何显示文件后缀?详细解读Win11系统下如何显示文件后缀?详细解读Mar 09, 2024 am 08:24 AM

Win11系统下如何显示文件后缀?详细解读在Windows11操作系统中,文件后缀是指文件名后面的点及其后面的字符,用来表示文件的类型。在默认情况下,Windows11系统会隐藏文件的后缀,这样在文件资源管理器中只能看到文件的名称而无法直观地了解文件的类型。然而,对于一些用户来说,显示文件后缀是非常必要的,因为它能帮助他们更好地辨识文件类型以及进行相关操

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

电脑中的cookie数据在哪个文件夹?详细解读电脑中的cookie数据在哪个文件夹?详细解读Jan 19, 2024 am 10:19 AM

随着互联网的不断发展,人们越来越离不开浏览器。而在浏览器中,大家都会或多或少用到cookie这个东西。然而,很多人并不知道cookie数据在哪个文件夹中,今天就来详细解读一下。首先,我们需要了解cookie是什么。简单来说,cookie是由浏览器存储的一段文本信息,用于保存用户在浏览器中的一些个人设置或者记录用户的历史操作等等。当用户再次打开同一个网站时,c

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

php怎么将url的参数转化成数组php怎么将url的参数转化成数组Apr 21, 2022 pm 08:50 PM

转化方法:1、使用“mb_substr($url,stripos($url,"?")+1)”获取url的参数部分;2、使用“parse_str("参数部分",$arr)”将参数解析到变量中,并传入指定数组中,变量名转为键名,变量值转为键值。

php怎么去除首位数字php怎么去除首位数字Apr 20, 2022 pm 03:23 PM

去除方法:1、使用substr_replace()函数将首位数字替换为空字符串即可,语法“substr_replace($num,"",0,1)”;2、用substr截取从第二位数字开始的全部字符即可,语法“substr($num,1)”。

Linux Bashrc是什么?详细解读Linux Bashrc是什么?详细解读Mar 20, 2024 pm 09:18 PM

LinuxBashrc是Linux系统中的一个配置文件,用于设置用户的Bash(BourneAgainShell)环境。Bashrc文件存储了用户登录时所需的环境变量、启动脚本等信息,可以定制化用户的Shell环境。在Linux系统中,每个用户都有一个对应的Bashrc文件,位于用户的家目录下的隐藏文件夹中。Bashrc文件的作用主要有以下几点:设置环

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 Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

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),

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment