_rest_array_intersect_key_recursive

函数
_rest_array_intersect_key_recursive ( $array1, $array2 )
参数
  • (array) $array1 The array with master keys to check.
    Required:
  • (array) $array2 An array to compare keys against.
    Required:
返回值
  • (array) An associative array containing all the entries of array1 which have keys that are present in all arguments.
定义位置
相关方法
get_intermediate_image_sizesrest_parse_hex_color
引入
5.3.0
弃用
-

_rest_array_intersect_key_recursive: 这个函数用于递归交叉两个数组,并返回两个数组中存在的键。它被REST API使用,以确保只有有效的属性被包含在响应中。

递归计算数组的交叉点,使用键进行比较。

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;
}

常见问题

FAQs
查看更多 >