Skip to content

Instantly share code, notes, and snippets.

@dellow
Last active August 29, 2015 14:18
Show Gist options
  • Save dellow/a76046da126273f099fc to your computer and use it in GitHub Desktop.
Save dellow/a76046da126273f099fc to your computer and use it in GitHub Desktop.
Case insensitive in_array().
/**
* in_arrayi
* Case insensitive in_array().
*
* @since 1.0.0
* @version 1.0.0
**/
function in_arrayi($needle, $haystack){
return in_array(strtolower($needle), array_map('strtolower', $haystack));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment