php截取中文字串前幾位的方法:先建立一個PHP範例檔;然後透過「mb_substr($str,0,4,'utf-8');」方法截取中文字串前幾位即可。
本文操作環境:Windows7系統、PHP7.1版、Dell G3電腦。
php怎麼截取中文字串前幾位?
中文截取:mb_substr()
mb_substr( $str, $start, $length, $encoding )
$str,需要截斷的字串
$start,截斷開始處,起始處為0
$length,要截取的字數
$encoding,網頁編碼,如utf-8,GB2312,GBK
實例:
<?php $str='快乐老家:https://www.xx.net'; echo mb_substr($str,0,4,'utf-8');//截取头5个字,假定此代码所在php文件的编码为utf-8 ?>###結果顯示:快樂老家#########推薦學習:《###PHP影片教學###》###
以上是php怎麼截取中文字串前幾位的詳細內容。更多資訊請關注PHP中文網其他相關文章!