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

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

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

?>
--EXPECT--
array(4) {
  [1]=>
  array(0) {
  }
  [u"value"]=>
  array(0) {
  }
  [0]=>
  int(0)
  [u"key"]=>
  int(0)
}