在 php 中转义反斜杠,无论字符串中有多少个 \

发布于 2024-12-07 02:55:20 字数 145 浏览 0 评论 0原文

我对 PHP 很陌生。目前,我面临一个转义 \ 并存储在 mysql DB 中的问题。 例如,如果字符串类似于 $str = \\aaaa\bbb\\\cccc$$ ,我想将该字符串保存在 DB 中。但是,我不知道如何逃避这些反斜杠。请帮我解决一下。

I'm very new to PHP. Currently,I'm facing one issue to escape \ and store in mysql DB.
eg., If the string is like $str = \\aaaa\bbb\\\cccc$$ , I would like to save that string in DB . However, I don't know how to escape those backslashes. Please help me settle it.

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

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

发布评论

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

评论(1

胡渣熟男 2024-12-14 02:55:20

您最好的选择是使用准备好的语句(例如通过 PDO):

$dbh = new PDO(…);
$sth = $dbh->prepare('INSERT INTO `yourtable` ( `column` ) VALUES ( :string )');
$sth->execute(array(':string' => '\\aaaa\bbb\\\cccc$'));

Your best option is to use prepared statements (e.g. through PDO):

$dbh = new PDO(…);
$sth = $dbh->prepare('INSERT INTO `yourtable` ( `column` ) VALUES ( :string )');
$sth->execute(array(':string' => '\\aaaa\bbb\\\cccc$'));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文