|
PDOStatement::fetchObjectFetches the next row and returns it as an object. Beschreibung
public mixed PDOStatement::fetchObject
([ string
$class_name = "stdClass"
[, array $ctor_args
]] )
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. Parameter-Liste
Rückgabewerte
Returns an instance of the required class with property names that
correspond to the column names Im Fehlerfall wird Siehe auch
|