易百教程

PHP字符串单词字数

在PHP中,str_word_count()函数用于返回字符串中的单词数。

例如:

<?php

echo str_word_count( "Hello, world!" ); // 显示 2
?>

执行上面示例代码,得到以下结果:

2