I'm having trouble matching â character in the string.
For example
if (preg_match("/C[â]mera/i", "Câmera Canon ")) // returns false
but
if (preg_match("/C[a]mera/i", "Camera Canon ")) // returns true
Any idea? why it's working with a but not with â?
Thanks