blob: 71164383e41bd2dd275c49ac45a431a78d8e0de0 (
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::uksort() function : wrong arg count
--FILE--
<?php
/* Sort the entries by key using user defined function.
* Source code: ext/spl/spl_array.c
* Alias to functions:
*/
$ao = new ArrayObject();
try {
$ao->uksort();
} catch (ArgumentCountError $e) {
echo $e->getMessage() . "\n";
}
try {
$ao->uksort(1,2);
} catch (ArgumentCountError $e) {
echo $e->getMessage() . "\n";
}
?>
--EXPECT--
ArrayObject::uksort() expects exactly 1 argument, 0 given
ArrayObject::uksort() expects exactly 1 argument, 2 given
|