search
HomeBackend DevelopmentPHP TutorialPHP用户指南-cookies部分

php用户指南-cookies部分

在这课教程我们将学习怎样利用 PHP 处理cookies,我将试着使事情尽可能简单地去解释cookies的一些实际应用。

什么是cookies及作用? 
cookies是由web服务器产生的并且存在客户端的一些信息。它嵌在html信息中,由服务器端指定,在客户端及服务器端间传递信息
。它通常用来:用户网页个性化,计数器,储存被浏览站点的信息等。

cookies和php
在 PHP中用cookies是相当容易的。可以使用setcookie函数设置一个cookie。cookie是 HTTP标头的一部分, 因此设置cookie功能必须在任何内容送到浏览器之前。这种限制与header()函数一样。任何从客户端传来的cookie将自动地转化成一个PHP变量。PHP取得信息头并分析, 提取cookie名并变成变量。因此,如果你设置cookie如setcookie("mycookie","wang");php将自动产生一个名为$mycookie,值为"wang"的变量.

先让我们复习一下setcookie函数语法:
setcookie(string CookieName, string CookieValue, int CookieExpireTime, path, domain, int secure);
PATH:表示web服务器上的目录,默认为被调用页面所在目录
DOMAIN:cookie可以使用的域名,默认为被调用页面的域名。这个域名必须包含两个".",所以如果你指定你的顶级域名,你必须用".mydomain.com"
SECURE:如果设为"1",表示cookie只能被用户的浏览器认为是安全的服务器所记住

应用:
对于一个需要注册的站点,将自动识别用户的身份,并发送给它信息,如果是陌生人,将告诉他请先注册。我们按下面给出的信息创建一个小型数 据库:名字(first name),姓(last name),email地址(email address),计数器(visit counter).
按下面步骤建表:

MySQL> create database users; 
Query OK, 1 row affected (0.06 sec) 

mysql> use users; 
Database changed 

mysql> create table info (FirstName varchar(20), LastName varchar(40), 
email varchar(40), count varchar(3)); 
Query OK, 0 rows affected (0.05 sec)
 
好,现在有了符合要求的表,我们可以建一个php页面对照数据库检查cookies.

########################index.php##################################
if (isset($Example)) { //Begin instructions for existing Cookie 
$info = explode("&", $Example); 
$FirstName=$info[0]; 
$LastName=$info[1]; 
$email=$info[2]; 
$count=$info[3]; 
$count++; 

$CookieString=$FirstName.'&'.$LastName.'&'.$email.'&'.$count; 
SetCookie ("Example",$CookieString, time()+3600); //设一新的cookie 

echo"  
wang example 
 
 

Hello $FirstName $LastName, this is your visit number: $count

 

Your email address is: $email

 
 
"; 

mysql_connect() or die ("PRoblem connecting to DataBase"); //update DB 
$query = "update info set count=$count where FirstName='$FirstName' and 
LastName='$LastName' and email='$email'"; 
$result = mysql_db_query("users", $query) or die ("Problems .... "); 

} //End Existing cookie instructions 

else { //Begin inctructions for no Cookie 
echo " 
 
Rafi's Cookie example 
 
 
Click Here for Site Registration 
 
"; 
} //End No Cookie instructions 
?>

注意:如果你用的是一个远程mysql服务器或unix服务器,你应用下面语句
mysql_connect ("server","username","passWord") or die ("Problem connecting to DataBase"); 

我们想检查是否一个被指定名字的cookie在html头部分传送,记住,php能转换可识别的cookie为相应的变量,所以我们能检查一个名为"Example" 的变量:
if (isset($Example)) { //Begin instructions for existing Cookie 
... 
} else { 
... 
}
如果这个cookie存在,我们将计数器加一,并打印用户信息,如果这个cookie不存在,我们建议用户先注册
如果cookie存在,我们执行下面步骤:
if (isset($Example)) { //Begin instructions for existing Cookie 
$info = explode("&", $Example); //split the string to variables 
$FirstName=$info[0]; 
$LastName=$info[1]; 
$email=$info[2]; 
$count=$info[3]; 
$count++; 

$CookieString=$FirstName.'&'.$LastName.'&'.$email.'&'.$count; 
SetCookie ("Example",$CookieString, time()+3600); //setting a new cookie 

echo"  
wang example 
 
 

Hello $FirstName $LastName, this is your visit number: $count

 

Your email address is: $email

 
 
"; 

mysql_connect() or die ("Problem connecting to DataBase"); //update DB 
$query = "update info set count=$count where FirstName='$FirstName' and 
LastName='$LastName' and email='$email'"; 
$result = mysql_db_query("users", $query) or die ("Problems .... "); 

} //End Existing cookie instructions
上面的程序有3个主要部分:首先取得cookie值,用explode函数分成不同的变量,增加计数器,并设一新cookie.接着用html语句输出用户信息。最后,用新的计数器值更新数据库。
如果这个cookie不存,下面的程序将被执行:
 
