row can be optional from 4.2.0.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@79843 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Yasuo Ohgaki 2002-04-25 00:44:14 +00:00
parent 3627dc130a
commit 63bebf1e9b
2 changed files with 14 additions and 2 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.2 -->
<refentry id="function.pg-fetch-array">
<refnamediv>
@ -30,6 +30,12 @@
<parameter>row</parameter> is row (record) number to be
retrieved. First row is 0.
</para>
<para>
From PHP 4.2.0, <parameter>row</parameter> can be optional.
Calling <function>pg_fetch_array</function> will incremented
internal row counter, that is associated with the <parameter>result</parameter>,
counter by 1.
</para>
<para>
<parameter>result_type</parameter> is optional parameter controls
how return value is initialized.

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<!-- $Revision: 1.3 $ -->
<!-- splitted from ./en/functions/pgsql.xml, last change in rev 1.2 -->
<refentry id="function.pg-fetch-row">
<refnamediv>
@ -20,6 +20,12 @@
returned as an array. Each result column is stored in an array
offset, starting at offset 0.
</para>
<para>
From PHP 4.2.0, <parameter>row</parameter> can be optional.
Calling <function>pg_fetch_row</function> will incremented
internal row counter, that is associated with the <parameter>result</parameter>,
counter by 1.
</para>
<para>
It returns an array that corresponds to the fetched row, or &false;
if there are no more rows.