如果$_POST['sector']
为NULL,将绑定值更改为1
$stmt->bindValue(':sector', $_POST['sector'], PDO::PARAM_STR);
答案 0 :(得分:0)
使用此三元条件,但您可能希望改为使用isset
:
$stmt->bindValue(':sector', !is_null($_POST['sector']) ? $_POST['sector'] : "anotherValue", PDO::PARAM_STR);