function StatementInterface::fetchAll

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

Returns an array containing all of the result set rows.

Parameters

$mode: One of the \PDO::FETCH_* constants.

$column_index: If $mode is \PDO::FETCH_COLUMN, the index of the column to fetch.

$constructor_arguments: If $mode is \PDO::FETCH_CLASS, the arguments to pass to the constructor.

Return value

array An array of results.

2 methods override StatementInterface::fetchAll()
StatementPrefetchIterator::fetchAll in core/lib/Drupal/Core/Database/StatementPrefetchIterator.php
Returns an array containing all of the result set rows.
StatementWrapperIterator::fetchAll in core/lib/Drupal/Core/Database/StatementWrapperIterator.php
Returns an array containing all of the result set rows.

File

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

Class

StatementInterface
Represents a prepared statement.

Namespace

Drupal\Core\Database

Code

public function fetchAll($mode = NULL, $column_index = NULL, $constructor_arguments = NULL);

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