我知道這個問題之前已經被問過了,但我嘗試了eveything並且找不到它是如何工作的。 我有一個準備好的查詢,我需要有兩個同時(兩次使用)循環是這樣的:如何倒帶pdo結果?
$query = $pdo->prepare('SELECT ...');
$query->execute();
while($results = $query->fetch()){
// instructions
}
// rewind
while($results = $query->fetch()){
// instructions
}
感謝
重複:http://stackoverflow.com/questions/278259/is-it-possible-to-rewind-a-pdo-result – TimWolla 2012-01-11 17:27:47
我知道,我看過這篇文章,但我不明白如何使其工作。 – romainberger 2012-01-11 17:30:56
如果你問同樣的問題,你可能會得到相同的答案。 – 2012-01-11 17:33:25