remove array_multisort and convert array_multisortN to use inout
[hiphop-php.git] / hphp / test / zend / good / ext / standard / tests / array / array_filter_variation7.php.expectf
blob5a1fb67cdc2d1614e36fa6248712eb0f3bd8d982
1 *** Testing array_filter() : usage variations - Anonymous callback functions ***
2 Anonymous callback function with regular parameter and statement
3 array(3) {
4   [3]=>
5   int(10)
6   [4]=>
7   int(100)
8   [5]=>
9   int(1000)
11 Anonymous callback funciton with null argument
12 array(8) {
13   [0]=>
14   int(0)
15   [1]=>
16   int(1)
17   [2]=>
18   int(-1)
19   [3]=>
20   int(10)
21   [4]=>
22   int(100)
23   [5]=>
24   int(1000)
25   [6]=>
26   string(5) "Hello"
27   [7]=>
28   NULL
30 Anonymous callback function with regular argument and null statement
31 array(0) {
33 Done