文章出處
文章列表
1 strcmp — 二進制安全字符串比較
int strcmp ( string $str1 , string $str2 )
注意該比較區分大小寫。
2 strcasecmp — 二進制安全比較字符串(不區分大小寫)
int strcasecmp ( string $str1 , string $str2 )
3 substr_compare — 二進制安全比較字符串(從偏移位置比較指定長度)
int substr_compare ( string $main_str , string $str , int $offset [, int $length [, bool $case_insensitivity = false ]] )
substr_compare() 從偏移位置 offset
開始比較 main_str
與 str
,比較長度為 length
個字符。
<?php echo substr_compare ( "abcde" , "bc" , 1 , 2 ); // 0 echo substr_compare ( "abcde" , "de" , - 2 , 2 ); // 0 echo substr_compare ( "abcde" , "bcg" , 1 , 2 ); // 0 echo substr_compare ( "abcde" , "BC" , 1 , 2 , true ); // 0 echo substr_compare ( "abcde" , "bc" , 1 , 3 ); // 1 echo substr_compare ( "abcde" , "cd" , 1 , 2 ); // -1 echo substr_compare ( "abcde" , "abc" , 5 , 1 ); // warning ?>
文章列表
全站熱搜
留言列表