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.
我的问题是在插入时我正在使用addslashes()函数,然后字符串被插入为kadavath\'s,但是在选择时我正在使用LIKE运算符,当时结果为空。请帮我。
addslashes()
kadavath\'s
LIKE
如果这是您的数据在数据库中的外观:
卡达瓦斯
那么你做错了什么。
为mysql_query()查询转义数据的正确函数是mysql_real_escape_string(). 正如我们在此处看到的那样,添加它会破坏您的数据,因此不需要addslashes()。
mysql_query()
mysql_real_escape_string()