PHP » GoLang |
login |
register |
about
|
GoLang pg_fetch_object
request it (419)
GoLang replacement for PHP's pg_fetch_object
[edit | history]
pg_fetch_object(PHP 4, PHP 5, PHP 7) pg_fetch_object — Fetch 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
|
more
Recently updated
more
Most requested
more
Last requests
|