您好,登錄后才能下訂單哦!
int strcmp ( string $str1 , string $str2 )
以二進(jìn)制方式進(jìn)行比較
以該函數(shù)比較時(shí)區(qū)分大小寫
返回值,如果str1小于str2返回<0,如果str1大于str2返回>0如果兩者相等返回0。
<?php $str1 = "hello world"; //$str1與$str3的值相等 $str2 = "HELLO WORLD"; $str3 = "hello world"; //$str1與$str3的值相等 echo strcmp($str1,$str2); //輸出1 echo strcmp($str2,$str1); //輸出-1 echo strcmp($str1,$str3); //輸出0 ?>
還有個(gè)函數(shù)strcasecmp(),用法與strcmp()類似,只是不區(qū)分大小寫而已,這里不再啰嗦了
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。