如何计算php文本语句中的空间

2021-12-30 00:00:00 text count spaces php

我们如何计算 php 中文本之间的空间?

how can we count space between text in php ?

example: hi how are you?

spaces: 3

有没有办法计算空格?

语言:只有 PHP

推荐答案

使用这个:

substr_count($text, ' ');

相关文章