|
PDOStatement::fetchObjectFetches the next row and returns it as an object Description
public objectfalse PDOStatement::fetchObject(stringnull
$class = "stdClass", array $constructorArgs = [])
Fetches the next row and returns it as an object. This function is an
alternative to PDOStatement::fetch with
When an object is fetched, its properties are assigned from respective column values, and afterwards its constructor is invoked. Parameters
Return Values
Returns an instance of the required class with property names that
correspond to the column names or Errors/Exceptions
Emits an error with level
Throws a PDOException if the attribute See Also
|