📜  绑定值 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:55.009000             🧑  作者: Mango

代码示例1
prepare('SELECT nom, couleur, calories
    FROM fruit
    WHERE calories < ? AND couleur = ?');
$sth->bindValue(1, $calories, PDO::PARAM_INT);
$sth->bindValue(2, $couleur, PDO::PARAM_STR);
$sth->execute();
?>