计算子字符串在 PHP 中的字符串中出现的次数
主题:PHP / MySQL
答案:使用 PHP substr_count()
函数
您可以使用 PHP substr_count()
函数来找出给定子字符串在字符串中出现或重复的次数。 让我们尝试一个例子来看看它是如何工作的:
示例
<?php
$quote = "Try not to become a man of success, but rather try to become a man of value.";
echo substr_count($quote, 'man'); /* Outputs: 2 */
?>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: