Werfen Sie einen Blick auf PDOStatement.fetchAll
Methode. Sie können auch fetch
verwenden
in einem Iteratormuster.
Codebeispiel für fetchAll
, aus der PHP-Dokumentation:
<?php
$sth = $dbh->prepare("SELECT name, colour FROM fruit");
$sth->execute();
/* Fetch all of the remaining rows in the result set */
print("Fetch all of the remaining rows in the result set:\n");
$result = $sth->fetchAll(\PDO::FETCH_ASSOC);
print_r($result);
Ergebnisse:
Array
(
[0] => Array
(
[NAME] => pear
[COLOUR] => green
)
[1] => Array
(
[NAME] => watermelon
[COLOUR] => pink
)
)