Count the number of occurrences of a substring using the PHP substr_count() function

WBOY
Release: 2023-06-27 16:52:01
Original
1460 people have browsed it

In PHP development, counting the number of times a certain substring appears in a string is a very common requirement. For example, we may need to count the number of times a certain keyword appears in an article, or count the number of times a certain symbol appears in user input. At this time, we can use PHP's built-in substr_count() function to achieve this.

The substr_count() function is used to count the number of times another substring appears in a string. The basic syntax is as follows:

int substr_count ( string $haystack , string $needle [, int $offset = 0 [, int $length ]] )
Copy after login

Among them, $haystack is the string to be searched, $needle is the substring to be searched, $offset is the offset, and $length is the length to be searched. If you need to count the number of occurrences of a substring in the entire string, you can omit the $offset and $length parameters.

The following is an example to illustrate how to use the substr_count() function to calculate the number of occurrences of a substring:

Copy after login

Run the above code, the output result is as follows:

The string 'Hello' appears 2 times in the string 'Hello World! Hello PHP!'
Copy after login

In In this example, we first define a string $str, and then use the substr_count() function to count the number of times the substring "Hello" appears in the string. Finally, use the echo statement to output the results.

In addition to counting the number of occurrences of a substring in the entire string, we can also count the number of times a substring appears in a certain paragraph of the string by specifying $offset and $length. For example:

Copy after login

Run the above code, the output result is as follows:

The string 'is' appears 1 times in the string 'This is a long string.'
Copy after login

In this example, we use the substr_count() function to calculate the 10-character length starting from the fourth character. The number of occurrences of "is" in the substring.

It should be noted that the substr_count() function counts the number of non-overlapping substrings. For example, in the string "abababa", the number of occurrences of the substring "aba" is 2, not 3.

To sum up, the substr_count() function is a very useful function in PHP to count the number of occurrences of a substring in a string. This function can be used whether doing page analysis or character processing.

The above is the detailed content of Count the number of occurrences of a substring using the PHP substr_count() function. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!