search
HomeBackend DevelopmentPHP TutorialPHP cookie cannot guarantee solution_PHP tutorial

PHP cookie cannot guarantee solution_PHP tutorial

Jul 13, 2016 am 10:54 AM
cookiephpensureexistclientmethodserverNoticeofprogramsolve

Cookies exist on the client side and have nothing to do with the server. Pay attention to the case problem in your program. Linux is case-sensitive. There is also the configuration of the PHP tutorial, such as whether the configuration of register_globals = Off is the same on both sides. etc.

The meaning of PHP’s @ and # symbols

function foo($n)
{
$result = 1/$n;
Return $result;
}
echo @foo(0); // A division by 0 error will occur in the function, but the error will not be displayed after adding @.
echo "end"; // output end
# Comment symbol

Same as //, # is a single-line comment character (multi-line comment characters are /* */).

Due to the use of @setcookie, even if an error occurs when writing cookies, it will not be output, making it impossible to detect the problem. Finally, change @setcookie to setcookie, and the program outputs the following error message:

Warning: Cannot modify header information - headers already sent by (output started at

After searching on the Internet, I found that there cannot be any output before setting cookie. Then I checked the code and found that nothing was output before setcookie. After searching, I found the problem. The details are as follows :

I visited the WordPress Chinese forum today. The forum is not very popular, but there are still many masters. Experts who can write plug-ins and templates are mixed with beginners who can't even edit files. That's what the forum is like, haha.

I saw the same error mentioned in several posts, such as this one: "Warning: Cannot modify header information - headers already sent by (output started at c:program fileseasyphp1-8wwwwp-config.php: 1) in c:program fileseasyphp1-8wwwwp-login.php on line 9"

This is a very typical question. When the WordPress program is executed, it will first call configuration files such as wp-config.php, and will also call wp-db.php to establish a database tutorial connection for later use. These files just make some settings and do not output html code. After the settings are completed, the program itself begins to execute. Some programs will use the header command to set an HTTP header. Since the HTTP header must be set before the HTML code is output, otherwise the HTML code has already started to be sent to the client, and the HTTP header has already been sent, and there is no way to go back and reset it. This problem is explained in WordPress CodeX: "How do I solve the Headers already sent warning problem?". The article points out: Make sure that each file - especially the wp-config.php file that is often edited - starts with , and there can be no other characters before and after. Specific to the above example, it is obvious that the prompt message says that the first line of wp-config.php starts HTML output. This may be other characters added before the

Solution

The WordPress Chinese forum does not provide a full-text search function. It can only search titles, so I used Google to search Cannot modify header information site:wordpress.org.cn. It seems that many people have encountered this problem. The WordPress currently used by everyone is mainly the original English version of WordPress and several Chinese versions of WordPress. My Chinese package does not contain the wp-config-sample.php file, so it is of course none of my business; the ASCII code used in the original version of WordPress naturally does not contain BOM, and there will be no such errors; the Chinese version of WordPress produced by xigang is in There is a Chinese forum for WordPress. I downloaded WordPress 2.0.4 and 2.0.3 and checked it. There is no problem. In the Chinese version of WordPress 2.0.4 of Diandianyou, the wp-config-sample.php file is used. It’s GB2312 encoding and DOS line endings, GOD! But that’s fine. If someone uses Notepad to modify this file, the DOS line endings will not cause editing problems, and the GB2312 encoding will not cause BOM problems


Cookie usage
Instructions on deleting cookies begin-----

bool setcookie ( string name [, string value [, int expire [, string path [, string domain [, bool secure]]]]] )

To delete a cookie, you need to ensure that its expiration date is in the past to trigger the browser's deletion mechanism.

The following example shows how to delete the cookie just set:
//Set the expiration time to one hour ago
setcookie("TestCookie", "", time() - 3600);
setcookie("TestCookie", "", time() - 3600, "/~rasmus/", ".utoronto.ca", 1);
?>


-----End of instructions on deleting cookies-----

The way to delete a cookie is to set the validity period of the cookie to before the current time, which is what almost all PHP programmers do.

Later, a friend who was new to PHP told me that he wanted to set the value of a cookie to empty in the program, but the cookie was deleted directly. My first reaction at the time was that I didn’t believe it, so I tested it
After a while:
setcookie("testcookie", '');
print_r($_COOKIE);


The result is that the entire $_COOKIE array is empty, not just $_COOKIE['testcookie']. So I used winsock to capture the packet and observed the returned http header. I found that the http header turned out to be "Set-Cookie: testcookie=deleted; expires=Mon, 18-Jun-2007 02:42:33 GMT", which means "setcookie("testcookie ", '');" indeed deletes the cookie testcookie directly, and there is no explanation at all in the PHP manual about this situation.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632283.htmlTechArticleCookies exist on the client side and have nothing to do with the server. Pay attention to the case problem in your program. Linux is case sensitive. Yes, there is also the configuration of the php tutorial, such as whether register_globals = Of...
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
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

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

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

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