web-dev-qa-db-fra.com

Comment puis-je boucler à travers une requête MySQL via PDO en PHP?

Je bouge lentement tout mon LAMP websites de mysql_ Fonctions à PDO fonctions et j'ai frappé mon premier mur de briques. Je ne sais pas comment boucler des résultats avec un paramètre. Je vais bien avec ce qui suit:

foreach ($database->query("SELECT * FROM widgets") as $results)
{
   echo $results["widget_name"];
}

Cependant, si je veux faire quelque chose comme ça:

foreach ($database->query("SELECT * FROM widgets WHERE something='something else'") as $results)
{
   echo $results["widget_name"];
}

Évidemment, le "autre" sera dynamique.

25

Voici un exemple d'utilisation de PDO à connecter à un dB, de le dire de lancer des exceptions à la place des erreurs PHP (aidera votre débogage) et d'utiliser des instructions paramétrées au lieu de substituer des valeurs dynamiques dans la requête vous-même (hautement recommandé):

// $attrs is optional, this demonstrates using persistent connections,
// the equivalent of mysql_pconnect
$attrs = array(PDO::ATTR_PERSISTENT => true);

// connect to PDO
$pdo = new PDO("mysql:Host=localhost;dbname=test", "user", "password", $attrs);

// the following tells PDO we want it to throw Exceptions for every error.
// this is far more useful than the default mode of throwing php errors
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

// prepare the statement. the place holders allow PDO to handle substituting
// the values, which also prevents SQL injection
$stmt = $pdo->prepare("SELECT * FROM product WHERE productTypeId=:productTypeId AND brand=:brand");

// bind the parameters
$stmt->bindValue(":productTypeId", 6);
$stmt->bindValue(":brand", "Slurm");

// initialise an array for the results 
$products = array();
if ($stmt->execute()) {
    while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
        $products[] = $row;
    }
}

// set PDO to null in order to close the connection
$pdo = null;
67
Shabbyrobe

Selon la Documentation PHP est indiqué que vous devriez pouvoir procéder comme suit:

$sql = "SELECT * FROM widgets WHERE something='something else'";
foreach ($database->query($sql) as $results)
{
   echo $results["widget_name"];
}

Je ne suis pas un expert, mais cela devrait fonctionner.

6
Darryl Hein

Si vous aimez la syntaxe de Foreach, vous pouvez utiliser la classe suivante:

// Wrap a PDOStatement to iterate through all result rows. Uses a 
// local cache to allow rewinding.
class PDOStatementIterator implements Iterator
{
    public
        $stmt,
        $cache,
        $next;

    public function __construct($stmt)
    {
        $this->cache = array();
        $this->stmt = $stmt;
    }

    public function rewind()
    {
        reset($this->cache);
        $this->next();
    }

    public function valid()
    {
        return (FALSE !== $this->next);
    }

    public function current()
    {
        return $this->next[1];
    }

    public function key()
    {
        return $this->next[0];
    }

    public function next()
    {
        // Try to get the next element in our data cache.
        $this->next = each($this->cache);

        // Past the end of the data cache
        if (FALSE === $this->next)
        {
            // Fetch the next row of data
            $row = $this->stmt->fetch(PDO::FETCH_ASSOC);

            // Fetch successful
            if ($row)
            {
                // Add row to data cache
                $this->cache[] = $row;
            }

            $this->next = each($this->cache);
        }
    }

}

Alors pour l'utiliser:

foreach(new PDOStatementIterator($stmt) as $col => $val)
{
    ...
}
3
John K