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.
我会做类似的事情吗
mysqli_real_escape_string($dbc, htmlspecialchars(trim($_POST['example'])));?
htmlspecialchars 函数用于对 HTML 语言中具有特殊含义的字符进行编码。因此,这个函数和mysql之间没有直接的联系。
htmlspecialchars将HTML 字符(如<和)分别>转换为“实体”<和>。
htmlspecialchars
<
>
<
>
它的用途是让浏览器不解析 HTML 标签,它们只是按字面意思显示在页面上。
在插入数据库之前是否要使用它取决于您要对数据执行的操作。