blob: 5454f5ce0ff4f91bc272269563a9a8a06ba12bb2 (
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
|
--TEST--
Testing each() with array and object
--FILE--
<?php
$a = new stdClass;
$foo = each($a);
var_dump($foo);
$a = new stdClass;
var_dump(each($a));
$a = array(new stdClass);
var_dump(each($a));
?>
--EXPECTF--
Deprecated: The each() function is deprecated. This message will be suppressed on further calls in %s on line %d
bool(false)
bool(false)
array(4) {
[1]=>
object(stdClass)#1 (0) {
}
["value"]=>
object(stdClass)#1 (0) {
}
[0]=>
int(0)
["key"]=>
int(0)
}
|