array_slice_basic.phpt 1014 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. --TEST--
  2. Test array_slice() function : basic functionality
  3. --FILE--
  4. <?php
  5. /* Prototype : array array_slice(array $input, int $offset [, int $length [, bool $preserve_keys]])
  6. * Description: Returns elements specified by offset and length
  7. * Source code: ext/standard/array.c
  8. */
  9. /*
  10. * Test basic functionality of array_slice()
  11. */
  12. echo "*** Testing array_slice() : basic functionality ***\n";
  13. $input = array('one' => 1, 'two' => 2, 3, 23 => 4);
  14. $offset = 2;
  15. $length = 2;
  16. $preserve_keys = true;
  17. // Calling array_slice() with all possible arguments
  18. echo "\n-- All arguments --\n";
  19. var_dump( array_slice($input, $offset, $length, $preserve_keys) );
  20. // Calling array_slice() with mandatory arguments
  21. echo "\n-- Mandatory arguments --\n";
  22. var_dump( array_slice($input, $offset) );
  23. echo "Done";
  24. ?>
  25. --EXPECTF--
  26. *** Testing array_slice() : basic functionality ***
  27. -- All arguments --
  28. array(2) {
  29. [0]=>
  30. int(3)
  31. [23]=>
  32. int(4)
  33. }
  34. -- Mandatory arguments --
  35. array(2) {
  36. [0]=>
  37. int(3)
  38. [1]=>
  39. int(4)
  40. }
  41. Done