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