Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
言い換えれば、シナリオはパフォーマンスの面で異なりますか?
A:
for($i = 0; $i < 10; $i++) { $pdo->prepare("SELECT :foo;")->execute(['foo' => 'test']); }
B:
$sth = $pdo->prepare("SELECT :foo;"); for($i = 0; $i < 10; $i++) { $sth->execute(['foo' => 'test']); }
いいえ、pdoにはそのようなキャッシュメカニズムがありません。シナリオAでは、毎回pdoステートメントを作成しています。