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 清理帖子数据。那么,我是否也应该将 addcslashes() 应用于 SQL LIKE 子句中使用的变量?
[我知道使用准备好的语句可能会否定这个讨论。]
如果你不能使用准备好的语句(总是一个不错的选择) - 据我所知,最好也像通配符一样转义 mysql:
addcslashes($param, '%_');