function StatementInterface::fetchAll
Same name and namespace in other branches
- 11.x core/lib/Drupal/Core/Database/StatementInterface.php \Drupal\Core\Database\StatementInterface::fetchAll()
- 10 core/lib/Drupal/Core/Database/StatementInterface.php \Drupal\Core\Database\StatementInterface::fetchAll()
- 9 core/lib/Drupal/Core/Database/StatementInterface.php \Drupal\Core\Database\StatementInterface::fetchAll()
- 8.9.x core/lib/Drupal/Core/Database/StatementInterface.php \Drupal\Core\Database\StatementInterface::fetchAll()
Returns an array containing all of the result set rows.
Parameters
\Drupal\Core\Database\Statement\FetchAs|null $mode: (Optional) one of the cases of the FetchAs enum. If not specified, defaults to what is specified by setFetchMode().
int|null $column_index: If $mode is FetchAs::Column, the index of the column to fetch.
array $constructor_arguments: If $mode is FetchAs::ClassObject, the arguments to pass to the constructor.
Return value
array An array of results.
File
-
core/
lib/ Drupal/ Core/ Database/ StatementInterface.php, line 157
Class
- StatementInterface
- Represents a prepared statement.
Namespace
Drupal\Core\DatabaseCode
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.