I would like to know if there is a way to "disable" case sensitive in a particular comparison.
Example:
var_dump('SQL'=='SQL'); # bool(true)
var_dump('SQL'=='sQL'); # bool(false)
I know there are ways to resolve, one of them with strtoupper()
or strtolower()
, but would like to know specifically if you have to disable directly in a comparison.