update : 2015.11.03
php.shukuma.com검색:
|
array_uintersect_assoc(PHP 5, PHP 7) array_uintersect_assoc — Computes the intersection of arrays with additional index check, compares data by a callback function 설명
array array_uintersect_assoc
( array
$array1
, array $array2
[, array $...
], callable $value_compare_func
)Computes the intersection of arrays with additional index check, compares data by a callback function. Note that the keys are used in the comparison unlike in array_uintersect(). The data is compared by using a callback function. 인수
반환값
Returns an array containing all the values of
예제
Example #1 array_uintersect_assoc() example
<?php 위 예제의 출력: Array ( [a] => green ) 참고
|