PDOStatement.fetchAll
पर एक नज़र डालें
तरीका। आप fetch
का भी इस्तेमाल कर सकते हैं
एक पुनरावर्तक पैटर्न में।
fetchAll
. के लिए कोड नमूना , PHP दस्तावेज़ीकरण से:
<?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);
परिणाम:
Array
(
[0] => Array
(
[NAME] => pear
[COLOUR] => green
)
[1] => Array
(
[NAME] => watermelon
[COLOUR] => pink
)
)