php实现的统计字数函数定义与使用示例

时间:2022-09-17 13:34:47

本文实例讲述了php实现的统计字数函数定义与使用方法。分享给大家供大家参考,具体如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
//函数定义:
function countWords($str){
  echo (mb_strlen($str, 'utf8') + strlen($str))/2;
}
//使用方法:
$strdemo1='欢迎访问服务器之家';
$strdemo2='http://www.zzvips.com';
$strdemo3='欢迎访问服务器之家http://www.zzvips.com';
countWords($strdemo1);
echo "<br/>";
countWords($strdemo2);
echo "<br/>";
countWords($strdemo3);
?>

运行结果:

?
1
2
3
16
19
35

PS:这里再为大家推荐2款非常方便的统计工具供大家参考使用:

在线字数统计工具:https://tool.zzvips.com/t/textcount/

在线字符统计与编辑工具:https://tool.zzvips.com/t/paiban/

希望本文所述对大家PHP程序设计有所帮助。