else { //Begin inctructions for no Cookie 
echo " 
 
Rafi's Cookie example 
 
 
Click Here for Site Registration 
 
"; 
} //End No Cookie instructions 

下面reg.php简单列出到注册页面的链接
#############################reg.php#############################
 
  
 
Registering the Site 
 

 

Registering the site

 

 
 
 
 
 
 
User Name: maxlength=20>
Last Name: maxlength=40>
email addrress: maxlength=40>
 
 
 
 


在所有的信息被提交后调用另一php文件分析这些信息
##############################reg1.php####################################
 
if ($FirstName and $LastName and $email) 
{ 
mysql_connect() or die ("Problem connecting to DataBase"); 
$query="select * from info where FirstName='$FirstName' and 
LastName='$LastName' and email='$email'"; 
$result = mysql_db_query("users", $query); 

$r=mysql_fetch_array($result); 
$count=$r["count"]; 

if (isset($count)) { 
$CookieString=$FirstName.'&'.$LastName.'&'.$email.'&'.$count; 
SetCookie ("Example",$CookieString, time()+3600); 
echo "

user $FirstName $LastName already exists. Using the existing 
info.

"; 
echo "

Back to Main Page"; 
} else { 
$count = '1'; 
$query = "insert into info values 
('$FirstName','$LastName','$email','$count')"; 
$result = mysql_db_query("users", $query); 
$CookieString=$FirstName.'&'.$LastName.'&'.$email.'&'.$count; 
SetCookie ("Example",$CookieString, time()+3600); 
echo "Thank you for registering.
"; 
} 

} else { echo "Sorry, some information is missing. Please go back and add all 
the information"; } 
?> 
首先检查所有的信息是否按要求填写,如果没有,返回重新输入
 
if ($FirstName and $LastName and $email) 
{ 
... 
} else { echo "Sorry, some information is missing. Please go back and add all 
the information"; } 
?>
如果所有信息填好,将执行下面:
 
mysql_connect() or die ("Problem connecting to DataBase"); 
$query="select * from info where FirstName='$FirstName' and 
LastName='$LastName' and email='$email'"; 
$result = mysql_db_query("users", $query); 

$r=mysql_fetch_array($result); 
$count=$r["count"]; 

if (isset($count)) { 
$count++; 
$CookieString=$FirstName.'&'.$LastName.'&'.$email.'&'.$count; 
SetCookie ("Example",$CookieString, time()+3600); 
echo "

user $FirstName $LastName already exists. Using the existing 
info.

"; 
echo "

Back to Main Page"; 
} else { 
$count = '1'; //new visitor - set counter to 1. 
$query = "insert into info values 
('$FirstName','$LastName','$email','$count')"; 
$result = mysql_db_query("users", $query); 
$CookieString=$FirstName.'&'.$LastName.'&'.$email.'&'.$count; 
SetCookie ("Example",$CookieString, time()+3600); 
echo "Thank you for registering.
"; 
这段程序做了几件工作:它检查数据库是否有这样一个用户(如果没有,也就是说,这个cookie已被删除),如果有,它指定旧的信息,并用当前的信息建一新的cookie,如果同一用户没有数据库登录,新建一数据库登录,并建一新的cookie.
首先,我们从数据库中取回用户登录详细资料
mysql_connect() or die ("Problem connecting to DataBase"); 
$query="select * from info where FirstName='$FirstName' and 
LastName='$LastName' and email='$email'"; 
$result = mysql_db_query("users", $query); 
$r=mysql_fetch_array($result); 
$count=$r["count"];

现在检查是否有一计数器为这用户,利用isset()函数
 
if (isset($count)) { 
... 
} else { 
... 
} 
计数器增加并新建一cookie
$count++; //increase counter 
$CookieString=$FirstName.'&'.$LastName.'&'.$email.'&'.$count; 
SetCookie ("Example",$CookieString, time()+3600); 
echo "

user $FirstName $LastName already exists. Using the existing info.

"; 
echo "

Back to Main Page";
如果没有一用户计数器,在mysql中加一记录,并设一cookie
注意:在任何时候,setcookie放在输送任何资料到浏览器之前,否则得到错误信息

#####################################################
---advance翻译,有不恰之处,请qianjinok@china.com-------

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

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.

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' =>

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

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

How to Register and Use Laravel Service ProvidersHow to Register and Use Laravel Service ProvidersMar 07, 2025 am 01:18 AM

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove

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

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

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

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool