search
HomeBackend DevelopmentPHP TutorialPHP cookie cannot guarantee solution_PHP tutorial
PHP cookie cannot guarantee solution_PHP tutorialJul 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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

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

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

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

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

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

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

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

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

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

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