PHP array_slice()

Jmnote (토론 | 기여)님의 2020년 2월 5일 (수) 02:09 판 (→‎개요)

1 개요

PHP array_slice()
  • 배열의 단편(slice)을 추출하는 PHP 함수
$input = ["a", "b", "c", "d", "e"];
$output = array_slice($input, 2);      // returns "c", "d", and "e"
$output = array_slice($input, -2, 1);  // returns "d"
$output = array_slice($input, 0, 3);   // returns "a", "b", and "c"
$input = ["a", "b", "c", "d", "e"];
print_r(array_slice($input, 2, -1));
print_r(array_slice($input, 2, -1, true));

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}