撇号问题
我正在使用 mysql 和 PHP。我在数据库中插入撇号值时遇到问题。但是我使用 -
$newstring = str_replace("'","'",$string);
OR
$newstring = str_replace("'","''",$string);
但我怎样才能按原样获取字符串呢?
谢谢。
I am using mysql with PHP. I have a problem with inserting the apostrophe value in database. However I use -
$newstring = str_replace("'","'",$string);
OR
$newstring = str_replace("'","''",$string);
but how could I fetch the string as it is?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
mysql_real_escape_string
:Use
mysql_real_escape_string
:你需要转义它,使用addslashes()来清理它,或者更好的是,mysql_real_escape_string()
you need to escape it, use
addslashes()
to sanitise it, or better yet,mysql_real_escape_string()