update : 2015.11.03
php.shukuma.com검색:
|
array_uintersect(PHP 5, PHP 7) array_uintersect — Computes the intersection of arrays, compares data by a callback function 설명
array array_uintersect
( array
$array1
, array $array2
[, array $...
], callable $value_compare_func
)Computes the intersection of arrays, compares data by a callback function. 인수
반환값
Returns an array containing all the values of 예제
Example #1 array_uintersect() example
<?php 위 예제의 출력: Array ( [a] => green [b] => brown [0] => red ) 참고
|