Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save radheymkumar/c7043dc9e993bf55ed9261431f348a00 to your computer and use it in GitHub Desktop.
Save radheymkumar/c7043dc9e993bf55ed9261431f348a00 to your computer and use it in GitHub Desktop.
get even and odd value in array
print_r(array_filter($numbers, 'isPositive'));
function isPositive($val) {
//return ($val > 50) ? true : false;
if($val%2 == 1) {
return $val;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment