"라라벨 array collapse()"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
1번째 줄: 1번째 줄:
==개요==
==개요==
;라라벨 array_collapse()
;라라벨 array_collapse()
<source lang='php'>
<syntaxhighlight lang='php'>
$array = array_collapse([[1], ['hello', 3], [1, 2, 'hello']]);
$array = array_collapse([[1], ['hello', 3], [1, 2, 'hello']]);
print_r( $array );
print_r( $array );
13번째 줄: 13번째 줄:
#    [5] => hello
#    [5] => hello
# )
# )
</source>
</syntaxhighlight>


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

2020년 11월 2일 (월) 02:58 기준 최신판

1 개요[ | ]

라라벨 array_collapse()
$array = array_collapse([[1], ['hello', 3], [1, 2, 'hello']]);
print_r( $array );
# Array
# (
#     [0] => 1
#     [1] => hello
#     [2] => 3
#     [3] => 1
#     [4] => 2
#     [5] => hello
# )

2 같이 보기[ | ]

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