reference/mysqli/mysqli_result/fetch-row.xml
035c126c0393fe154bac46e2c3c489ebadce48a5
...
...
@@ -4,18 +4,18 @@
4
4
<refnamediv>
5
5
<refname>mysqli_result::fetch_row</refname>
6
6
<refname>mysqli_fetch_row</refname>
7
-
<refpurpose>Get a result row as an enumerated array</refpurpose>
7
+
<refpurpose>Fetch the next row of a result set as an enumerated array</refpurpose>
8
8
</refnamediv>
9
9

10
10
<refsect1 role="description">
11
11
&reftitle.description;
12
12
<para>&style.oop;</para>
13
-
<methodsynopsis role="oop">
13
+
<methodsynopsis role="mysqli_result">
14
14
<modifier>public</modifier> <type class="union"><type>array</type><type>null</type><type>false</type></type><methodname>mysqli_result::fetch_row</methodname>
15
15
<void/>
16
16
</methodsynopsis>
17
17
<para>&style.procedural;</para>
18
-
<methodsynopsis role="procedural">
18
+
<methodsynopsis>
19
19
<type class="union"><type>array</type><type>null</type><type>false</type></type><methodname>mysqli_fetch_row</methodname>
20
20
<methodparam><type>mysqli_result</type><parameter>result</parameter></methodparam>
21
21
</methodsynopsis>
...
...
@@ -40,8 +40,8 @@
40
40
<refsect1 role="returnvalues">
41
41
&reftitle.returnvalues;
42
42
<para>
43
-
<function>mysqli_fetch_row</function> returns an array of values that corresponds to the fetched row
44
-
or &null; if there are no more rows in result set.
43
+
Returns an enumerated array representing the fetched row, &null; if there
44
+
are no more rows in the result set, &return.falseforfailure;.
45
45
</para>
46
46
</refsect1>
47
47

...
...
@@ -104,6 +104,7 @@ Santa Clara (USA)
104
104
<simplelist>
105
105
<member><function>mysqli_fetch_array</function></member>
106
106
<member><function>mysqli_fetch_assoc</function></member>
107
+
<member><function>mysqli_fetch_column</function></member>
107
108
<member><function>mysqli_fetch_object</function></member>
108
109
<member><function>mysqli_query</function></member>
109
110
<member><function>mysqli_data_seek</function></member>
110
111