Lines Matching refs:array_uintersect
2 Test array_uintersect() function : error conditions
5 /* Prototype : array array_uintersect(array arr1, array arr2 [, array ...], callback data_compare_…
11 echo "*** Testing array_uintersect() : error conditions ***\n";
14 //Test array_uintersect with one more than the expected number of arguments
15 echo "\n-- Testing array_uintersect() function with more than expected no. of arguments --\n";
23 var_dump( array_uintersect($arr1, $arr2, $data_compare_function, $extra_arg) );
25 // Testing array_uintersect with one less than the expected number of arguments
26 echo "\n-- Testing array_uintersect() function with less than expected no. of arguments --\n";
29 var_dump( array_uintersect($arr1, $arr2) );
34 *** Testing array_uintersect() : error conditions ***
36 -- Testing array_uintersect() function with more than expected no. of arguments --
38 Warning: array_uintersect() expects parameter 4 to be a valid callback, no array or string given in…
41 -- Testing array_uintersect() function with less than expected no. of arguments --
43 Warning: array_uintersect(): at least 3 parameters are required, 2 given in %sarray_uintersect_erro…