라라벨 collect()

Jmnote (토론 | 기여)님의 2016년 8월 26일 (금) 15:49 판 (새 문서: ==개요== ;라라벨 array_where() * 콜렉션을 구성하는 라라벨 함수 <source lang='php'> print_r( collect(['taylor', 'abigail']) ); # Illuminate\Support\Collection Object...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

라라벨 array_where()
  • 콜렉션을 구성하는 라라벨 함수
print_r( collect(['taylor', 'abigail']) );
# Illuminate\Support\Collection Object
# (
#     [items:protected] => Array
#         (
#             [0] => taylor
#             [1] => abigail
#         )
# )

2 같이 보기

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