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!