pg_fetch_all
(PHP 4 >= 4.3.0, PHP 5)
pg_fetch_all -- Fetches all rows from a result as an array
Description
array
pg_fetch_all ( resource result )
pg_fetch_all() returns an array that
contains all rows (tuples/records) in result resource. It returns
FALSE, if there are no rows.
Note: This function sets NULL fields to
PHP NULL value.
Examples
Example 1. PostgreSQL fetch all
<?php $conn = pg_pconnect("dbname=publisher"); if (!$conn) { echo "An error occured.\n"; exit; }
$result = pg_query($conn, "SELECT * FROM authors"); if (!$result) { echo "An error occured.\n"; exit; }
$arr = pg_fetch_all($result);
var_dump($arr);
?>
|
|