>  기사  >  백엔드 개발  >  PHP 하위 문자열_카운트()

PHP 하위 문자열_카운트()

王林
王林원래의
2024-08-29 12:51:091147검색

PHP 프로그래밍 언어의 substr_count() 함수도 중요한 내장 함수 중 하나이며 구체적으로 주어진 문자열에 몇 개의 하위 문자열이 있는지 계산하는 데 매우 유용합니다. 이 함수는 주어진 인덱스 범위 내에 있는 일부 특정 하위 문자열에 대한 검색 옵션을 제공합니다. substr_count()는 대소문자를 구분합니다. 즉, "abc" 하위 문자열 값이 문자열 "acbcab"에 존재하지 않음을 의미합니다. 검색에 지정된 (시작+길이) 값이 전달된 문자열의 크기를 초과하는 경우 경고 메시지/메시지를 사용자에게 반환합니다.

무료 소프트웨어 개발 과정 시작

웹 개발, 프로그래밍 언어, 소프트웨어 테스팅 등

PHP의 substr_count() 함수 구문

다음은 구문입니다.

Substr_count($string1, $substring1, $start1, $length1)

substr_count() 함수의 매개변수

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 값으로 인해 문자열 길이가 늘어나면 경고 메시지를 제공/생성합니다. 이 매개변수는 필수 매개변수가 아닙니다. 선택적 매개변수입니다.

PHP에서 substr_count() 함수는 어떻게 작동하나요?

substr_count() 함수는 다양한 유형의 경우 아래에 표시된 다양한 유형의 값을 반환하여 작동합니다.

  • 주어진 하위 문자열은 문자열에 전혀 전달되지 않은 일부 선택적 매개변수가 있는 경우에만 여러 번 발생/나타납니다.
  • 문자열 값이 매개변수로 전달되면 문자열의 시작점부터 문자열의 끝점까지 문자열에 하위 문자열이 여러 번 나타납니다.
  • 하위 문자열은 길이와 시작 매개변수가 모두 전달될 때 문자열의 시작 부분과 문자열 위치의 시작+길이 사이에 있는 문자열 내부/문자열에 나타납니다.
  • substr_count() 함수는 기본적으로 특정 하위 문자열 또는 특정 큰 문자열/기타 내부의 하위 문자열의 발생/발생을 계산하여 작동합니다. substr_count()는 일부 인덱스 범위에서 특정 하위 문자열을 검색하는 옵션을 제공합니다.

PHP substr_count() 구현 예

아래는 substr_count() 함수의 예입니다.

예시 #1

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>";
?>

출력:

PHP 하위 문자열_카운트()

예시 #2

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>";
?>

출력:

PHP 하위 문자열_카운트()

예시 #3

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>";
?>

출력:

PHP 하위 문자열_카운트()

Example #4

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:

PHP 하위 문자열_카운트()

Conclusion

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.

Recommended Article

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-

  1. PHP ob_start()
  2. Abstract Class in PHP
  3. PHP chop()

위 내용은 PHP 하위 문자열_카운트()의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:PHP setlocale()다음 기사:PHP setlocale()