Is it possible to do case-insensitive comparison when using the in_array function?
in_array
So with a source array like this:
$a= array( \'one\'
$a = array( 'one', 'two', 'three', 'four' );
$b = in_array( 'ONE', $a, false );