| 
        
            array_intersect_uassocComputes the intersection of arrays with additional index check, compares indexes by a callback function Description
   array array_intersect_uassoc
    ( array  
  $array1
   , array $array2
   [, array $...
   ], callable $key_compare_func
   )
   array_intersect_uassoc returns an array
   containing all the values of  Parameters
 
 Return Values
   Returns the values of  Examples
 Example #1 array_intersect_uassoc example 
<?phpThe above example will output: 
Array
(
    [b] => brown
)
See Also
 
  |