替换php中的反斜杠字符串

发布于 2024-12-05 23:12:04 字数 184 浏览 0 评论 0原文

我需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟雨凡馨 2024-12-12 23:12:05

听起来您需要为数据库使用正确的转义机制。

根据记录,这绝对不是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 use mysql_real_escape_string().

If using PDO, use bound parameters with prepared statements.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文