wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_array_slice_assoc › WordPress Function

Seit3.1.0
Veraltetn/v
wp_array_slice_assoc ( $input_array, $keys )
Parameter: (2)
  • (array) $input_array The original array.
    Erforderlich: Ja
  • (array) $keys The list of keys.
    Erforderlich: Ja
Gibt zurück:
  • (array) The array slice.
Definiert in:
Codex:

Extracts a slice of an array, given a list of keys.



Quellcode

function wp_array_slice_assoc( $input_array, $keys ) {
	$slice = array();

	foreach ( $keys as $key ) {
		if ( isset( $input_array[ $key ] ) ) {
			$slice[ $key ] = $input_array[ $key ];
		}
	}

	return $slice;
}