


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 restriction 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 are available.
Example:
$value = something from somewhere;
setcookie("TestCookie", $value); /* Simple cookie setting*/
setcookie("TestCookie", $value, time ()+3600); /* Valid for 1 hour*/
setcookie("TestCookie", $value, time()+3600, "/~rasmus/", ".example.com", 1); / * Valid directory/~rasmus, valid domain name example.com and all subdomains */
?>
Set multiple cookie variables: setcookie(var[a],value); use arrays to represent variables, But his subscript does not need quotation marks. In this way, you can use $_COOKIE['var']['a'] to read the COOKIE variable.
1.1.2. Use header() to set the cookie;
header( "Set-Cookie: name=$value[;path=$path[;domain=xxx.com[;...]]");
The following parameters are the same as those listed above for the setcookie function.
For example:
$value = something from somewhere;
header("Set-Cookie:name=$value");
1.2 Cookie reading:
Directly use php built-in super global variable $ _COOKIE can read the cookie on the browser side.
In the above example, the cookie "TestCookie" is set. Now let's read it:
print $_COOKIE[TestCookie];
Has COOKIE been output?!
1.3 To delete cookies
Just set the validity time to be less than the current time, and set the value to empty. For example:
setcookie("name","",time()-1);
Similar to using header().
1.4 FAQs:
1) There is an error message when using setcookie(). It may be because there is output or space before calling setcookie(). It may also be that your document is imported from other After the character set is converted, the document may have a BOM signature (that is, adding some hidden BOM characters to the file content). The solution is to prevent this situation from happening in your document. You can also use the ob_start() function. Handle it a bit.
2) $_COOKIE is affected by magic_quotes_gpc and may be automatically escaped
3) When using it, it is necessary to test whether the user supports cookies
2. PHP’s Session
session uses a cookie with an expiration time set to 0, and a unique identifier called session ID character (a long string of strings), some session files are synchronously generated on the server side (you can define the storage type of the session yourself), and are associated with the user machine. The web application stores data related to these sessions, and lets the data follow Users pass between pages.
Visitors to the website are assigned a unique identifier, a so-called session ID. It is either stored in a client-side cookie or passed via the URL.
Session support allows users to register any number of variables and reserve them for each request. When a visitor accesses the website, PHP checks whether a specific session ID was sent in the request, either automatically (if session.auto_start is set to 1) or when the user requests it (explicitly called by session_start() or implicitly by session_register()). If so, the previously saved environment is recreated.
2.1 Transmission of session ID
2.1.1 Transmission of session ID through cookie
Use session_start() to call the session. While generating the session file, the server generates the session ID hash value and the session with the default value of PHPSESSID. name, and sends the variable to the client (the default is) PHPSESSID (session name), the value is a 128-bit hash value. The server will interact with the client through this cookie.
The value of the session variable is PHP is internally serialized and stored in a text file on the server machine, and interacts with the client's coolie whose variable name is PHPSESSID by default.
That is, the server automatically sends the http header: header(Set-Cookie: session_name( )=session_id(); path=/);
That is, setcookie(session_name(),session_id());
When jumping to a new page from this page and calling session_start(), PHP will check and The session data stored on the server side associated with the given ID, if not found, creates a new data set.
2.1.2 Transmit session ID through URL
This is only used when the user prohibits the use of cookies. Method, because browser cookies are already universal, for security reasons, this method does not need to be used.
xxx, you can also pass the session value through POST.
2.2 Basic session usage example
// page1.php
session_start( );
echo Welcome to page #1;
/* Create session variable and assign value to session variable*/
$_SESSION[favcolor] = green;
$_SESSION[animal] = cat;
$_SESSION[time] = time();
// If the client uses cookies, you can directly pass the session to page2.php
echo
page 2;
// If the client disables cookies
echo
page 2 a>;
/*
By default under php5.2.1, the SID will only have a value when the cookie is written. If the cookie corresponding to the session
already exists, then the SID will be (undefined )Empty
*/
?>
// page2.php
session_start();
print $_SESSION[animal]; // Print out a single session
var_dump($_SESSION); // Print out the session value passed by page1.php
?>
2.3 Use the session function to control the page cache.
In many cases, we need to make sure we Whether the webpage is cached on the client, or the cache validity time needs to be set. For example, there are some sensitive contents on our webpage and you need to log in to view it. If it is cached locally, you can directly open the local cache and browse to the webpage without logging in. .
Use session_cache_limiter(private); you can control the page client cache, which must be called before session_start().
For more parameters, see http://blog.chinaunix.net/u/27731/showart.php ?Client cache control with id=258087.
To control the client cache time, use session_cache_expire(int); unit (s). It must also be called before session_start().
This is only to control the cache when using session Method, we can also control the cache of the control page in header().
2.4 Deleting session
requires three steps.
session_destroy(); : Delete the server-side session file, use
setcookie(session_name(),,time()-3600); // Step 2: Delete the actual session:
$_SESSION = array(); Three steps: Delete the $_SESSION global variable array
?>
2.5 Use of session in PHP large-scale web applications
For sites with a large number of visits, the default session storage method is not suitable. Currently The best way is to use the database to access the session. At this time, the function bool session_set_save_handler (callback open, callback close, callback read, callback write, callback destroy, callback gc) provides us with a solution to this problem.
The The six functions used by the function are as follows:
1. bool open() is used to open the session storage mechanism,
2. bool close() closes the session storage operation.
3. mixde read() from storage Use this function when loading session data
4. bool write() writes all data for the given session ID to storage
5. bool destroy() destroys the data associated with the specified session ID
6. bool gc() Garbage collection of data in the storage system
For an example, see the session_set_save_handler() function in the PHP manual.
If you use a class to process it, use
session_set_save_handler(
array(className,

您可以通过计算图像每秒更新的次数来衡量屏幕的刷新率。DRR 是 Windows 11 中包含的一项新功能,可帮助您节省电池寿命,同时仍提供更流畅的显示,但当它无法正常工作时也就不足为奇了。随着越来越多的制造商宣布计划停止生产 60Hz 显示器,具有更高刷新率的屏幕预计将变得更加普遍。这将导致更流畅的滚动和更好的游戏,但它会以减少电池寿命为代价。但是,此 OS 迭代中的动态刷新率功能是一个漂亮的附加功能,可以对您的整体体验产生重大影响。继续阅读,我们将讨论如果 Windows 11 的动态刷新率未

在iPhone上,Apple 的屏幕录制功能会录制您在屏幕上所做的事情的视频,如果您想捕捉游戏玩法、引导他人完成应用程序中的教程、演示错误或其他任何事情,这非常有用。在显示屏顶部有凹口的旧款 iPhone 上,该凹口在屏幕录制中不可见,这是应该的。但在带有 Dynamic Island 切口的较新 iPhone 上,例如 iPhone 14 Pro 和 iPhone 14 Pro Max,Dynamic Island 动画显示红色录制指示器,这导致切口在捕获的视频中可见。这可能会

在创建虚拟机时,系统会要求您选择磁盘类型,您可以选择固定磁盘或动态磁盘。如果您选择了固定磁盘,后来意识到需要动态磁盘,或者相反,该怎么办?好!你可以把一种转换成另一种。在这篇文章中,我们将看到如何将VirtualBox固定磁盘转换为动态磁盘,反之亦然。动态磁盘是一种虚拟硬盘,它最初具有较小的大小,随着您在虚拟机中存储数据,其大小会相应增长。动态磁盘在节省存储空间方面非常高效,因为它们只占用所需的主机存储空间。然而,随着磁盘容量的扩展,可能会稍微影响计算机的性能。固定磁盘和动态磁盘是虚拟机中常用的

如果要在Windows11中将动态磁盘转换为基本磁盘,则应首先创建备份,因为该过程将擦除其中的所有数据。为什么要在Windows11中将动态磁盘转换为基本磁盘?根据Microsoft,动态磁盘已从Windows中弃用,不再推荐使用。此外,Windows家庭版不支持动态磁盘,因此您将无法访问这些逻辑驱动器。如果要将更多磁盘合并到更大的卷中,建议使用基本磁盘或存储空间。在本文中,我们将向您展示如何在Windows11上将动态磁盘转换为基本磁盘如何在Windows11中将动态磁盘转换为基本磁盘?在开始

微软在Windows10中引入了快速访问,并在最近发布的Windows11操作系统中保留了该功能。快速访问取代了文件资源管理器中的收藏夹系统。这两个功能之间的核心区别之一是快速访问在其列表中添加了一个动态组件。一些文件夹永久显示,而其他文件夹则根据使用情况显示。固定文件夹显示有一个大头针图标,动态文件夹没有这样的图标。您可以在此处查看我的收藏夹和快速访问之间的比较,了解更多详细信息。快速访问比收藏夹更强大,但动态文件夹列表为其添加了混乱元素。可能会显示无用或不应在文件资源管理器中突出显示的文件

想象一下,您正在系统上寻找某些东西,但不确定要打开或选择哪个应用程序。这就是动态磁贴功能发挥作用的地方。任何支持的应用程序的动态磁贴都可以添加到桌面或Windows系统的开始菜单上,其磁贴经常变化。LiveTiles使应用程序小部件变得活跃起来,非常令人愉悦。不仅是为了它的外观,甚至是为了方便。假设您在系统上使用whatsapp或facebook应用程序,如果在应用程序图标上显示通知数量不是很方便吗?如果将任何此类受支持的应用程序添加为动态磁贴,则这是可能的。让我们看看如何在Windows

什么是 Windows 11 上的动态锁定?动态锁定是 Windows 11 的一项功能,可在连接的蓝牙设备(您的手机或可穿戴设备)超出范围时锁定您的计算机。即使您在离开时忘记使用 Windows 键 + L 快捷键,动态锁定功能也会自动锁定您的 PC。Dynamic Lock 使用任何带有蓝牙的连接设备,但最好使用电池电量和续航里程充足的设备,例如您的手机。一旦您的设备在 30 秒内无法触及,Windows 将自动锁定屏幕。将蓝牙设备与 Windows 11 配对要让一切正常运行,您需要先将

如何使用HTML、CSS和jQuery制作一个动态的图片轮播在网站设计和开发中,图片轮播是一个经常使用的功能,用于展示多张图片或广告横幅。通过HTML、CSS和jQuery的结合,我们可以实现一个动态的图片轮播效果,为网站增加活力和吸引力。本文将介绍如何使用HTML、CSS和jQuery制作一个简单的动态图片轮播,并提供具体的代码示例。第一步:设置HTML结


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

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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.

WebStorm Mac version
Useful JavaScript development tools

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