PHP中文處理 中文字串截取(mb_substr)和取得中文字串字數,需要的朋友可以參考下。
一、中文截取:mb_substr()
#mb_substr( $str, $start, $length, $encoding )
#$str,需截斷的字串
$start,截斷開始處,起始處為0
$length,要截斷的字數
$encoding,網頁編碼,如utf-8,GB2312,GBK
實例:
<?php $str='php中文网://www.php.cn'; echo mb_substr($str,0,4,'utf-8');//截取头5个字,假定此代码所在php文件的编码为utf-8 ?>
結果顯示:php中文網
#二、取得中文長度:mb_strlen()
#mb_strlen( $ str, $encoding )
$str,要計算長度的字串
$encoding,網頁編碼,如utf-8,GB2312,GBK
##實例:
<?php $str='php中文网://www.php.cn'; echo mb_strlen($str,'utf-8');//假定此代码所在php文件的编码为utf-8 ?>
結果顯示:24
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
PHP取整函數:ceil ,floor,round,intval的區別介紹
#
以上是php處理中文字串截取(mb_substr)和取得中文字串字數的介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!