mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
fixed parameter for fetch_fields methods
fixed description for mysqli_fetch_field (Thx to Enrique) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@153766 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
5382c8f065
commit
3d9ba367c5
2 changed files with 8 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<refentry id="function.mysqli-fetch-field">
|
||||
<refnamediv>
|
||||
<refname>mysqli_fetch_field</refname>
|
||||
|
@ -23,11 +23,11 @@
|
|||
</methodsynopsis>
|
||||
</classsynopsis>
|
||||
<para>
|
||||
The <function>mysqli_fetch_field</function> function is used to return the attributes
|
||||
of the next column in the result set represented by the <parameter>result</parameter>
|
||||
parameter as an object. When executed this function will return an object containing
|
||||
the attributes of the current column or &false; if there are no more columns in the
|
||||
result set.
|
||||
The <function>mysqli_fetch_field</function> returns the definition of one column
|
||||
of a result set as an object. Call this function repeatedly to retrieve
|
||||
information about all columns in the result set.
|
||||
<function>mysqli_fetch_field</function> returns &false; when no more fields
|
||||
are left.
|
||||
</para>
|
||||
</refsect1>
|
||||
<refsect1>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<refentry id="function.mysqli-fetch-fields">
|
||||
<refnamediv>
|
||||
<refname>mysqli_fetch_fields</refname>
|
||||
|
@ -19,7 +19,7 @@
|
|||
<methodsynopsis>
|
||||
<type>mixed</type>
|
||||
<methodname>fetch_fields</methodname>
|
||||
<methodparam><type>int</type><parameter>fieldnr</parameter></methodparam>
|
||||
<methodparam><type>void</type><parameter></parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
</classsynopsis>
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue