substr_count() returns the number of times the needle substring occurs in the haystack string.
<?php
print substr_count("This is a test", "is"); // prints out 2
?>See also count_chars(), strpos(), substr(), and strstr().
| This HTML Help has been published using the chm2web software. |