Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
все просто)if( strtolower($a) == strtolower($b) ){echo 'yes';}
function compare($str1,$str2,$caps=false) {
//Возвращает < 0, если str1 меньше str2; > 0, если str1 больше str2, и 0, если они равны.
if($caps):
if(!strcasecmp($str1,$str2)):
return true;
endif;
else:
if($str1===$str2):
return true;
endif;
endif;
return false;
}
что бы работала функция перевода в другой регистр нужно установить локаль
иначе работать будет не корренктно...
я же делаю это так
первая строка, вторая, далее учитывать регистр или нет...
PHP:function compare($str1,$str2,$caps=false) { //Возвращает < 0, если str1 меньше str2; > 0, если str1 больше str2, и 0, если они равны. if($caps): if(!strcasecmp($str1,$str2)): return true; endif; else: if($str1===$str2): return true; endif; endif; return false; }
define('LOCATE', "ru_RU.UTF-8");
setlocale(LC_ALL, LOCATE);