summaryrefslogtreecommitdiff
path: root/Zend/tests/each_003.phpt
blob: d0038c05615b25e374a7e2644591aa5ef43b2a33 (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
--TEST--
Testing each() with recursion
--INI--
zend.enable_gc=1
--FILE--
<?php

$a = array(array());
$a[] =& $a;

var_dump(each($a[1]));

?>
--EXPECTF--
Deprecated: The each() function is deprecated. This message will be suppressed on further calls in %s on line %d
array(4) {
  [1]=>
  array(0) {
  }
  ["value"]=>
  array(0) {
  }
  [0]=>
  int(0)
  ["key"]=>
  int(0)
}