이 글에서는 주로 PHP에서 사용되는 문자열 비교 함수를 소개합니다. 예제에서는 substr_compare, strncasecmp, strncmp, strcoll 및 기타 일반적인 함수를 요약합니다. it
substr_compare() 함수는 지정된 시작 길이 의 두 문자열을 비교하고 다음을 반환합니다.
0 - 두 문자열이 동일한 경우 <0 - 문자열1(시작 위치에서)이 string2보다 작은 경우, >0 - 문자열1(시작 위치부터)이 문자열2보다 큰 경우
구문: substr_compare(string1,string2,startpos,length,case), 코드는 다음과 같습니다.
$str1="hello world"; //定义字符串1 $str2="hello world"; //定义字符串2 $result=substr_compare($str1,$str2,1,10); //执行比较操作 echo $result; //输出结果,1
strnatcasecmp() 함수는 "자연" 알고리즘을 사용하여 두 문자열을 비교합니다 , 자연 알고리즘에서 숫자 "2"는 숫자 "10"보다 작습니다. 컴퓨터 정렬에서는 "2"가 "10"보다 큽니다. "2"는 "10"의 첫 번째 숫자보다 큽니다. 코드는 다음과 같습니다.
$str1="hello world"; //定义字符串1 $str2="hello world"; //定义字符串2 $result=strnatcasecmp($str1,$str2); //执行比较操作 echo $result; //输出结果,0
strncasecmp() 함수는 두 문자열을 비교하고 함수는 다음을 반환합니다.
0 - 두 문자열이 같으면 <0 - 문자열1이 문자열2보다 작은 경우, >0 - 문자열1이 문자열2보다 큰 경우.
구문: strncasecmp(string1,string2,length), 코드는 다음과 같습니다.
$str1="hello world"; //定义字符串1 $str2="hello world"; //定义字符串2 $result=strncasemp($str1,$str2,7); //执行比较操作 echo $result; //输出结果,0
strncmp() 함수는 두 문자열을 비교합니다. , 함수는 다음을 반환합니다.
0 - 두 문자열이 동일한 경우 <0 - 문자열1이 문자열2보다 작은 경우>0 - 문자열1이 문자열2보다 큰 경우
구문: strncmp(string1,string2,length) ), 코드는 다음과 같습니다.
$str1="hello world"; //定义字符串1 $str2="hello world"; //定义字符串2 $result=strncmp($str1,$str2,7); //执行比较操作 echo $result; //输出结果,1
strcoll() 함수는 두 문자열을 비교하고 함수는 다음을 반환합니다.
0 - 두 문자열이 같으면 <0 - string1이 string2보다 작으면 > 0 - 문자열1이 문자열2보다 큰 경우
문자열 비교는 aa에 따라 변경됩니다.
구문: strcoll(string1,string2), 코드는 다음과 같습니다.
$str1="hello world"; //定义字符串1 $str2="hello world"; //定义字符串2 $result=strcoll($str1,$str2); //执行比较操作 echo $result; //输出结果,1
위 내용은 일반적으로 사용되는 여러 PHP 문자열 비교 함수 사용법 요약의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!