From 074d5dc75620b27f18478af80ed53f7e57f7bce1 Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Thu, 21 Feb 2008 18:08:31 +0000 Subject: [PATCH] Added role=parameters, and moved note to new role=notes git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@253466 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/array/functions/next.xml | 41 +++++++++++++++++++++++------- 1 file changed, 32 insertions(+), 9 deletions(-) diff --git a/reference/array/functions/next.xml b/reference/array/functions/next.xml index ddcd18d3ad..52f2d22cea 100644 --- a/reference/array/functions/next.xml +++ b/reference/array/functions/next.xml @@ -1,5 +1,5 @@ - + next @@ -19,6 +19,23 @@ advances the internal array pointer by one. + + + &reftitle.parameters; + + + + array + + + The array being affected. + + + + + + + &reftitle.returnvalues; @@ -26,15 +43,8 @@ internal array pointer, or &false; if there are no more elements. &return.falseproblem; - - - You won't be able to distinguish the end of an array from a - boolean &false; element. To properly traverse an array - which may contain &false; elements, see the each - function. - - + &reftitle.examples; @@ -55,6 +65,19 @@ $mode = end($transport); // $mode = 'plane'; + + + &reftitle.notes; + + + You won't be able to distinguish the end of an array from a + boolean &false; element. To properly traverse an array + which may contain &false; elements, see the each + function. + + + + &reftitle.seealso;