PHP cookie operation queue operation class_PHP tutorial
The article ranges from the simplest cookie operations (add, delete, modify) to our cookie queue operations. Students who need to know more can refer to this example.
1. Set Cookie
1. PHP COOKIE
Cookie is a mechanism that stores data on the remote browser side and uses it to track and identify users.
PHP sends cookies in the header information of the http protocol, so the setcookie() function must be called before other information is output to the browser
, which is similar to the restrictions on the header() function.
1.1 Set cookies:
You can use the setcookie() or setrawcookie() function to set cookies. It can also be
set by sending http headers directly to the client.
1.1.1 Use the setcookie() function to set cookies:
bool setcookie ( string name [, string value [, int expire [, string path [, string domain [, bool secure [, bool
httponly]] ]]]]] )
name: cookie variable name
value: cookie variable value
expire: end of validity period
path: valid directory
domain: valid domain name, unique top-level domain
secure: If the value is 1, the cookie can only be valid on https connections. If it is the default value 0, both http and https can
be valid.
Let’s look at a few examples:
Simple:
SetCookie("MyCookie", "Value of MyCookie");
With expiration time:
The code is as follows | Copy code | ||||
|
代码如下 | 复制代码 |
SetCookie("FullCookie", "Full cookie value", time()+3600, "/forum", ".phpuser.com", 1); |
The code is as follows | Copy code |
SetCookie("FullCookie", "Full cookie value" , time()+3600, "/forum", ".phpuser.com", 1); |
We need to use queues.
The code is as follows | Copy code |
class QueueSvc const COOKIE_LENGTH = "2"; |
不多解释了,这个别人用的不多,昨天因为需要写的,留一下吧,也许以后还用得到。。
调用的代码很简单:
代码如下
|
复制代码 |
||||||
require_once("queue_svc.php");
require_once("cookie_svc.php");$cookie_id = '4'; CookieSvc::set($cookie_id); |
代码如下 | 复制代码 |

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

AI Hentai Generator
Generate AI Hentai for free.

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

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
