PHP array_shift()

Jmnote bot (토론 | 기여)님의 2020년 11월 2일 (월) 02:57 판 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))

1 개요

PHP array_shift()
  • 배열의 맨 앞에 있는 원소를 시프트하는 PHP 함수
  • 배열에서 맨 앞에 있는 원소 1개를 빼내어 반환하는 PHP 함수
<?php
$fruits = ["orange", "banana", "apple"];
$fruit = array_shift( $fruits );
var_dump( $fruit );
# string(6) "orange"
print_r( $fruits );
# Array
# (
#     [0] => banana
#     [1] => apple
# )

2 같이 보기

3 참고

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