php中文字串截取亂碼問題解決方案_PHP教程

來源:互聯網
上載者:User
出現中文截取亂碼的問題一般是中文文合混時比較多,如果你截取英文不會有問題,中文就會有,主要原因是:字串編碼為UTF-8的,一個中文字元佔三個位元組而字串編碼為GB2312的,一個中文字元佔兩個位元組了。下面我來先來看執行個體。

字串編碼為GB2312的,一個中文字元佔兩個位元組:

代碼如下 複製代碼

public static function chinesesubstr($str, $start, $len) { // $str指字串,$start指字串的起始位置,$len指字串長度
$strlen = $start + $len; // 用$strlen儲存字串的總長度,即從字串的起始位置到字串的總長度
for($i = $start; $i < $strlen;) {
if (ord ( substr ( $str, $i, 1 ) ) > 0xa0) { // 如果字串中首個位元組的ASCII序數值大於0xa0,則表示漢字
$tmpstr .= substr ( $str, $i, 2 ); // 每次取出兩位字元賦給變數$tmpstr,即等於一個漢字
$i=$i+2; // 變數自加2
} else{
$tmpstr .= substr ( $str, $i, 1 ); // 如果不是漢字,則每次取出一位字元賦給變數$tmpstr
$i++;
}
}
return $tmpstr; // 返回字串
}

字串編碼為UTF-8的,一個中文字元佔三個位元組:

代碼如下 複製代碼


public static function chinesesubstr($str, $start, $len) { // $str指字串,$start指字串的起始位置,$len指字串長度
$strlen = $start + $len; // 用$strlen儲存字串的總長度,即從字串的起始位置到字串的總長度
for($i = $start; $i < $strlen;) {
if (ord ( substr ( $str, $i, 1 ) ) > 0xa0) { // 如果字串中首個位元組的ASCII序數值大於0xa0,則表示漢字
$tmpstr .= substr ( $str, $i, 3 ); // 每次取出三位字元賦給變數$tmpstr,即等於一個漢字
$i=$i+3; // 變數自加3
} else{
$tmpstr .= substr ( $str, $i, 1 ); // 如果不是漢字,則每次取出一位字元賦給變數$tmpstr
$i++;
}
}
return $tmpstr; // 返回字串
}

上面雖然解決了這個問題,但是要注意編碼問題,相對來說比較麻煩,下面寫了一個不管什麼編碼都沒問題的解決辦法。

代碼如下 複製代碼

/**
* Utf-8、gb2312都支援的漢字截取函數
* cut_str(字串, 截取長度, 開始長度, 編碼);
* 編碼預設為 utf-8
* 開始長度預設為 0
*/
function cut_str($string, $sublen, $start = 0, $code = 'UTF-8')
{
if($code == 'UTF-8')
{
$pa = "/[x01-x7f]|[xc2-xdf][x80-xbf]|xe0[xa0-xbf][x80-xbf]|[xe1-xef][x80-xbf][x80-xbf]|xf0[x90-xbf][x80-xbf][x80-xbf]|[xf1-xf7][x80-xbf][x80-xbf][x80-xbf]/";
preg_match_all($pa, $string, $t_string);
if(count($t_string[0]) - $start > $sublen) return join('', array_slice($t_string[0], $start, $sublen))."…";
return join('', array_slice($t_string[0], $start, $sublen));
}
else
{
$start = $start*2;
$sublen = $sublen*2;
$strlen = strlen($string);
$tmpstr = '';
for($i=0; $i< $strlen; $i++)
{
if($i>=$start && $i< ($start+$sublen))
{
if(ord(substr($string, $i, 1))>129)
{
$tmpstr.= substr($string, $i, 2);
}
else
{
$tmpstr.= substr($string, $i, 1);
}
}
if(ord(substr($string, $i, 1))>129) $i++;
}
if(strlen($tmpstr)< $strlen ) $tmpstr.= "…";
return $tmpstr;
}
}

http://www.bkjia.com/PHPjc/632122.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/632122.htmlTechArticle出現中文截取亂碼的問題一般是中文文合混時比較多,如果你截取英文不會有問題,中文就會有,主要原因是:字串編碼為UTF-8的,一個中...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.