Mysql
 sql >> Database >  >> RDS >> Mysql

Come posso usare PDO per recuperare un array di risultati in PHP?

Dai un'occhiata a PDOStatement.fetchAll metodo. Puoi anche usare fetch in un modello iteratore.

Esempio di codice per fetchAll , dalla documentazione 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);

Risultati:

Array
(
    [0] => Array
        (
            [NAME] => pear
            [COLOUR] => green
        )

    [1] => Array
        (
            [NAME] => watermelon
            [COLOUR] => pink
        )
)