php中文字串截取亂碼問題解決

來源:互聯網
上載者:User
其實下面的方法1、2現在不推薦了,讀者們看了就當多瞭解了吧,網友有留言,其實php有現成的用於多位元組安全的字串截取函數的mb_substr,

參照:http://www.php.net/manual/zh/function.mb-substr.php

http://baike.baidu.com/view/4517800.htm

方法1、字串編碼為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; // 返回字串    }

方法2、字串編碼為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; // 返回字串    }
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.