mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Fix return types
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@189159 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
80bda0c1f9
commit
bd9dfa2fbf
4 changed files with 13 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.10 $ -->
|
||||
<!-- $Revision: 1.11 $ -->
|
||||
<refentry id="function.mysqli-prepare">
|
||||
<refnamediv>
|
||||
<refname>mysqli_prepare</refname>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<title>Description</title>
|
||||
<para>Procedure style:</para>
|
||||
<methodsynopsis>
|
||||
<type>mixed</type><methodname>mysqli_prepare</methodname>
|
||||
<type>mysqli_stmt</type><methodname>mysqli_prepare</methodname>
|
||||
<methodparam><type>mysqli</type><parameter>link</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>query</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
|
@ -20,7 +20,7 @@
|
|||
<classsynopsis>
|
||||
<ooclass><classname>mysqli</classname></ooclass>
|
||||
<methodsynopsis>
|
||||
<type>mixed</type><methodname>prepare</methodname>
|
||||
<type>mysqli_stmt</type><methodname>prepare</methodname>
|
||||
<methodparam><type>string</type><parameter>query</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
</classsynopsis>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.6 $ -->
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<refentry id="function.mysqli-stmt-data-seek">
|
||||
<refnamediv>
|
||||
<refname>mysqli_stmt_data_seek</refname>
|
||||
|
@ -10,7 +10,7 @@
|
|||
<title>Description</title>
|
||||
<para>Procedural style:</para>
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>mysqli_stmt_data_seek</methodname>
|
||||
<type>void</type><methodname>mysqli_stmt_data_seek</methodname>
|
||||
<methodparam><type>mysqli_stmt</type><parameter>statement</parameter></methodparam>
|
||||
<methodparam><type>int</type><parameter>offset</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
|
@ -18,7 +18,7 @@
|
|||
<classsynopsis>
|
||||
<ooclass><classname>mysqli_stmt</classname></ooclass>
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>data_seek</methodname>
|
||||
<type>void</type><methodname>data_seek</methodname>
|
||||
<methodparam><type>int</type><parameter>offset</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
</classsynopsis>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<refsect1>
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
&return.success;
|
||||
Returns &null; on success or &false; on failure.
|
||||
</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-stmt-result-metadata">
|
||||
<refnamediv>
|
||||
<refname>mysqli_stmt_result_metadata</refname>
|
||||
|
@ -9,14 +9,14 @@
|
|||
<title>Description</title>
|
||||
<para>Procedural style:</para>
|
||||
<methodsynopsis>
|
||||
<type>mixed</type><methodname>mysqli_stmt_result_metadata</methodname>
|
||||
<type>mysqli_result</type><methodname>mysqli_stmt_result_metadata</methodname>
|
||||
<methodparam><type>mysqli_stmt</type><parameter>stmt</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>Object oriented style (method):</para>
|
||||
<classsynopsis>
|
||||
<ooclass><classname>mysqli_stmt</classname></ooclass>
|
||||
<methodsynopsis>
|
||||
<type>mixed</type><methodname>result_metadata</methodname>
|
||||
<type>mysqli_result</type><methodname>result_metadata</methodname>
|
||||
<void />
|
||||
</methodsynopsis>
|
||||
</classsynopsis>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.11 $ -->
|
||||
<!-- $Revision: 1.12 $ -->
|
||||
<refentry id="function.mysqli-use-result">
|
||||
<refnamediv>
|
||||
<refname>mysqli_use_result</refname>
|
||||
|
@ -10,14 +10,14 @@
|
|||
<title>Description</title>
|
||||
<para>Procedural style:</para>
|
||||
<methodsynopsis>
|
||||
<type>mixed</type><methodname>mysqli_use_result</methodname>
|
||||
<type>mysqli_result</type><methodname>mysqli_use_result</methodname>
|
||||
<methodparam><type>mysqli</type><parameter>link</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>Object oriented style (method):</para>
|
||||
<classsynopsis>
|
||||
<ooclass><classname>mysqli</classname></ooclass>
|
||||
<methodsynopsis>
|
||||
<type>mixed</type><methodname>use_result</methodname>
|
||||
<type>mysqli_result</type><methodname>use_result</methodname>
|
||||
<void />
|
||||
</methodsynopsis>
|
||||
</classsynopsis>
|
||||
|
|
Loading…
Reference in a new issue