public function StatementInterface::fetchObject in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Database/StatementInterface.php \Drupal\Core\Database\StatementInterface::fetchObject()
Fetches the next row and returns it as an object.
The object will be of the class specified by StatementInterface::setFetchMode() or stdClass if not specified.
phpcs:disable Drupal.Commenting @todo Remove PHPCS overrides https://www.drupal.org/node/3194677.
Parameters
string|null $class_name: Name of the created class.
array|null $constructor_arguments: Elements of this array are passed to the constructor. phpcs:enable
Return value
mixed The object of specified class or \stdClass if not specified. Returns FALSE or NULL if there is no next row.
3 methods override StatementInterface::fetchObject()
- StatementEmpty::fetchObject in core/
lib/ Drupal/ Core/ Database/ StatementEmpty.php - Fetches the next row and returns it as an object.
- StatementPrefetch::fetchObject in core/
lib/ Drupal/ Core/ Database/ StatementPrefetch.php - Fetches the next row and returns it as an object.
- StatementWrapper::fetchObject in core/
lib/ Drupal/ Core/ Database/ StatementWrapper.php - Fetches the next row and returns it as an object.
File
- core/
lib/ Drupal/ Core/ Database/ StatementInterface.php, line 135
Class
- StatementInterface
- Represents a prepared statement.
Namespace
Drupal\Core\DatabaseCode
public function fetchObject();