演示
<?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." ".'appears '. $number." ".'times'."</p><p>"; } ?>
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
以上就是在PHP中编写一个程序,用于查找一个字符在字符串中出现的次数的详细内容,更多请关注php中文网其它相关文章!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号