Answers for "php count how many times a character appears in a string"

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
3

how to count string characters in php

<?php
$str1 = 'Hello world!';
echo strlen($str1); // Outputs: 12
Posted by: Guest on June-27-2021
0

counting a string in php

strlen('your strings here!');
Posted by: Guest on May-10-2021
0

total no of occurances in string php

$str = "cdcdcdcdeeeef";
echo substr_count($str, 'c'); 


//please note needle is case sensitive
Posted by: Guest on June-17-2021

Code answers related to "php count how many times a character appears in a string"

Browse Popular Code Answers by Language