你可以使用PHP的内置函数substr_count()
来查找一个字符在字符串中出现的次数。以下是一个示例程序:
<?php
$str = "Hello, World!";
$char = "o";
$count = substr_count($str, $char);
echo "Character '$char' appears $count times in the string '$str'";
?>
输出结果将是:
Character 'o' appears 2 times in the string 'Hello, World!'
在上面的示例中,我们使用了substr_count()
函数来计算字符串$str
中字符$char
出现的次数,并将结果存储在变量$count
中。最后,我们使用echo
语句将结果输出到屏幕上。
上一篇:PHP – iconv_strpos() 函数 – 在字符串中查找第一个出现的子串的位置
下一篇:PHP和Xvfb的使用方法
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站