summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug73209.phpt
blob: 73839409366895ca7296a0a94d4efc1504ba6439 (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
--TEST--
Bug #73209: RecursiveArrayIterator does not iterate object properties
--FILE--
<?php

class hello {
  public $props = array();
  function __construct() {
    $this->props = ['hello' => 5, 'props' => ['keyme' => ['test' => 5]]];
  }
}
$data = new hello();

$iterator = new RecursiveIteratorIterator(new RecursiveArrayIterator($data), RecursiveIteratorIterator::SELF_FIRST);
echo "Expect to see all keys in ->props here: \n";

foreach($iterator as $k=>$v) {
    echo $k . "\n";
}

?>
--EXPECT--
Expect to see all keys in ->props here: 
props
hello
props
keyme
test