PHP strcasecmp函数用于二进制安全比较字符串(不区分大小写)。其语法是strcasecmp(string1,string2),参数string1必须,是指定要比较的第一个字符串,string2必须,是指定要比较的第二个字符串。
php strcasecmp函数怎么用?
作用:比较两个字符串(不区分大小写)
语法:
strcasecmp(string1,string2)
参数:
string1 必须,指定要比较的第一个字符串。
string2 必须,指定要比较的第二个字符串。
说明:strcasecmp() 函数是二进制安全的,且不区分大小写。
php strcasecmp()函数使用示例:
<?php echo strcasecmp("hello world","HELLO WORLD")."<br>"; echo strcasecmp("hello world","HELLO php")."<br>"; echo strcasecmp("hello world","HELLO php.cn"); ?>
输出:
0 7 7
本篇文章就是关于PHP strcasecmp函数的介绍,希望对需要的朋友有所帮助!
Atas ialah kandungan terperinci php strcasecmp函数怎么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!