array_diff 배열값 제외 출력 > 개발자팁

개발자팁

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

array_diff 배열값 제외 출력 정보

PHP 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

)

추천
0

댓글 0개

전체 5,352
개발자팁 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1402호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT