主页 > 编程资料 > PHP >
发布时间:2017-08-07 作者:apizl 阅读:155次
/**
* 字符串转数组
* @param type $str
* @return type
*/
public static function ch2arr($str) {
$length = mb_strlen($str, 'utf-8');
$array = [];
for ($i = 0; $i < $length; $i++)
$array[] = mb_substr($str, $i, 1, 'utf-8');
return $array;
}

文章地址:http://www.cnblogs.com/yamtsin/p/5961148.html

clipboard.png

文章由爱资料原创本文地址:https://www.apizl.com/archives/view-133872-1.html,转载请以链接形式标明本文地址!
关键字词: