array_diff 배열값 제외 출력

· 2016-10-10 (월) 14:30:11 · 3830

A배열에서 B배열의 값을 제외한 A배열에 값을 출력하고 싶을 경우 사용합니다.

 

array_diff

 

(PHP 4 >= 4.0.1, PHP 5, PHP 7)

array_diff — Computes the difference of arrays

 

Description ¶

 

array array_diff ( array $array1 , array $array2 [, array $... ] )

Compares array1 against one or more other arrays and returns the values in array1 that are not present in any of the other arrays.

 

Parameters ¶

 

array1

The array to compare from

 

array2

An array to compare against

 

...

More arrays to compare against

 

Return Values ¶

 

Returns an array containing all the entries from array1 that are not present in any of the other arrays.

 

Examples ¶

 

Example #1 array_diff() example

 

<?php

$array1 = array("a" => "green", "red", "blue", "red");

$array2 = array("b" => "green", "yellow", "red");

$result = array_diff($array1, $array2);

 

print_r($result);

?>

Multiple occurrences in $array1 are all treated the same way. This will output :

 

Array

(

    [1] => blue

)

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 16-10-10 조회 3,831
PHP 16-10-10 조회 3,475
PHP 16-10-06 조회 3,471
PHP 16-10-06 조회 4,706
PHP 16-10-06 조회 3,591
PHP 16-09-28 조회 3,512
jQuery 16-09-28 조회 4,648
PHP 16-09-27 조회 3,293
PHP 16-09-27 조회 4,531
웹서버 16-09-27 조회 3,547
JavaScript 16-09-23 조회 4,168
기타 16-09-20 조회 4,923
PHP 16-09-20 조회 4,300
기타 16-09-19 조회 5,411
JavaScript 16-09-17 조회 3,652
웹서버 16-09-15 조회 3,454
기타 16-09-01 조회 3,947
JavaScript 16-08-30 조회 3,505
node.js 16-08-23 조회 4,233
jQuery 16-08-21 조회 3,876
JavaScript 16-08-18 조회 5,441
PHP 16-08-11 조회 3,623
PHP 16-08-10 조회 4,044
JavaScript 16-08-09 조회 6,152
jQuery 16-08-05 조회 5,222
PHP 16-08-05 조회 1.5만
PHP 16-08-04 조회 7,248
jQuery 16-08-03 조회 3,857
PHP 16-08-03 조회 3,236
JavaScript 16-08-03 조회 6,419