mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 17:08:54 +00:00
Added basic partintro, fixed recursive function reference.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@30713 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
cb1b3bf9cf
commit
8398134187
1 changed files with 14 additions and 1 deletions
|
@ -1,6 +1,19 @@
|
|||
<reference id="ref.array">
|
||||
<title>Array Functions</title>
|
||||
<titleabbrev>Arrays</titleabbrev>
|
||||
<partintro>
|
||||
<simpara>
|
||||
These functions allow you to interact with and manipulate
|
||||
arrays in various ways. Arrays are essential for storing,
|
||||
managing, and operating on sets of variables.
|
||||
</simpara>
|
||||
<simpara>
|
||||
Simple and multi-dimensional arrays are supported, and may be
|
||||
either user created or created by another function.
|
||||
There are specific database handling functions for populating
|
||||
arrays from database queries, and several functions return arrays.
|
||||
</simpara>
|
||||
</partintro>
|
||||
|
||||
<refentry id="function.array">
|
||||
<refnamediv>
|
||||
|
@ -1964,7 +1977,7 @@ while (list ($id, $name, $salary) = mysql_fetch_row ($result)) {
|
|||
<para>
|
||||
See also: <function>current</function>,
|
||||
<function>each</function>, <function>next</function>,
|
||||
<function>prev</function>, and <function>reset</function>.
|
||||
and <function>prev</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
|
Loading…
Reference in a new issue