mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
fetch functions return string (bug #40206)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@232567 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
81546a3487
commit
93fbad0d6a
8 changed files with 17 additions and 16 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.24 $ -->
|
||||
<!-- $Revision: 1.25 $ -->
|
||||
<refentry id="function.mysql-fetch-array">
|
||||
<refnamediv>
|
||||
<refname>mysql_fetch_array</refname>
|
||||
|
@ -42,7 +42,7 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns an array that corresponds to the fetched row, or &false;
|
||||
Returns an array of strings that corresponds to the fetched row, or &false;
|
||||
if there are no more rows. The type of returned array depends on
|
||||
how <parameter>result_type</parameter> is defined. By using
|
||||
<constant>MYSQL_BOTH</constant> (default), you'll get an array with both
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.15 $ -->
|
||||
<!-- $Revision: 1.16 $ -->
|
||||
<refentry id="function.mysql-fetch-assoc">
|
||||
<refnamediv>
|
||||
<refname>mysql_fetch_assoc</refname>
|
||||
|
@ -33,7 +33,7 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns an associative array that corresponds to the fetched row, or
|
||||
Returns an associative array of strings that corresponds to the fetched row, or
|
||||
&false; if there are no more rows.
|
||||
</para>
|
||||
<para>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.15 $ -->
|
||||
<!-- $Revision: 1.16 $ -->
|
||||
<refentry id="function.mysql-fetch-object">
|
||||
<refnamediv>
|
||||
<refname>mysql_fetch_object</refname>
|
||||
|
@ -50,7 +50,7 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns an <type>object</type> with properties that correspond to the
|
||||
Returns an <type>object</type> with string properties that correspond to the
|
||||
fetched row, or &false; if there are no more rows.
|
||||
</para>
|
||||
<para>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.12 $ -->
|
||||
<!-- $Revision: 1.13 $ -->
|
||||
<refentry id="function.mysql-fetch-row">
|
||||
<refnamediv>
|
||||
<refname>mysql_fetch_row</refname>
|
||||
|
@ -30,7 +30,7 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns an numerical array that corresponds to the fetched row, or
|
||||
Returns an numerical array of strings that corresponds to the fetched row, or
|
||||
&false; if there are no more rows.
|
||||
</para>
|
||||
<para>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.22 $ -->
|
||||
<!-- $Revision: 1.23 $ -->
|
||||
<refentry id="function.mysqli-fetch-array">
|
||||
<refnamediv>
|
||||
<refname>mysqli_fetch_array</refname>
|
||||
|
@ -77,7 +77,7 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns an array that corresponds to the fetched row or &null; if there
|
||||
Returns an array of strnigs that corresponds to the fetched row or &null; if there
|
||||
are no more rows in resultset.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.20 $ -->
|
||||
<!-- $Revision: 1.21 $ -->
|
||||
<refentry id="function.mysqli-fetch-assoc">
|
||||
<refnamediv>
|
||||
<refname>mysqli_fetch_assoc</refname>
|
||||
|
@ -42,7 +42,7 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns an associative array representing the fetched row in the result
|
||||
Returns an associative array of strnigs representing the fetched row in the result
|
||||
set, where each key in the array represents the name of one of the result
|
||||
set's columns or &null; if there are no more rows in resultset.
|
||||
</para>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.19 $ -->
|
||||
<!-- $Revision: 1.20 $ -->
|
||||
<refentry id="function.mysqli-fetch-object">
|
||||
<refnamediv>
|
||||
<refname>mysqli_fetch_object</refname>
|
||||
|
@ -58,7 +58,8 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns an object that corresponds to the fetched row or &null; if there are no more rows in resultset.
|
||||
Returns an object with string properties that corresponds to the fetched
|
||||
row or &null; if there are no more rows in resultset.
|
||||
</para>
|
||||
&database.field-case;
|
||||
&database.fetch-null;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.18 $ -->
|
||||
<!-- $Revision: 1.19 $ -->
|
||||
<refentry id="function.mysqli-fetch-row">
|
||||
<refnamediv>
|
||||
<refname>mysqli_fetch_row</refname>
|
||||
|
@ -42,7 +42,7 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
<function>mysqli_fetch_row</function> returns an array that corresponds to the fetched row
|
||||
<function>mysqli_fetch_row</function> returns an array of strnigs that corresponds to the fetched row
|
||||
or &null; if there are no more rows in result set.
|
||||
</para>
|
||||
&database.fetch-null;
|
||||
|
|
Loading…
Reference in a new issue