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.
我在 PHP 中被这件事分心了。我有一个搜索引擎,人们有时会搜索很多东西,这个值会出现“/”,例如“她不介意”。由于我也在使用 mod_rewrite,所以看起来像这样“她不介意”,所以 Apache 将它作为一个目录:s 并且事情不起作用。
请帮帮我。
使用哪个功能以及在哪里避免这种情况?
在 PHP 中的搜索周围使用函数stripslashes 。
例如
$search = stripslashes( $_POST['search'] );