Grammar, comma.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@117504 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Ron Chmara 2003-02-21 23:49:26 +00:00
parent bc650c159f
commit 8684f75b61

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.2 -->
<refentry id="function.pg-fetch-array">
<refnamediv>
@ -31,13 +31,13 @@
retrieved. First row is 0.
</para>
<para>
<parameter>result_type</parameter> is optional parameter controls
how return value is initialized.
<parameter>result_type</parameter> is an optional parameter that controls
how the return value is initialized.
<parameter>result_type</parameter> is a constant and can take the
following values: <constant>PGSQL_ASSOC</constant>,
<constant>PGSQL_NUM</constant>, and <constant>PGSQL_BOTH</constant>.
<function>pg_fetch_array</function> returns associative array
that has field name as key for <constant>PGSQL_ASSOC</constant>. field index as key
that has field name as key for <constant>PGSQL_ASSOC</constant>, field index as key
with <constant>PGSQL_NUM</constant> and both field name/index as key with
<constant>PGSQL_BOTH</constant>. Default is <constant>PGSQL_BOTH</constant>.
<note>