当前位置:Gxlcms > PHP教程 > php 汉字字符串怎么转数组

php 汉字字符串怎么转数组

时间:2021-07-01 10:21:17 帮助过:17人阅读

php汉字字符串转数组的方法:首先创建一个PHP示例文件;然后定义一个汉字字符串;最后通过“mb_strlen($topictitle, 'utf-8');”等方法将汉字字符串转为数组即可。

本文操作环境:Windows7系统、PHP7.1版,DELL G3电脑

php 汉字字符串怎么转数组?

php 汉字字符串转为数组[]

代码:

$topictitle="沙漠骆驼";
$length = mb_strlen($topictitle, 'utf-8');
$titlearray = [];
for ($i=0; $i<$length; $i++)  
{
$titlearray[] = mb_substr($topictitle, $i, 1, 'utf-8');    
}
 
return $titlearray;

效果:

a593905aeee0f7558f6d087833bb094.png

推荐学习:《PHP视频教程》

以上就是php 汉字字符串怎么转数组的详细内容,更多请关注gxlcms其它相关文章!

人气教程排行