Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. StatementInterface.php

function 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.

2 methods override StatementInterface::fetchAllAssoc()
StatementPrefetchIterator::fetchAllAssoc in core/lib/Drupal/Core/Database/StatementPrefetchIterator.php
Returns the result set as an associative array keyed by the given field.
StatementWrapperIterator::fetchAllAssoc in core/lib/Drupal/Core/Database/StatementWrapperIterator.php
Returns the result set as an associative array keyed by the given field.

File

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

Class

StatementInterface
Represents a prepared statement.

Namespace

Drupal\Core\Database

Code

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

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal