Mega Code Archive

 
Categories / Php / Strings
 

Counting the Occurrences of a Substring

<?php  $counter = substr_count ("Hello World!","o");  echo "There are " . $counter . " instance (s) of \"o\" in Hello World!.";  ?>