Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要做的是回显用户的输入,它是名为的 get 变量的值snm。问题是php由于某种原因添加了一个额外的反斜杠,我该如何阻止它?这是我的代码:
snm
php
<html> <body> <?php $string = $_GET['snm']; echo $string; ?> </body> </html>
当我进入名为echo\的 get 变量时,我得到的不是我想要的。snm\\\
\
\\
您打开了魔术行情。你应该把它关掉。
http://php.net/manual/en/security.magicquotes.php