Voting

: three plus five?
(Example: nine)

The Note You're Voting On

taylorbarstow at the google mail service
19 years ago
Array slice function that works with associative arrays (keys):

function array_slice_assoc($array,$keys) {
return array_intersect_key($array,array_flip($keys));
}

<< Back to user notes page

To Top