|
pg_fetch_resultReturns values from a result instance Description
stringfalsenull pg_fetch_result(PgSql\Result
$result , stringfalsenull $row , mixed $field )stringfalsenull pg_fetch_result(PgSql\Result
$result , mixed $field )pg_fetch_result returns the value of a particular row and field (column) in an PgSql\Result instance.
Parameters
Return Values
Boolean is returned as "t" or "f". All
other types, including arrays are returned as strings formatted
in the same default PostgreSQL manner that you would see in the
psql program. Database
Changelog
Examples
Example #1 pg_fetch_result example
The above example will output: First field in the second row is: 2 See Also
|