gpt4 book ai didi

php - 使用 PDO 构造条件 SQL 语句

转载 作者:行者123 更新时间:2023-11-29 01:27:52 26 4
gpt4 key购买 nike

当依赖于是否设置了某些 PHP 变量时,使用 PDO 构造 SQL 语句的最佳方法是什么?

这是一个例子;

$query="SELECT * FROM table ";

if($variable1 != "") { $query = $query . "WHERE variable1 = :variable1"; }
if($variable2 != "") { $query = $query . " AND variable2 = :variable2"; }

$query -> execute(array(':variable1' => $variable1, ':variable2' => $variable2));

我有很多这样的 if 语句,当将变量绑定(bind)到查询时,我不想再次经历所有这些 if 语句。

有没有更简单的方法来构造带有 if/else 条件的 SQL 语句?

最佳答案

我会使用一个数组来包含 where... 的每个部分,当匹配发生时,将结果语句添加到数组中。在所有评估之后,内爆,用“AND”分​​隔并连接到 $query。

$arrWhere = array();
$assWhere = array();

if($variable1 != "") {
$arrWhere[] = "variable1 = :variable1";
$assWhere[":variable1"] = $variable1;
}
if($variable2 != "") {
$arrWhere[] = "variable2 = :variable2";
$assWhere[":variable2"] = $variable2;
}
if($variable3 != "") {
$arrWhere[] = "variable3 = :variable3";
$assWhere[":variable3"] = $variable3;
}

$query="SELECT * FROM table WHERE " . implode ( " AND " , $arrWhere );

$query -> execute($assWhere);

关于php - 使用 PDO 构造条件 SQL 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32296996/

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