Answers for "count specific character array php"

PHP
3

php count specific characters in string

<?php
//you can use the substr_count function
$str = "this is a test string"; 

echo substr_count($str, "s");  //Output: 4
?>
Posted by: Guest on May-23-2021

Code answers related to "count specific character array php"

Browse Popular Code Answers by Language