wp_array_slice_assoc

Definition:
function wp_array_slice_assoc( $array, $keys ) {}

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

Parameters

  • array $array: The original array
  • array $keys: The list of keys

Return values

returns:The array slice

Source code

function wp_array_slice_assoc( $array, $keys ) {

	$slice = array();

	foreach ( $keys as $key )

		if ( isset( $array[ $key ] ) )

			$slice[ $key ] = $array[ $key ];



	return $slice;

}

10601

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: