remove array_multisort and convert array_multisortN to use inout
[hiphop-php.git] / hphp / test / zend / good / ext / standard / tests / array / each_variation4.php.expectf
blobf19d448682da266bede3a399af25de9e03490075
1 *** Testing each() : usage variations ***
2 -- Call each until at the end of the array: --
3 array(4) {
4   [1]=>
5   string(3) "foo"
6   ["value"]=>
7   string(3) "foo"
8   [0]=>
9   string(3) "one"
10   ["key"]=>
11   string(3) "one"
13 array(4) {
14   [1]=>
15   string(3) "bar"
16   ["value"]=>
17   string(3) "bar"
18   [0]=>
19   int(0)
20   ["key"]=>
21   int(0)
23 bool(false)
24 Done