Home  >  Article  >  Backend Development  >  Write a program in PHP to find the number of times a character appears in a string

Write a program in PHP to find the number of times a character appears in a string

WBOY
WBOYforward
2023-08-20 18:37:06746browse

Write a program in PHP to find the number of times a character appears in a string

Example

Demonstration

<?php
   $str = "welcome to tutorials point";
   $str = str_replace(" ","",$str);
   $arr = str_split($str);
   foreach ($arr as $key =>$val){
      if (!isset($output[$val])){
            $output[$val] = 1;
      }
      else{
         $output[$val] += 1;
      }
   }
   foreach($output as $char =>$number){
      echo $char." ".&#39;appears &#39;. $number." ".&#39;times&#39;."</p><p>";
   }
?>

Output

w appears 1 times
e appears 2 times
l appears 2 times
c appears 1 times
o appears 4 times
m appears 1 times
t appears 4 times
u appears 1 times
r appears 1 times
i appears 2 times
a appears 1 times
s appears 1 times
p appears 1 times
n appears 1 times

The above is the detailed content of Write a program in PHP to find the number of times a character appears in a string. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete
Previous article:How to use PHP and XvfbNext article:How to use PHP and Xvfb