gpt4 book ai didi

php - MySQL 之前转义引号

转载 作者:行者123 更新时间:2023-11-29 13:14:56 25 4
gpt4 key购买 nike

这里我有一个脚本来验证用户传递的描述:

if(strlen($_POST['descriprtion']) >250) {
//Some error code here
} else {
$description = $mysqli->escape_string(htmlentities(trim($_POST['description']))); }

现在,我使用我正在测试来测试描述。当我打印页面时,我会给我这样的东西:

如您所见,单引号前有一个黑色斜杠。

我正在考虑使用stripslashes(),但是我应该在哪里使用它?

最佳答案

当您想要回显变量时,请使用stripslashes()

echo $var;                 // --> I\'m testing. Not funny.
echo stripslashes($var); // --> I'm testing. Not funny.

Working dmeo

关于php - MySQL 之前转义引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21594361/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com