array_reverse_basic2.phpt 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. --TEST--
  2. Test array_reverse() function : basic functionality - associative array for 'array' argument
  3. --FILE--
  4. <?php
  5. /* Prototype : array array_reverse(array $array [, bool $preserve_keys])
  6. * Description: Return input as a new array with the order of the entries reversed
  7. * Source code: ext/standard/array.c
  8. */
  9. /*
  10. * Testing array_reverse() with associative array for $array argument
  11. */
  12. echo "*** Testing array_reverse() : basic functionality ***\n";
  13. // Initialise the array
  14. $array = array("a" => "hello", 123 => "number", 'string' => 'blue', "10" => 13.33);
  15. // Calling array_reverse() with default arguments
  16. var_dump( array_reverse($array) );
  17. // Calling array_reverse() with all possible arguments
  18. var_dump( array_reverse($array, true) ); // expects the keys to be preserved
  19. var_dump( array_reverse($array, false) ); // expects the keys not to be preserved
  20. echo "Done";
  21. ?>
  22. --EXPECTF--
  23. *** Testing array_reverse() : basic functionality ***
  24. array(4) {
  25. [0]=>
  26. float(13.33)
  27. ["string"]=>
  28. string(4) "blue"
  29. [1]=>
  30. string(6) "number"
  31. ["a"]=>
  32. string(5) "hello"
  33. }
  34. array(4) {
  35. [10]=>
  36. float(13.33)
  37. ["string"]=>
  38. string(4) "blue"
  39. [123]=>
  40. string(6) "number"
  41. ["a"]=>
  42. string(5) "hello"
  43. }
  44. array(4) {
  45. [0]=>
  46. float(13.33)
  47. ["string"]=>
  48. string(4) "blue"
  49. [1]=>
  50. string(6) "number"
  51. ["a"]=>
  52. string(5) "hello"
  53. }
  54. Done