substr_count
Opis
int substr_count ( string haystack, string needle [, int offset [, int length]] )
substr_count() returns the number of times the
needle substring occurs in the
haystack string. Please note that
needle is case sensitive.
Notatka: This function doesn't count overlapped substrings. See the example below!
Parametry
haystackThe string to search in
needleThe substring to search for
offsetThe offset where to start counting
lengthThe maximum length after the specified offset to search for the substring. It outputs a warning if the offset plus the length is greater than the
haystacklength.
Przykłady
| Poprzedni | Spis treści | Następny |
| substr_compare | Początek rozdziału |