"PHP array slice()"의 두 판 사이의 차이

(새 문서: ==개요== {{DISPLAYTITLE:PHP array_slice()}} ;PHP array_slice() * 배열의 단편(slice)을 추출하는 PHP 함수 ==같이 보기== * PHP array_chunk() - 배열을 청크들...)
 
3번째 줄: 3번째 줄:
;PHP array_slice()
;PHP array_slice()
* 배열의 단편(slice)을 추출하는 PHP 함수
* 배열의 단편(slice)을 추출하는 PHP 함수
<source lang='php' run>
$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"
</source>
<source lang='php' run>
$input = ["a", "b", "c", "d", "e"];
print_r(array_slice($input, 2, -1));
print_r(array_slice($input, 2, -1, true));
</source>


==같이 보기==
==같이 보기==

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 }}