1--TEST--
2Test array_udiff_uassoc() function : usage variation
3--FILE--
4<?php
5/* Prototype  : array array_udiff_uassoc(array arr1, array arr2 [, array ...], callback data_comp_func, callback key_comp_func)
6 * Description: Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Keys and elements are compared by user supplied functions.
7 * Source code: ext/standard/array.c
8 * Alias to functions:
9 */
10
11echo "*** Testing array_udiff_uassoc() : usage variation - differing comparison functions***\n";
12
13$arr1 = array(1);
14$arr2 = array(1);
15
16echo "\n-- comparison function with an incorrect return value --\n";
17function incorrect_return_value ($val1, $val2) {
18  return array(1);
19}
20var_dump(array_udiff_uassoc($arr1, $arr2, 'incorrect_return_value', 'incorrect_return_value'));
21
22echo "\n-- comparison function taking too many parameters --\n";
23function too_many_parameters ($val1, $val2, $val3) {
24  return 1;
25}
26var_dump(array_udiff_uassoc($arr1, $arr2, 'too_many_parameters', 'too_many_parameters'));
27
28echo "\n-- comparison function taking too few parameters --\n";
29function too_few_parameters ($val1) {
30  return 1;
31}
32var_dump(array_udiff_uassoc($arr1, $arr2, 'too_few_parameters', 'too_few_parameters'));
33
34?>
35===DONE===
36--EXPECTF--
37*** Testing array_udiff_uassoc() : usage variation - differing comparison functions***
38
39-- comparison function with an incorrect return value --
40array(1) {
41  [0]=>
42  int(1)
43}
44
45-- comparison function taking too many parameters --
46
47Warning: Missing argument 3 for too_many_parameters() in %sarray_udiff_uassoc_variation6.php on line %d
48array(1) {
49  [0]=>
50  int(1)
51}
52
53-- comparison function taking too few parameters --
54array(1) {
55  [0]=>
56  int(1)
57}
58===DONE===
59