function Statement::fetchAllAssoc

Same name in other branches
  1. 9 core/lib/Drupal/Core/Database/Statement.php \Drupal\Core\Database\Statement::fetchAllAssoc()

Overrides StatementInterface::fetchAllAssoc

File

core/lib/Drupal/Core/Database/Statement.php, line 86

Class

Statement
Default implementation of StatementInterface.

Namespace

Drupal\Core\Database

Code

public function fetchAllAssoc($key, $fetch = NULL) {
    $return = [];
    if (isset($fetch)) {
        if (is_string($fetch)) {
            $this->setFetchMode(\PDO::FETCH_CLASS, $fetch);
        }
        else {
            $this->setFetchMode($fetch);
        }
    }
    foreach ($this as $record) {
        $record_key = is_object($record) ? $record->{$key} : $record[$key];
        $return[$record_key] = $record;
    }
    return $return;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.