|
pg_fetch_objectFetch a row as an object Description
object pg_fetch_object
( resource
$result
[, int $row
[, int $result_type = PGSQL_ASSOC
]] )
object pg_fetch_object
( resource
$result
[, int $row
[, string $class_name
[, array $params
]]] )pg_fetch_object returns an object with properties that correspond to the fetched row's field names. It can optionally instantiate an object of a specific class, and pass parameters to that class's constructor.
Speed-wise, the function is identical to pg_fetch_array, and almost as fast as pg_fetch_row (the difference is insignificant). Parameters
Return Values
An object with one attribute for each field
name in the result. Database NULL
values are returned as
Examples
Example #1 pg_fetch_object example
<?php See Also
|