PHP 프로그래밍 언어의 substr_count() 함수도 중요한 내장 함수 중 하나이며 구체적으로 주어진 문자열에 몇 개의 하위 문자열이 있는지 계산하는 데 매우 유용합니다. 이 함수는 주어진 인덱스 범위 내에 있는 일부 특정 하위 문자열에 대한 검색 옵션을 제공합니다. substr_count()는 대소문자를 구분합니다. 즉, "abc" 하위 문자열 값이 문자열 "acbcab"에 존재하지 않음을 의미합니다. 검색에 지정된 (시작+길이) 값이 전달된 문자열의 크기를 초과하는 경우 경고 메시지/메시지를 사용자에게 반환합니다.
무료 소프트웨어 개발 과정 시작
웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등
다음은 구문입니다.
Substr_count($string1, $substring1, $start1, $length1)
substr_count() 함수의 매개변수 설명:
1. $string1: PHP 프로그래밍 언어의 substr_count()의 string1 매개변수는 실제로 하위 문자열의 발생/발생이 계산되는 매개변수를 전달하는 데 도움이 됩니다. 이 string1 매개변수는 substr_count() 함수의 필수 매개변수 중 하나입니다. substr_count()를 작동시키려면 필요합니다.
2. $substring1: PHP 프로그래밍 언어의 substr_count()의 substring1 매개변수는 문자열 검색 및 발생이 계산되어 반환될 하위 문자열을 전달하는 데 도움이 됩니다. 이 하위 문자열1 매개변수는 필수 매개변수이므로 제공해야 합니다.
3. $start1: PHP 프로그래밍 언어의 substr_count()의 start1 매개변수는 일부 값이 이 매개변수에 전달되는 데 도움이 되지만 PHP substr_count() 함수의 필수 매개변수는 아닙니다. 선택적 매개변수입니다. 매개변수에 값이 전달되면 검색이 완료되고 전체 문자열 검색 대신 시작 위치부터 시작하여 하위 문자열의 다른 발생을 검색합니다.
4. $length1: PHP 프로그래밍 언어의 substr_count()의 length1 매개변수는 실제로 시작부터 시작+길이 위치까지 시작하는 검색 작업을 제한하는 데 도움이 됩니다. start+length 값으로 인해 문자열 길이가 늘어나면 경고 메시지를 제공/생성합니다. 이 매개변수는 필수 매개변수가 아닙니다. 선택적 매개변수입니다.
substr_count() 함수는 다양한 유형의 경우 아래에 표시된 다양한 유형의 값을 반환하여 작동합니다.
아래는 substr_count() 함수의 예입니다.
2개의 필수 매개변수를 사용하여 substr_count()를 구현한 예입니다. 그것들은 원래 문자열과 부분 문자열입니다. substr_count() 내부의 원본 소스 문자열 내에서 하위 문자열을 검색하여 해당 하위 문자열이 몇 번이나 발생했는지 확인합니다.
코드:
<?php $str1 = "pavan sake pavan"; echo "<hr>"; echo "The Original Source String is :: $str1"; echo "<br>"; $substring1 = "pavan"; echo "The Sub String which is to be searched in the original source string :: $substring1"; echo "<br>"; echo "The number of occurrences of the substring ($substring1) is :: "; echo substr_count($str1, $substring1); echo "<hr>"; ?>
출력:
start 매개변수가 전달되었을 때 substr_count() 함수를 구현한 예입니다.
코드:
<?php echo "This is the example of implementing start1 variable/parameter inside of substring_count() function"; echo "<br>"; $str1 = "pavankumar sake pavan"; echo "<hr>"; echo "The Original Source String is :: $str1"; echo "<br>"; $substring1 = "pavan"; echo "The Sub String which is to be searched in the original source string :: $substring1"; echo "<br>"; echo "The number of occurrences of the substring ($substring1) after the string length 6 is :: "; echo substr_count($str1, $substring1, 6); echo "<hr>"; ?>
출력:
start1과 length1 매개변수가 모두 전달된 경우 substr_count()를 구현하는 예입니다. 이렇게 하면 검색이 2번 우회됩니다.
코드:
<?php echo "This is the example of implementing length1 and start1 variables/parametersinside of substring_count() function :: "; echo "<br>"; $str1 = "pavankumar sake pavan sake sakesakesakesake"; echo "<hr>"; echo "The Original Source String of str1 variable is :: $str1"; echo "<br>"; $substring1 = "pavan"; echo "The Sub String substring1 variable which is to be searched in the original source string :: $substring1"; echo "<br>"; echo "The number of occurrences of the substring1 ($substring1) after the start value 6 and length value 2 is :: "; echo substr_count($str1, $substring1, 6, 2); echo "<hr>"; ?>
출력:
This is the example of implementing the substr_count() function when the string length exceeds the start1+length1 parameters value. This will produce a warning type of message. Check out the output so that you will understand the substr_count() function.
Code:
<?php echo "This is the example of implementing length1 and start1 variables/parameters inside of substring_count() function for warning message if length exceeds the string length :: "; echo "<br>"; $str1 = "pavankumar sake pavan sake sakesakesakesake"; echo "<hr>"; echo "The Original Source String of str1 variable is :: $str1"; echo "<br>"; $substring1 = "pavan"; echo "The Sub String substring1 variable which is to be searched in the original source string :: $substring1"; echo "<br>"; echo "<hr>"; echo "The number of occurrences of the substring1 ($substring1) after the start value 6 and length value 2 is :: "; echo "<hr>"; echo substr_count($str1, $substring1, 6, 121); echo "<hr>"; ?>
Output:
I hope you learned what is the definition of the PHP substr_count() function along with substr_count()’s syntax and parameter, how the PHP substr_count() function works in the PHP Programming language along with various examples to understand the substr_count() concept better and so easily.
This is a guide to the PHP substr_count(). Here we discuss the Introduction and its parameters of PHP substr_count() Function along with examples and Code Implementation. You can also go through our other suggested articles to learn more-
위 내용은 PHP 하위 문자열_카운트()의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!