array_intersect_basic.phpt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. --TEST--
  2. Test array_intersect() function : basic functionality
  3. --FILE--
  4. <?php
  5. /* Prototype : array array_intersect(array $arr1, array $arr2 [, array $...])
  6. * Description: Returns the entries of arr1 that have values which are present in all the other arguments
  7. * Source code: ext/standard/array.c
  8. */
  9. /*
  10. * Testing the behavior of array_intersect() by passing different arrays for the arguments.
  11. * Function is tested by passing associative array as well as array with default keys.
  12. */
  13. echo "*** Testing array_intersect() : basic functionality ***\n";
  14. // array with default keys
  15. $arr_default_keys = array(1, 2, "hello", 'world');
  16. // associative array
  17. $arr_associative = array("one" => 1, "two" => 2);
  18. // default key array for both $arr1 and $arr2 argument
  19. var_dump( array_intersect($arr_default_keys, $arr_default_keys) );
  20. // default key array for $arr1 and associative array for $arr2 argument
  21. var_dump( array_intersect($arr_default_keys, $arr_associative) );
  22. // associative array for $arr1 and default key array for $arr2
  23. var_dump( array_intersect($arr_associative, $arr_default_keys) );
  24. // associative array for both $arr1 and $arr2 argument
  25. var_dump( array_intersect($arr_associative, $arr_associative) );
  26. // more arrays to be intersected
  27. $arr3 = array(2, 3, 4);
  28. var_dump( array_intersect($arr_default_keys, $arr_associative, $arr3) );
  29. var_dump( array_intersect($arr_associative, $arr_default_keys, $arr3, $arr_associative) );
  30. echo "Done";
  31. ?>
  32. --EXPECTF--
  33. *** Testing array_intersect() : basic functionality ***
  34. array(4) {
  35. [0]=>
  36. int(1)
  37. [1]=>
  38. int(2)
  39. [2]=>
  40. string(5) "hello"
  41. [3]=>
  42. string(5) "world"
  43. }
  44. array(2) {
  45. [0]=>
  46. int(1)
  47. [1]=>
  48. int(2)
  49. }
  50. array(2) {
  51. ["one"]=>
  52. int(1)
  53. ["two"]=>
  54. int(2)
  55. }
  56. array(2) {
  57. ["one"]=>
  58. int(1)
  59. ["two"]=>
  60. int(2)
  61. }
  62. array(1) {
  63. [1]=>
  64. int(2)
  65. }
  66. array(1) {
  67. ["two"]=>
  68. int(2)
  69. }
  70. Done