0
ステートメント1と2のパラメータが同じ場合、再バインドする必要がありますか?バインディングパラメータとPDO
$stmt = $dbh->prepare("SELECT ... thing = :thing ...");
$stmt->bindParam(':thing',$thing);
$stmt->execute();
// do something with data
$stmt = $dbh->prepare("SELECT something else ... thing = :thing ...");
$stmt->execute();
?あなたが実際に意味と仮定
うん、うん、 '準備'と書くのを忘れてしまった。修正するように編集しました。ありがとう、オブジェクトの面で何が持ち越されたか分からなかった。 – Drew