wpseek.com
				A WordPress-centric search engine for devs and theme authors
			_rest_array_intersect_key_recursive › WordPress Function
Since5.3.0
Deprecatedn/a
› _rest_array_intersect_key_recursive ( $array1, $array2 )
| Parameters: (2) | 
 | 
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | 
Recursively computes the intersection of arrays using keys for comparison.
Related Functions: get_intermediate_image_sizes, rest_parse_hex_color
	Source
function _rest_array_intersect_key_recursive( $array1, $array2 ) {
	$array1 = array_intersect_key( $array1, $array2 );
	foreach ( $array1 as $key => $value ) {
		if ( is_array( $value ) && is_array( $array2[ $key ] ) ) {
			$array1[ $key ] = _rest_array_intersect_key_recursive( $value, $array2[ $key ] );
		}
	}
	return $array1;
}