Heim > Fragen und Antworten > Hauptteil
$count=$dbh->prepare("select * from ? where score<?");
$count->execute(array($table,$score));
$countNum=$count->rowCount();
返回$count=0
$count=$dbh->prepare("select * from {$table} where score<?");
$count->execute(array($score));
$countNum=$count->rowCount();
正常返回$count=45
阿神2017-04-10 16:45:03
Prepare Statement
是对传入参数进行预编译,并不是所有的 SQL
字符都能被占位符替换,只有符合参数条件的地方,才能参与预编译。