php擷取字串方法有:1、使用substr函數擷取字串;2、使用mb_substr函數擷取字串;3、使用自定義的「function mysubstr($str, $start, $len){}」方法擷取字串等等。
本文操作環境:windows7系統、PHP7.1版,DELL G3電腦
php擷取字串幾個實用的函數
1.substr(源字串,其實位置[,長度])-擷取字串返回部分字串
<?php $str ="phpddt.com"; echo substr($str,2);//pddt.com echo substr($str,2,3);//pdd echo substr($str,-2);//om 負數從結尾開始取 ?>
但是當你擷取中文字串的時候很容易出現亂碼,因為一個漢字是兩個位元組,而一個英文字母是一個位元組。解決辦法如下:
2.mb_substr(),使用方法和substr相同,不過要開啟php.ini裡面extension=php_mbstring.dll擴充套件,不用擔心,一般的空間商都會開啟這個擴充套件的。
<?php echo mb_substr("php點點通",1,3,"UTF-8");//hp點 ?>
程式碼如下:
substr(string,start,length)
其中start的引數
正數 - 在字串的指定位置開始
負數 - 在從字串結尾的指定位置開始
0 - 在字串中的第一個字元處開始
******************************************************************
strstr() 函數搜尋一個字串在另一個字串中的第一次出現。
該函數返回字串的其餘部分(從匹配點)。如果未找到所搜尋的字串,則返回 false。
strstr('[email protected]', '@', TRUE); //引數設定true, 返回查詢值@之前的首部,abc strstr( '[email protected]', '@'); //預設返回查詢值@之後的尾部,@jb51.net
網上也有很多中文字串擷取教學,實現起來比較複雜,感覺還是用php自帶的函數實現起來比較好。整理的網路資料(php程式碼)如下:
(1)擷取GB2312中文字串
<?php //擷取GB2312中文字串 function mysubstr($str, $start, $len){ $tmpstr =""; $strlen = $start + $len; for($i =0; $i < $strlen; $i++){ if(ord(substr($str, $i,1))>0xa0){ $tmpstr .= substr($str, $i,2); $i++; }else $tmpstr .= substr($str, $i,1); } return $tmpstr; } echo mysubstr("php點點通",1,5);//php點 ?>
(2)擷取utf8編碼的多位元組字串
<?php //擷取utf8字串 function utf8Substr($str, $from, $len) { return preg_replace('#^(?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,'.$from.'}'. '((?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,'.$len.'}).*#s', '$1',$str); } echo utf8Substr("php點點通",1,5);//hp點點通 ?>
(3)支援 utf-8、gb2312都支援的漢字擷取函數
<?php //同時支援 utf-8、gb2312都支援的漢字擷取函數 ,預設編碼是utf-8 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; } } $str ="php點點通提供原創php教學"; echo cut_str($str,8,0);//php點點通提供... ?>
推薦學習:《》
以上就是php擷取字串方法有哪些的詳細內容,更多請關注TW511.COM其它相關文章!