Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何在 PHP 中获取字符串的确切长度?
PHP中计算字符串中有多少个字符的最佳方法是什么?
我进行了网络搜索,似乎找不到任何东西。
使用mb_strlen:
mb_strlen
$count = mb_strlen( $string );
你也可以使用strlen,但你要求最好的方法;)
strlen