"라라벨 Arr::pluck()"의 두 판 사이의 차이

18번째 줄: 18번째 줄:
==예시 2==
==예시 2==
<syntaxhighlight lang='php'>
<syntaxhighlight lang='php'>
<?php
include 'vendor/autoload.php';
use Illuminate\Support\Arr;
use Illuminate\Support\Arr;


25번째 줄: 27번째 줄:
];
];
print_r( Arr::pluck($array, 'developer.name') );
print_r( Arr::pluck($array, 'developer.name') );
# Array
</syntaxhighlight>
# (
<syntaxhighlight lang='php'>
#     [0] => Taylor
<?php
#     [1] => Abigail
include 'vendor/autoload.php';
# )
use Illuminate\Support\Arr;
 
$array = [
     ['developer' => ['id' => 1, 'name' => 'Taylor']],
     ['developer' => ['id' => 2, 'name' => 'Abigail']],
];
 
print_r( Arr::pluck($array, 'developer.name', 'developer.id') );
print_r( Arr::pluck($array, 'developer.name', 'developer.id') );
# Array
# (
#    [101] => Taylor
#    [102] => Abigail
# )
</syntaxhighlight>
</syntaxhighlight>



2021년 9월 4일 (토) 14:47 판

1 개요

라라벨 Arr::pluck(), 舊 array_pluck()
  • 배열로부터 주어진 키-값 쌍의 리스트를 추출하는 라라벨 함수

2 예시 1

<?php
include 'vendor/autoload.php';
use Illuminate\Support\Arr;

$array = [
    ['id' => 1, 'name' => 'Taylor'],
    ['id' => 2, 'name' => 'Abigail'],
];
print_r( Arr::pluck($array, 'name') );

3 예시 2

<?php
include 'vendor/autoload.php';
use Illuminate\Support\Arr;

$array = [
    ['developer' => ['id' => 1, 'name' => 'Taylor']],
    ['developer' => ['id' => 2, 'name' => 'Abigail']],
];
print_r( Arr::pluck($array, 'developer.name') );
<?php
include 'vendor/autoload.php';
use Illuminate\Support\Arr;

$array = [
    ['developer' => ['id' => 1, 'name' => 'Taylor']],
    ['developer' => ['id' => 2, 'name' => 'Abigail']],
];

print_r( Arr::pluck($array, 'developer.name', 'developer.id') );

4 같이 보기

5 참고

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