替换php中的反斜杠字符串
我需要在 php 中将 \b 替换为 \\b 才能插入到 mysql 表中。
因此 \bhello\b 变成 \\bhello\\b 然后插入到 mysql 中,并在其中转换回 \bhello\b。
但我似乎无法弄清楚如何。尝试了 preg_replace 和 str_replace ,但我总是以错误或我开始的方式结束。
I need to replace \b with \\b in php in order to insert into mysql table.
Therefore \bhello\b becomes \\bhello\\b then inserted into mysql where it is converted back to \bhello\b.
But I can't seem to figure out how. Tried preg_replace and str_replace and I always end up with an error or what I started with.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您需要为数据库使用正确的转义机制。
根据记录,这绝对不是
addslashes()
。如果使用
mysql_*()
,然后使用mysql_real_escape_string()
。如果使用 PDO,请使用 绑定参数与准备好的语句。
Sounds like you need to use the correct escaping mechanism for your database.
For the record, this is definitely not
addslashes()
.If using
mysql_*()
, then usemysql_real_escape_string()
.If using PDO, use bound parameters with prepared statements.