function StatementEmpty::fetchAll
Same name and namespace in other branches
- 8.9.x core/lib/Drupal/Core/Database/StatementEmpty.php \Drupal\Core\Database\StatementEmpty::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.
Overrides StatementInterface::fetchAll
File
-
core/
lib/ Drupal/ Core/ Database/ StatementEmpty.php, line 92
Class
- StatementEmpty
- Empty implementation of a database statement.
Namespace
Drupal\Core\DatabaseCode
public function fetchAll($mode = NULL, $column_index = NULL, $constructor_arguments = NULL) {
return [];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.