summaryrefslogtreecommitdiff
path: root/ext/spl/tests/arrayObject_uasort_error1.phpt
blob: d4c85324512773c2ee4d9b91f1d7efcdeb0f8fe3 (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
--TEST--
Test ArrayObject::uasort() function : wrong arg count
--FILE--
<?php
/* Sort the entries by values user defined function.
 * Source code: ext/spl/spl_array.c
 * Alias to functions:
 */

$ao = new ArrayObject();

try {
    $ao->uasort();
} catch (ArgumentCountError $e) {
    echo $e->getMessage() . "\n";
}

try {
    $ao->uasort(1,2);
} catch (ArgumentCountError $e) {
    echo $e->getMessage() . "\n";
}
?>
--EXPECT--
ArrayObject::uasort() expects exactly 1 argument, 0 given
ArrayObject::uasort() expects exactly 1 argument, 2 given