MySQL 插入时使用撇号转义值

发布于 2024-10-04 22:36:07 字数 161 浏览 2 评论 0 原文

我正在尝试创建一些 SQL 插入语句,并且一些变量的名称如下所示:

  • "Aamma's Pastries"

我想在添加时转义引号 (')将值存入 MySQL 数据库。我如何使用 PHP 做到这一点?

I am trying to create some SQL insert statements and a few variables have names like the following:

  • "Aamma's Pastries"

I want to escape the quote (') as I am adding the value into the MySQL database. How do I do that with PHP?

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

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

发布评论

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

评论(4

献世佛 2024-10-11 22:36:07

您已经接受了答案,但我想向您建议更好的方法。使用像 mysql_real_escape_string 这样的方法需要您始终记住在每个查询中每次都应用它;这是乏味且容易出错的。

一种更简单的方法,也可以确保一致性,是使用参数化语句。这确保了所有内容都被正确转义,并且还避免了您必须在查询中嵌入变量。

在 PHP 中,这可以与较新的 PDOMySQLi 库。其中,我更喜欢 PDO,因为它提供的灵活性(例如,我目前一直使用 MySQL,但我不打算让我的应用程序永远以这种方式运行,并且使用 PDO,迁移将大大简化),但是有这里有很多关于 SO 的问题,涵盖了每个问题的优缺点。

You've already accepted an answer, but I'd like to suggest a better approach to you. Using an approach like mysql_real_escape_string requires you to consistently remember to apply it every single time in every single query; it's tedious and error prone.

A more simple approach, which also ensures consistency is to use parameterised statements. This ensures that everything is correctly escaped, and also avoids you having to embed variables in your queries.

In PHP, this can be used with the newer PDO or MySQLi libraries. Of these, I prefer PDO for the flexibility it provides (e.g. I'm currently stuck with MySQL, but I don't intend to keep my app running that way forever, and with PDO the migration will be massively simplified), but there are plenty of questions here on SO that cover the pros and cons of each.

星星的軌跡 2024-10-11 22:36:07

请使用准备语句并让 mysql 处理转义本身以及您在代码级别执行的操作

Please use prepare statements and let mysql handle escaping itself and you doing at code level

在风中等你 2024-10-11 22:36:07

您可以使用这个函数来转义您需要的所有字符,这是 php 中的代码示例

<?php
$str = "Is your name O'reilly?";

// Outputs: Is your name O\'reilly?
echo addslashes($str);
?>

There is this function that you can use that escapes all characters that you need, here is a code example in php

<?php
$str = "Is your name O'reilly?";

// Outputs: Is your name O\'reilly?
echo addslashes($str);
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文