当前位置:首页 > PHP教程 > php应用 > 列表

php简单统计字符串单词数量的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-01 10:16:35 浏览: 评论:0 

这篇文章主要介绍了php简单统计字符串单词数量的方法,涉及php字符串分割与数组统计的相关技巧,需要的朋友可以参考下

本文实例讲述了php简单统计字符串单词数量的方法,分享给大家供大家参考,具体实现方法如下:

  1. <?php  
  2.   function word_count($sentence){  
  3.     $array = explode(" "$sentence);  
  4.     return count($array);  
  5.   }  
  6.   $words = word_count("The is a group of words");  
  7.   echo $words;  
  8. ?>

Tags: php统计字符串单词数量

分享到: