array_diff 배열값 제외 출력

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

)

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

개발자팁

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

+
분류 제목 글쓴이 날짜 조회
PHP 9년 전 조회 5,697
PHP 9년 전 조회 3,051
PHP 9년 전 조회 3,648
PHP 9년 전 조회 3,463
PHP 9년 전 조회 5,541
PHP 9년 전 조회 3,035
PHP 9년 전 조회 4,496
PHP 9년 전 조회 3,441
PHP 9년 전 조회 3,564
웹서버 9년 전 조회 5,568
node.js 9년 전 조회 3,086
웹서버 9년 전 조회 3,756
웹서버 9년 전 조회 3,596
PHP 9년 전 조회 2,986
PHP 9년 전 조회 3,286
PHP 9년 전 조회 2,971
PHP 9년 전 조회 2,952
PHP 9년 전 조회 4,208
PHP 9년 전 조회 3,122
PHP 9년 전 조회 3,029
jQuery 9년 전 조회 4,129
PHP 9년 전 조회 2,721
PHP 9년 전 조회 3,988
웹서버 9년 전 조회 3,084
JavaScript 9년 전 조회 3,618
기타 9년 전 조회 4,269
PHP 9년 전 조회 3,801
기타 9년 전 조회 4,816
JavaScript 9년 전 조회 3,093
웹서버 9년 전 조회 2,976
🐛 버그신고