substr_count

(PHP 4, PHP 5)

substr_count --  Ermittelt, wie oft eine Zeichenkette in einem String vorkommt

Beschreibung:

int substr_count ( string haystack, string needle )

Die Funktion substr_count() ermittelt, wie oft needle in dem String haystack vorkommt, und gibt die Anzahl der Vorkommen zurück.

Beispiel 1. substr_count()-Beispiel:

<?php
print substr_count("Dieser Test ist Mist", "ist"); // ergibt 2
?>

Siehe auch count_chars(), strpos(), substr() und strstr().

Hosting by: Hurra Communications GmbH
Generated: 2007-01-26 17:57:08