wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



_rest_array_intersect_key_recursive › WordPress Function

Depuis5.3.0
Dépréciéen/a
_rest_array_intersect_key_recursive ( $array1, $array2 )
Paramètres: (2)
  • (array) $array1 The array with master keys to check.
    Requis: Oui
  • (array) $array2 An array to compare keys against.
    Requis: Oui
Retourne:
  • (array) An associative array containing all the entries of array1 which have keys that are present in all arguments.
Défini(e) dans:
Codex:

Recursively computes the intersection of arrays using keys for comparison.



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