mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
correct the types
clarify the function purpose (was buggy) reformat see also and put it in the end of the reference git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@144271 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
2c7a373a36
commit
576e684a19
1 changed files with 13 additions and 11 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.1 $ -->
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- splitted from ./en/functions/dba.xml, last change in rev 1.2 -->
|
||||
<refentry id="function.dba-key-split">
|
||||
<refnamediv>
|
||||
|
@ -9,20 +9,16 @@
|
|||
<refsect1>
|
||||
<title>Description</title>
|
||||
<methodsynopsis>
|
||||
<type>array|false</type><methodname>dba_key_split</methodname>
|
||||
<methodparam><type>string|false</type><parameter>key</parameter></methodparam>
|
||||
<type>mixed</type><methodname>dba_key_split</methodname>
|
||||
<methodparam><type>mixed</type><parameter>key</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
<function>dba_key_split</function> returns &false; if key is NULL of
|
||||
&false; or an array of the form array(0=>group,1=>value_name).
|
||||
<function>dba_key_split</function> returns an array of the form
|
||||
array(0=>group,1=>value_name). This function will return &false;
|
||||
if <parameter>key</parameter> is &null; or &false;.
|
||||
</para>
|
||||
<para>
|
||||
<parameter>key</parameter> the key in string representation.
|
||||
</para>
|
||||
<para>
|
||||
See also:
|
||||
<function>dba_firstkey</function>, <function>dba_nextkey</function>
|
||||
and <function>dba_fetch</function>.
|
||||
<parameter>key</parameter> is the key in string representation.
|
||||
</para>
|
||||
<para>
|
||||
<note>
|
||||
|
@ -31,6 +27,12 @@
|
|||
</simpara>
|
||||
</note>
|
||||
</para>
|
||||
<para>
|
||||
See also
|
||||
<function>dba_firstkey</function>,
|
||||
<function>dba_nextkey</function> and
|
||||
<function>dba_fetch</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
|
|
Loading…
Reference in a new issue