PHP strcmp() 函數(shù)
PHP strcmp() 函數(shù)
實(shí)例
比較兩個(gè)字符串(區(qū)分大小寫):
<?php
echo strcmp("Hello world!","Hello world!");
?>
echo strcmp("Hello world!","Hello world!");
?>
運(yùn)行實(shí)例 ?
定義和用法
strcmp() 函數(shù)比較兩個(gè)字符串。
注釋:strcmp() 函數(shù)是二進(jìn)制安全的,且區(qū)分大小寫。
提示:該函數(shù)與 strncmp() 函數(shù)類似,不同的是,通過(guò) strncmp() 您可以指定每個(gè)字符串用于比較的字符數(shù)。
語(yǔ)法
strcmp(string1,string2)
參數(shù) | 描述 |
---|---|
string1 | 必需。規(guī)定要比較的第一個(gè)字符串。 |
string2 | 必需。規(guī)定要比較的第二個(gè)字符串。 |
技術(shù)細(xì)節(jié)
返回值: | 該函數(shù)返回:
|
---|---|
PHP 版本: | 4+ |
更多實(shí)例
實(shí)例 1
比較兩個(gè)字符串(區(qū)分大小寫,Hello 和 hELLo 輸出不相同):
<?php
echo strcmp("Hello","Hello");
echo "<br>";
echo strcmp("Hello","hELLo");
?>
echo strcmp("Hello","Hello");
echo "<br>";
echo strcmp("Hello","hELLo");
?>
運(yùn)行實(shí)例 ?
實(shí)例 2
不同的返回值:
<?php
echo strcmp("Hello world!","Hello world!"); // the two strings are equal
echo strcmp("Hello world!","Hello"); // string1 is greater than string2
echo strcmp("Hello world!","Hello world! Hello!"); // string1 is less than string2
?>
echo strcmp("Hello world!","Hello world!"); // the two strings are equal
echo strcmp("Hello world!","Hello"); // string1 is greater than string2
echo strcmp("Hello world!","Hello world! Hello!"); // string1 is less than string2
?>
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 變量
- PHP EOF(heredoc) 使用說(shuō)明
- PHP 數(shù)據(jù)類型
- PHP 魔術(shù)常量
- PHP array() 函數(shù)
- PHP array_diff() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP asort() 函數(shù)
- PHP list() 函數(shù)
- PHP rsort() 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP Filter 函數(shù)