PHP计算字符串中的字符

时间:2013-01-23 00:34:37

标签: php

  

可能重复:
  how to get the exact length of a string in php?

PHP中计算字符串中字符数的最佳方法是什么。我做了网络搜索,似乎找不到任何东西。

1 个答案:

答案 0 :(得分:13)

使用mb_strlen

$count = mb_strlen( $string );

你也可以使用strlen,但是你要求最好的方式;)