Skip to content


关于cookie中的数据读出时带斜杠

当magic_quotes_gpc=on。
所有从GET/POST/Cookie来的变量的单引号(‘)、双引号(“)、反斜杠backslash()以及空字元NUL
(the null byte)都会被加上反斜杠

在文本框中输入一个单引号,显示会变成三个斜杠一个单引号

当你接收$_POSTt数据时自动加一个斜杠,然后取$_COOKIE又会加一次斜杠所以变成三个斜杠一个单引号.

你需要在存和取时根据magic_quotes_gpc各去一次斜杠就可以显示原文本内容。

Posted in PHP, 技术.


No Responses (yet)

Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.



Some HTML is OK

or, reply to this post via trackback.