function FetchModeTrait::assocToFetchMode
Converts a row of data in associative format to a specified format.
Parameters
array $rowAssoc: A row of data in FetchAs::Associative format.
\Drupal\Core\Database\Statement\FetchAs $mode: The target target mode.
array $fetchOptions: The fetch mode options.
Return value
array<scalar|null>|object|scalar|null|false The data in the target mode.
Throws
\ValueError If the column index is not defined.
3 calls to FetchModeTrait::assocToFetchMode()
- PrefetchedResult::fetch in core/
lib/ Drupal/ Core/ Database/ Statement/ PrefetchedResult.php - Fetches the next row.
- ResultBase::fetchAll in core/
lib/ Drupal/ Core/ Database/ Statement/ ResultBase.php - Returns an array containing all of the result set rows.
- ResultBase::fetchAllAssoc in core/
lib/ Drupal/ Core/ Database/ Statement/ ResultBase.php - Returns the result set as an associative array keyed by the given column.
File
-
core/
lib/ Drupal/ Core/ Database/ FetchModeTrait.php, line 133
Class
- FetchModeTrait
- Provide helper methods for statement fetching.
Namespace
Drupal\Core\DatabaseCode
protected function assocToFetchMode(array $rowAssoc, FetchAs $mode, array $fetchOptions) : array|object|int|float|string|bool|null {
return match ($mode) { FetchAs::Associative => $rowAssoc,
FetchAs::ClassObject => $this->assocToClass($rowAssoc, $fetchOptions['class'], $fetchOptions['constructor_args']),
FetchAs::Column => $this->assocToColumn($rowAssoc, array_keys($rowAssoc), $fetchOptions['column']),
FetchAs::List => $this->assocToNum($rowAssoc),
FetchAs::Object => $this->assocToObj($rowAssoc),
};
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.