php截取中英文字串操作

來源:互聯網
上載者:User
今天遇到一個這樣的問題。想必大家都遇到過,因為排版需要,如果使用者名稱如果過長的話,將做截取操作,顯示為... 。 我們的需求類似sina 微博,如果是中文的話,最多顯示5位,如果超過5位則顯示4個中文,三個... ,大家都知道,排版時一個中文佔兩個英文的位置。所以要最多顯示10位,類推上面的來的。

在網上找到的解決辦法不是很好,我自己寫了一個。我把它們放到helper裡面了。不說思路了,直接上代碼吧。

<?phpclass Zend_View_Helper_UserName{    public function userName($userName, $length)    {        $retUserName = '';        $position = 0;        $count = 1;        while ($count <= $length) {            $subStr = mb_substr($userName, $position, 1, 'UTF-8');            if (preg_match("/^[\x{4e00}-\x{9fa5}]+$/u", $subStr)) {                $count += 2;            } else {                $count++;            }            $position++;            $retUserName .= $subStr;        }        $retUserNameLength  = mb_strlen($retUserName);        $userNameLength = mb_strlen($userName) ;        if ($retUserNameLength >= $userNameLength - 1 && $retUserNameLength <= $userNameLength) {            $retUserName = $userName;        } else {            $retUserName .= '...';        }        return $retUserName;    }}

這樣用的時候就可以輕鬆的對名字截取了。而且對中英文都合適。弊端是可能會比substr之類的函數消耗一些資源。

  • 聯繫我們

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