PHP 8.4.0 RC4 available for testing

strncasecmp

(PHP 4 >= 4.0.2, PHP 5, PHP 7, PHP 8)

strncasecmp Confronto sicuro con i testi binari, insensibile alle lettere maiuscole/minuscole sui primi n caratteri

Descrizione

strncasecmp(string $str1, string $str2, int $len): int

Questa funzione è simile a strcasecmp(), con la differenza che si può indicare il numero dei caratteri (len) per ciascuna stringa che possono essere utilizzati per il confronto.

Restituisce < 0 if str1 se è minore di str2; > 0 se str1 è maggiore di str2, e 0 se sono uguali.

Vedere anche ereg(), strcasecmp(), strcmp(), substr(), stristr() e strstr().

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top