function StatementInterface::fetchAllAssoc

Same name in other branches
  1. 9 core/lib/Drupal/Core/Database/StatementInterface.php \Drupal\Core\Database\StatementInterface::fetchAllAssoc()
  2. 8.9.x core/lib/Drupal/Core/Database/StatementInterface.php \Drupal\Core\Database\StatementInterface::fetchAllAssoc()
  3. 10 core/lib/Drupal/Core/Database/StatementInterface.php \Drupal\Core\Database\StatementInterface::fetchAllAssoc()

Returns the result set as an associative array keyed by the given field.

If the given key appears multiple times, later records will overwrite earlier ones.

Parameters

string $key: The name of the field on which to index the array.

\Drupal\Core\Database\FetchAs|int|string|null $fetch: (Optional) the fetch mode to use. One of the cases of the FetchAs enum, or (deprecated) a \PDO::FETCH_* constant. If set to FetchAs::Associative or FetchAs::List the returned value with be an array of arrays. For any other value it will be an array of objects. If not specified, defaults to what is specified by setFetchMode().

Return value

array An associative array, or an empty array if there is no result set.

1 method overrides StatementInterface::fetchAllAssoc()
StatementBase::fetchAllAssoc in core/lib/Drupal/Core/Database/Statement/StatementBase.php
Returns the result set as an associative array keyed by the given field.

File

core/lib/Drupal/Core/Database/StatementInterface.php, line 219

Class

StatementInterface
Represents a prepared statement.

Namespace

Drupal\Core\Database

Code

public function fetchAllAssoc($key, $fetch = NULL);

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