Simple one, I was just wondering if there is a clean and eloquent way of returning all values from an associative array that do not match a given key(s)?
$array
array_diff_assoc could help. So i.e. you could use
$onlyBeta = array_diff_assoc($array, array('alpha', 'gamma'))