mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
fixed prototypes (thx to Cornelia Boenigk)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@154732 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
09617e8b29
commit
4526d669cd
1 changed files with 13 additions and 2 deletions
|
@ -1,18 +1,29 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.1 $ -->
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<refentry id="function.mysqli-stmt-init">
|
||||
<refnamediv>
|
||||
<refname>mysqli_stmt-init</refname>
|
||||
<refname>mysqli->stmt->init</refname>
|
||||
<refpurpose>
|
||||
Initializes a statement and returns an object for use with mysqli_stmt_prepare
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<para>Procedural style :</para>
|
||||
<methodsynopsis>
|
||||
<type>object</type><methodname>mysqli_stmt_init</methodname>
|
||||
<methodparam><type>object</type><parameter>link</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>Object oriented style (property):</para>
|
||||
<classsynopsis>
|
||||
<ooclass><classname>mysqli</classname></ooclass>
|
||||
<methodsynopsis>
|
||||
<type>object</type><methodname>mysqli_stmt_init</methodname>
|
||||
<type>object</type>
|
||||
<methodname>stmt_init</methodname>
|
||||
<void/>
|
||||
</methodsynopsis>
|
||||
</classsynopsis>
|
||||
<para>
|
||||
Allocates and initializes a statement object suitable for
|
||||
<function>mysqli_stmt_prepare</function>.
|
||||
|
|
Loading…
Reference in a new issue