array_uintersect_variation5.phpt 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. --TEST--
  2. Test array_uintersect() function : usage variation - differing comparison functions
  3. --FILE--
  4. <?php
  5. /* Prototype : array array_uintersect(array arr1, array arr2 [, array ...], callback data_compare_func)
  6. * Description: Returns the entries of arr1 that have values which are present in all the other arguments. Data is compared by using an user-supplied callback.
  7. * Source code: ext/standard/array.c
  8. * Alias to functions:
  9. */
  10. echo "*** Testing array_uintersect() : usage variation - differing comparison functions***\n";
  11. $arr1 = array(1);
  12. $arr2 = array(1,2);
  13. echo "\n-- comparison function with an incorrect return value --\n";
  14. function incorrect_return_value ($val1, $val2) {
  15. return array(1);
  16. }
  17. var_dump(array_uintersect($arr1, $arr2, 'incorrect_return_value'));
  18. echo "\n-- comparison function taking too many parameters --\n";
  19. function too_many_parameters ($val1, $val2, $val3) {
  20. return 1;
  21. }
  22. var_dump(array_uintersect($arr1, $arr2, 'too_many_parameters'));
  23. echo "\n-- comparison function taking too few parameters --\n";
  24. function too_few_parameters ($val1) {
  25. return 1;
  26. }
  27. var_dump(array_uintersect($arr1, $arr2, 'too_few_parameters'));
  28. ?>
  29. ===DONE===
  30. --EXPECTF--
  31. *** Testing array_uintersect() : usage variation - differing comparison functions***
  32. -- comparison function with an incorrect return value --
  33. array(0) {
  34. }
  35. -- comparison function taking too many parameters --
  36. Warning: Missing argument 3 for too_many_parameters() in %sarray_uintersect_variation5.php on line %d
  37. Warning: Missing argument 3 for too_many_parameters() in %sarray_uintersect_variation5.php on line %d
  38. Warning: Missing argument 3 for too_many_parameters() in %sarray_uintersect_variation5.php on line %d
  39. array(0) {
  40. }
  41. -- comparison function taking too few parameters --
  42. array(0) {
  43. }
  44. ===DONE===