使用PDO构造SQL语句的最佳方法是什么,这取决于是否设置了某些PHP变量?
这是一个例子;
$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 / else条件的SQL语句?
答案 0 :(得分:5)
我会使用一个数组来包含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);