import zend standard tests
[hiphop-php.git] / hphp / test / zend / bad / ext-standard-array / sort_error.php.expectf
blobca7150f513e7db5aece3fe62c3de65fcf764b6a5
1 *** Testing sort() : error conditions ***
3 -- Testing sort() function with Zero arguments --
4 HipHop Warning: %a
5 bool(false)
7 -- Testing sort() function with more than expected no. of arguments --
9 Sort flag = SORT_REGULAR
10 HipHop Warning: %a
11 bool(false)
12 array(2) {
13   [0]=>
14   int(1)
15   [1]=>
16   int(2)
19 Sort flag = SORT_STRING
20 HipHop Warning: %a
21 bool(false)
22 array(2) {
23   [0]=>
24   int(1)
25   [1]=>
26   int(2)
29 Sort flag = SORT_NUMERIC
30 HipHop Warning: %a
31 bool(false)
32 array(2) {
33   [0]=>
34   int(1)
35   [1]=>
36   int(2)
38 Done