使用 preg_replace 在单引号前添加反斜杠

发布于 2024-09-10 18:24:09 字数 44 浏览 5 评论 0原文

如何使用 preg_replace() php 函数在单引号前添加反斜杠?

How to add a backslash before single quotes using preg_replace() php function ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

国粹 2024-09-17 18:24:09

如果您不想转义数据库输入:

$string = str_replace("'", "\\'", $string);

如果您是:

请考虑使用适当的转义函数。 (例如 mysql_real_escape_string)或仅使用准备好的语句。

In case you are not trying to escape Database input:

$string = str_replace("'", "\\'", $string);

In case you are:

Please consider using the appropriate escaping function. (E.g. mysql_real_escape_string) or just use prepared statements.

看春风乍起 2024-09-17 18:24:09

只需使用函数 str_replace 将 ' 的每个实例替换为 \'

just use the function str_replace to replace every instance of ' to \'

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