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