blob: ba0f2657c8a369b1833fe88fd69be7bd69b4f890 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
--TEST--
Test each() function : usage variations - Internal array pointer
--FILE--
<?php
/* Prototype : array each(array $arr)
* Description: Return the currently pointed key..value pair in the passed array,
* and advance the pointer to the next element
* Source code: Zend/zend_builtin_functions.c
*/
/*
* Test the position of the internal array pointer after a call to each()
*/
echo "*** Testing each() : usage variations ***\n";
$arr = array('zero', 'one', 'two', 'abc', 'xyz');
echo "\n-- Current position: --\n";
echo key($arr) . " => " . current($arr) . "\n";
echo "\n-- Call to each(): --\n";
var_dump( each($arr) );
echo "\n-- New position: --\n";
echo key($arr) . " => " . current($arr) . "\n";
echo "Done";
?>
--EXPECTF--
*** Testing each() : usage variations ***
-- Current position: --
0 => zero
-- Call to each(): --
Deprecated: The each() function is deprecated. This message will be suppressed on further calls in %s on line %d
array(4) {
[1]=>
string(4) "zero"
["value"]=>
string(4) "zero"
[0]=>
int(0)
["key"]=>
int(0)
}
-- New position: --
1 => one
Done
|