I would like to compare two variables to see if they are the same, but I want this comparison to be case-insensitive.
For example, this would be case sensitive:
Why not:
if(strtolower($var1) == strtolower($var2)){ }