substr_count

PHP -> Funkcie -> Funkcie pre prácu s reťazcami PHP -> substr_count

Syntax

int substr_count ( string haystrack, string needle )

Popis

Príkaz jazyka PHP vráti počet výskytov reťazca needle v reťazci haystack.

Príklad

print substr_count("This is a test", "is"); // vypíše 2