gpt4 book ai didi

php - PHP 中的 Unicode (UTF8) 字符串字数统计

转载 作者:行者123 更新时间:2023-12-05 01:48:07 26 4
gpt4 key购买 nike

我需要计算以下 unicode 字符串的字数。使用 str_word_count:

$input = 'Hello, chào buổi sáng'; 
$count = str_word_count($input);
echo $count;

结果是

7

这显然是错误的。

如何得到想要的结果(4)?

最佳答案

$tags = 'Hello, chào buổi sáng'; 
$word = explode(' ', $tags);
echo count($word);

这是一个演示:http://codepad.org/667Cr1pQ

关于php - PHP 中的 Unicode (UTF8) 字符串字数统计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18305912/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com