Count Number of Occurrences of a Substring in a Given String using PHP

substr_count function

<?php $text = '123 456 12 123'; $count = substr_count($text, '123'); echo $count; // 2

Leave a Comment

Cancel reply

Your email address will not be published.