array_unique_variation5.phpt 809 B

123456789101112131415161718192021222324252627282930313233
  1. --TEST--
  2. Test array_unique() function : usage variations - array with duplicate keys
  3. --FILE--
  4. <?php
  5. /* Prototype : array array_unique(array $input)
  6. * Description: Removes duplicate values from array
  7. * Source code: ext/standard/array.c
  8. */
  9. /*
  10. * Testing the functionality of array_unique() by passing
  11. * array having duplicate keys as values.
  12. */
  13. echo "*** Testing array_unique() : array with duplicate keys for \$input argument ***\n";
  14. // initialize the array having duplicate keys
  15. $input = array( 1 => "one", 2 => "two", 2 => "2", 3 => "three", 1 => "1", "1", "2");
  16. var_dump( array_unique($input) );
  17. echo "Done";
  18. ?>
  19. --EXPECTF--
  20. *** Testing array_unique() : array with duplicate keys for $input argument ***
  21. array(3) {
  22. [1]=>
  23. string(1) "1"
  24. [2]=>
  25. string(1) "2"
  26. [3]=>
  27. string(5) "three"
  28. }
  29. Done