strcasecmp
PHP -> Funkcie -> Funkcie pre prácu s reťazcami PHP -> strcasecmp
Syntax
int strcasecmp ( string $str1, string $str2 )
Popis
Príkaz jazyka PHP
Binárně bezpečné case-insensitive porovnání řetězců
Pokud je str1 méně než str2 vrací < 0; pokud je str1 větší než str2 vrací > 0, a 0, pokud jsou stejné.
Príklad
$var1 = "Hello";
$var2 = "hello";
if (!strcasecmp ($var1, $var2)) {
echo 'v case-insensitive textovém porovnání se $var1 rovná $var2';
}
$var2 = "hello";
if (!strcasecmp ($var1, $var2)) {
echo 'v case-insensitive textovém porovnání se $var1 rovná $var2';
}
Pozri aj
ereg, strcmp, substr, stristr, strncasecmp, strstr