add bitset operations and tests
[hiphop-php.git] / hphp / test / slow / ext_array / array_walk_recursive.php
blob1f6590fde46d376bb6bb2e831e47ac7387a2f791
1 <?php
3 function test_print($item,$key) {
4 echo "$key: $item\n";
7 $sweet = array("a" => "apple", "b" => "banana");
8 $fruits = array("sweet" => $sweet, "sour" => "lemon");
10 array_walk_recursive($fruits, "test_print");