array_reverse_basic1.phpt 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. --TEST--
  2. Test array_reverse() function : basic functionality - simple 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() by giving a simple array for $array argument
  11. */
  12. echo "*** Testing array_reverse() : basic functionality ***\n";
  13. // Initialise the array
  14. $array = array("a", "green", "red", '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(6) {
  25. [0]=>
  26. float(13.33)
  27. [1]=>
  28. int(10)
  29. [2]=>
  30. string(4) "blue"
  31. [3]=>
  32. string(3) "red"
  33. [4]=>
  34. string(5) "green"
  35. [5]=>
  36. string(1) "a"
  37. }
  38. array(6) {
  39. [5]=>
  40. float(13.33)
  41. [4]=>
  42. int(10)
  43. [3]=>
  44. string(4) "blue"
  45. [2]=>
  46. string(3) "red"
  47. [1]=>
  48. string(5) "green"
  49. [0]=>
  50. string(1) "a"
  51. }
  52. array(6) {
  53. [0]=>
  54. float(13.33)
  55. [1]=>
  56. int(10)
  57. [2]=>
  58. string(4) "blue"
  59. [3]=>
  60. string(3) "red"
  61. [4]=>
  62. string(5) "green"
  63. [5]=>
  64. string(1) "a"
  65. }
  66. Done