summaryrefslogtreecommitdiff
path: root/ext/spl/tests/arrayObject_uasort_error1.phpt
blob: 11d96f233dc7632df518babb0d4366535930210d (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
27
28
29
30
--TEST--
Test ArrayObject::uasort() function : wrong arg count
--FILE--
<?php
/* Prototype  : int ArrayObject::uasort(callback cmp_function)
 * Description: proto int ArrayIterator::uasort(callback cmp_function)
 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 (BadMethodCallException $e) {
	echo $e->getMessage() . "\n";
}

try {
	$ao->uasort(1,2);
} catch (BadMethodCallException $e) {
	echo $e->getMessage() . "\n";
}
?>
===DONE===
--EXPECTF--
Function expects exactly one argument
Function expects exactly one argument
===DONE===