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:
Ron Chmara 2000-08-21 10:38:59 +00:00
parent cb1b3bf9cf
commit 8398134187

View file

@ -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>