★ wanayoo — archive 1999 http://www.php.net/manual/fr/function.strcasecmp.phpNouvelle recherche | Portail wanayoo

PHP Home Page

Manual Table of Contents
Up to Chaînes
Quick Reference
English version of this pageGerman version of this pageJapanese version of this pageItalian version of this pageHungarian version of this page
Chaînes
* AddCSlashes
* AddSlashes
* bin2hex
* Chop
* Chr
* chunk_split
* convert_cyr_string
* count_chars
* crypt
* echo
* explode
* flush
* get_html_translation_table
* get_meta_tags
* htmlentities
* htmlspecialchars
* implode
* join
* ltrim
* md5
* Metaphone
* nl2br
* Ord
* parse_str
* print
* printf
* quoted_printable_decode
* QuoteMeta
* rawurldecode
* rawurlencode
* setlocale
* similar_text
* soundex
* sprintf
* strcasecmp
* strchr
* strcmp
* strcspn
* strip_tags
* StripCSlashes
* StripSlashes
* stristr
* strlen
* strpos
* strrchr
* str_repeat
* strrev
* strrpos
* strspn
* strstr
* strtok
* strtolower
* strtoupper
* str_replace
* strtr
* substr
* substr_replace
* trim
* ucfirst
* ucwords
Manual: strcasecmp
View the source code for this pageSearch the site



Previous page
 sprintf
 Updated
Sun, 06 Aug 2000
strchr 
Next page


strcasecmp

(PHP3 >= 3.0.2, PHP4 )

strcasecmp --  Comparaison binaire de chaînes, insensible à la casse.

Description

int strcasecmp (string str1, string str2)

Retourne < 0 si str1 est plus petit que str2; > 0 si str1 est plus grand que str2, et 0 si ils sont égaux.

Exemple 1. Exemple avec strcasecmp()


$var1 = "Bonjour";
$var2 = "bonjour";
if ( !strcasecmp($var1,$var2) ) {
    echo '$var1 est égal à $var2, à la casse près.';
}
      

Voir aussi ereg(), strcmp(), substr(), stristr(), et strstr().


User Contributed Notes: strcasecmp


cleong@organic.com
11-May-2000 08:50
Note that the behavior of strcasecmp() if different from that of strcmp().

<pre>
strcmp("Z", "AAA") = 1
strcmp("Z", "A") = 1
strcasecmp("Z", "AAA") = -2
strcasecmp("Z", "A") = 25
</pre>



 About Notes


Previous page
 sprintf
 Updated
Sun, 06 Aug 2000
strchr 
Next page





Who's responsible for this?
Top of this page

Site
Hosting:



Located in
United States
Elements of this website are subject to copyright.
Questions about installing or using PHP should be directed to one of the mailing lists.
Only questions about the website should be directed to webmaster@php.net.