function StatementInterface::fetchAllAssoc
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Database/StatementInterface.php \Drupal\Core\Database\StatementInterface::fetchAllAssoc()
- 10 core/lib/Drupal/Core/Database/StatementInterface.php \Drupal\Core\Database\StatementInterface::fetchAllAssoc()
- 11.x 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
$key: The name of the field on which to index the array.
$fetch: The fetch mode to use. If set to \PDO::FETCH_ASSOC, \PDO::FETCH_NUM, or \PDO::FETCH_BOTH the returned value with be an array of arrays. For any other value it will be an array of objects. By default, the fetch mode set for the query will be used.
Return value
array An associative array, or an empty array if there is no result set.
4 methods override StatementInterface::fetchAllAssoc()
- Statement::fetchAllAssoc in core/
lib/ Drupal/ Core/ Database/ Statement.php - Returns the result set as an associative array keyed by the given field.
- StatementEmpty::fetchAllAssoc in core/
lib/ Drupal/ Core/ Database/ StatementEmpty.php - Returns the result set as an associative array keyed by the given field.
- StatementPrefetch::fetchAllAssoc in core/
lib/ Drupal/ Core/ Database/ StatementPrefetch.php - Returns the result set as an associative array keyed by the given field.
- StatementWrapper::fetchAllAssoc in core/
lib/ Drupal/ Core/ Database/ StatementWrapper.php - Returns the result set as an associative array keyed by the given field.
File
-
core/
lib/ Drupal/ Core/ Database/ StatementInterface.php, line 216
Class
- StatementInterface
- Represents a prepared statement.
Namespace
Drupal\Core\DatabaseCode
public function fetchAllAssoc($key, $fetch = NULL);
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.