我需要计算字符串中子字符串的出现次数。
我的代码,
$str1 = "when he arrives, he want to open the door.";
$find_str = "he";
这里字符串“he”出现4次。
我怎么能在php中找到它?..
答案 0 :(得分:4)
使用substr_count:
substr_count($str1, $find_str)
答案 1 :(得分:3)
使用substr_count php函数。
解决方案:
$str1 = "when he arrives, he want to open the door.";
$find_str = "he";
substr_count($str1, $find_str);
答案 2 :(得分:1)
echo substr_count($str1, $find_str);