mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Just more initial docs.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@127657 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
ec1ec6a347
commit
3a8c96d951
2 changed files with 13 additions and 7 deletions
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.1 $ -->
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<refentry id="function.mysqli-free-result">
|
||||
<refnamediv>
|
||||
<refname>mysqli_free_result</refname>
|
||||
<refpurpose></refpurpose>
|
||||
<refpurpose>Free the memory associated with a result</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
|
@ -12,7 +12,8 @@
|
|||
<methodparam><type>resource</type><parameter>result</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
&warn.undocumented.func;
|
||||
The <function>mysqli_free_result</function> frees the memory associated with
|
||||
the result represented by the <parameter>result</parameter> parameter.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
|
|
@ -1,20 +1,25 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.1 $ -->
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<refentry id="function.mysqli-select-db">
|
||||
<refnamediv>
|
||||
<refname>mysqli_select_db</refname>
|
||||
<refpurpose></refpurpose>
|
||||
<refpurpose>Select the default database for database queries</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<methodsynopsis>
|
||||
<type>string</type><methodname>mysqli_select_db</methodname>
|
||||
<methodparam><type>resource</type><parameter>link</parameter></methodparam>
|
||||
<methodparam><type>string</type><parameter>dbname</parameter></methodparam>
|
||||
<methodparam><type>bool</type><parameter>dbname</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
&warn.undocumented.func;
|
||||
The <function>mysqli_select_db</function> function selects the default
|
||||
database (specified by the <parameter>dbname</parameter> parameter) to be
|
||||
used when performing queries against the database connection
|
||||
represented by the <parameter>link</parameter> parameter.
|
||||
</para>
|
||||
<para>
|
||||
This function returns &true; upon success or &false; on failure.
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
|
|
Loading…
Reference in a new issue