怎么将中文字符串分割成单个字符

WBOY
풀어 주다: 2016-06-13 13:29:27
원래의
1126명이 탐색했습니다.

【求助】 如何将中文字符串分割成单个字符

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
 $county="大中华区";
 
 echo "<font color="red">".$ci=iconv_strlen($county,"UTF-8")."</font>";
         for($j=0;$j
로그인 후 복사


------解决方案--------------------
PHP code

<?php /****************************
 * subCNchar() 截取汉字 *
 * [$str]     [要截取的字符串]
 * [$start]   [截取的起始位置]
 * [$length]  [要截取的长度]
 * [$charset] [字符串编码]
 ****************************/
function subCNchar($str, $start = 0, $length, $charset = "utf-8") {
    if (strlen($str) <= $length)
        return $str;

    $re['utf-8'] = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xff][\x80-\xbf]{3}/";
    $re['gb2312'] = "/[\x01-\x7f]|[\xb0-\xf7][\xa0-\xfe]/";
    $re['gbk'] = "/[\x01-\x7f]|[\x81-\xfe][\x40-\xfe]/";
    $re['big5'] = "/[\x01-\x7f]|[\x81-\xfe]([\x40-\x7e]|\xa1-\xfe])/";
    preg_match_all($re[$charset], $str, $match);

    $slice = join("", array_slice($match[0], $start, $length));

    return $slice;
}
$county="大中华区";
$res=subCNchar($county,0,1);
echo $res;
#大 
?>
<br><font color="#e78608">------解决方案--------------------</font><br>
로그인 후 복사
PHP code
大
中
华
区
[User:root Time:19:21:36 Path:/home/liangdong/php]$ cat mb.php 
<?php /* file-encoding : utf-8*/
/* export LANG=zh_CN.utf-8*/

$str = "大中华区";
$len = mb_strlen($str, "utf-8");
for ($i = 0; $i != $len; ++ $i) {
        $letter = mb_substr($str, $i, 1, "utf-8");
        echo $letter . PHP_EOL;
}
?>
<br><font color="#e78608">------解决方案--------------------</font><br>
로그인 후 복사
PHP code


 $county="大中华区";
$array=str_split($county,2);
<br><font color="#e78608">------解决方案--------------------</font><br>
로그인 후 복사
探讨

PHP code


$county="大中华区";
$array=str_split($county,2);




array(4) {
[0] =>
string(2) "大"
[1] =>
string(2) "中"
[2] =>
string(2) "华"
[3] =>
string(2) "区"
}
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