How to iterate UTF-8 string in PHP?(如何在 PHP 中迭代 UTF-8 字符串?)
本文介绍了如何在 PHP 中迭代 UTF-8 字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用索引逐字符迭代 UTF-8 字符串?
How to iterate a UTF-8 string character by character using indexing?
当您使用括号运算符 $str[0]
访问 UTF-8 字符串时,utf 编码字符由 2 个或更多元素组成.
When you access a UTF-8 string with the bracket operator $str[0]
the utf-encoded character consists of 2 or more elements.
例如:
$str = "Kąt";
$str[0] = "K";
$str[1] = "�";
$str[2] = "�";
$str[3] = "t";
但我想要:
$str[0] = "K";
$str[1] = "ą";
$str[2] = "t";
使用 mb_substr
是可能的,但这非常慢,即.
It is possible with mb_substr
but this is extremely slow, ie.
mb_substr($str, 0, 1) = "K"
mb_substr($str, 1, 1) = "ą"
mb_substr($str, 2, 1) = "t"
是否有另一种方法可以不使用 mb_substr
来逐个字符地插入字符串?
Is there another way to interate the string character by character without using mb_substr
?
推荐答案
使用 preg_split.使用 "u" 修饰符,它支持 UTF-8 unicode.
Use preg_split. With "u" modifier it supports UTF-8 unicode.
$chrArray = preg_split('//u', $str, -1, PREG_SPLIT_NO_EMPTY);
这篇关于如何在 PHP 中迭代 UTF-8 字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何在 PHP 中迭代 UTF-8 字符串?
猜你喜欢
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01