array_values_basic.phpt 760 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --TEST--
  2. Test array_values() function : basic functionality
  3. --FILE--
  4. <?php
  5. /* Prototype : array array_values(array $input)
  6. * Description: Return just the values from the input array
  7. * Source code: ext/standard/array.c
  8. */
  9. /*
  10. * Test basic functionality of array_values()
  11. */
  12. echo "*** Testing array_values() : basic functionality ***\n";
  13. // Initialise all required variables
  14. $input = array('zero', 'one', 'two', 'three' => 3, 10 => 'ten');
  15. // Calling array_values() with all possible arguments
  16. var_dump( array_values($input) );
  17. echo "Done";
  18. ?>
  19. --EXPECTF--
  20. *** Testing array_values() : basic functionality ***
  21. array(5) {
  22. [0]=>
  23. string(4) "zero"
  24. [1]=>
  25. string(3) "one"
  26. [2]=>
  27. string(3) "two"
  28. [3]=>
  29. int(3)
  30. [4]=>
  31. string(3) "ten"
  32. }
  33. Done