当取决于是否设置了一些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语句,当将变量绑定到查询时,我不想if再次遍历所有这些语句。
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);