|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-11-16 11:53 UTC] vrana@php.net
[2009-11-16 12:21 UTC] svn@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Mon Jun 15 23:00:01 2026 UTC |
Description: ------------ In the user's guide page for pg_fetch_all, the "Return Values" section could be improved by stating something like: For example, pg_fetch_all(pg_query($dbh,"SELECT id, name FROM demotable")); might return an array like: array(array(id => 1, name => 'one'), array(id => 2, name => 'two')); Reproduce code: --------------- --- From manual page: function.pg-fetch-all ---