gpt4 book ai didi

php - 如何在 MySQL 语句中包含 PHP 变量

转载 作者:可可西里 更新时间:2023-11-01 12:17:10 25 4
gpt4 key购买 nike

我正在尝试在内容表中插入值。如果我在 VALUES 中没有 PHP 变量,它工作正常。当我将变量 $type 放在 VALUES 中时,这不起作用。我做错了什么?

$type = 'testing';
mysql_query("INSERT INTO contents (type, reporter, description)
VALUES($type, 'john', 'whatever')");

最佳答案

在任何 MySQL 语句中添加 PHP 变量的规则简单明了:

1。使用准备好的语句

此规则涵盖 99% 的查询,尤其是您的查询。任何表示 SQL 数据文字 的变量(或者,简单地说 - SQL 字符串或数字)都必须通过准备好的语句添加。 没有异常(exception)

这种方法包括四个基本步骤

  • 在您的 SQL 语句中,用占位符替换所有变量
  • 准备结果查询
  • 变量绑定(bind)到占位符
  • 执行查询

下面是如何使用所有流行的 PHP 数据库驱动程序:

使用 mysqli 添加数据文字
$type = 'testing';
$reporter = "John O'Hara";
$query = "INSERT INTO contents (type, reporter, description)
VALUES(?, ?, 'whatever')";
$stmt = $mysqli->prepare($query);
$stmt->bind_param("ss", $type, $reporter);
$stmt->execute();

代码有点复杂,但是所有这些运算符的详细解释可以在我的文章中找到,How to run an INSERT query using Mysqli ,以及可显着简化流程的解决方案。

对于 SELECT 查询,您只需添加对 get_result() 方法的调用即可获得熟悉的 mysqli_result,您可以通过通常的方式从中获取数据:

$reporter = "John O'Hara";
$stmt = $mysqli->prepare("SELECT * FROM users WHERE name=?");
$stmt->bind_param("s", $reporter);
$stmt->execute();
$result = $stmt->get_result();
$row = $result->fetch_assoc(); // or while (...)
使用 PDO 添加数据字面量
$type = 'testing';
$reporter = "John O'Hara";
$query = "INSERT INTO contents (type, reporter, description)
VALUES(?, ?, 'whatever')";
$stmt = $pdo->prepare($query);
$stmt->execute([$type, $reporter]);

在PDO中,我们可以将bind和execute部分结合起来,非常方便。 PDO 还支持命名占位符,有些人认为这非常方便。

2。使用白名单过滤

任何其他查询部分,例如 SQL 关键字、表或字段名称或运算符 - 都必须通过白名单进行过滤。

有时我们必须添加一个变量来表示查询的另一部分,例如关键字或标识符(数据库、表或字段名称)。这种情况很少见,但最好做好准备。

在这种情况下,必须根据脚本中明确编写的值列表检查您的变量。这在我的另一篇文章 Adding a field name in the ORDER BY clause based on the user's choice 中有解释。 :

Unfortunately, PDO has no placeholder for identifiers (table and field names), therefore a developer must filter them out manually. Such a filter is often called a "white list" (where we only list allowed values) as opposed to a "black-list" where we list disallowed values.

So we have to explicitly list all possible variants in the PHP code and then choose from them.

这是一个例子:

$orderby = $_GET['orderby'] ?: "name"; // set the default value
$allowed = ["name","price","qty"]; // the white list of allowed field names
$key = array_search($orderby, $allowed, true); // see if we have such a name
if ($key === false) {
throw new InvalidArgumentException("Invalid field name");
}

Exactly the same approach should be used for the direction,

$direction = $_GET['direction'] ?: "ASC";
$allowed = ["ASC","DESC"];
$key = array_search($direction, $allowed, true);
if ($key === false) {
throw new InvalidArgumentException("Invalid ORDER BY direction");
}

在这样的代码之后,$direction$orderby 变量都可以安全地放入 SQL 查询中,因为它们要么等于允许的变体之一,要么将会抛出一个错误。

关于标识符的最后一件事是,它们还必须根据特定的数据库语法进行格式化。对于 MySQL,它应该是标识符周围的 backtick 字符。所以我们的示例订单的最终查询字符串将是

$query = "SELECT * FROM `table` ORDER BY `$orderby` $direction";

关于php - 如何在 MySQL 语句中包含 PHP 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42324591/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com