亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

PHP截取字符串專題

瀏覽:113日期:2024-01-12 18:02:44

1. 截取GB2312中文字符串

<?php< ?php //截取中文字符串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;}?>

2. 截取utf8編碼的多字節(jié)字符串

<?php< ?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);}?>3. UTF-8、GB2312都支持的漢字截取函數(shù)

<?php< ?php/* Utf-8、gb2312都支持的漢字截取函數(shù) cut_str(字符串, 截取長(zhǎng)度, 開始長(zhǎng)度, 編碼); 編碼默認(rèn)為 utf-8 開始長(zhǎng)度默認(rèn)為 0 */ 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 = 'abcd需要截取的字符串'; echo cut_str($str, 8, 0, 'gb2312'); ?>4. BugFree 的字符截取函數(shù)

<?php< ?php /** * @package;;BugFree * @version;;$Id: FunctionsMain.inc.php,v 1.32 2005/09/24 11:38:37 wwccss Exp $ * * * Return part of a string(Enhance the function substr()) * * @author; Chunsheng Wang <wwccss@263.net> * @param string; $String; the string to cut. * @param int;;$Length; the length of returned string. * @param booble; $Append; whether append '...': false|true * @return stringthe cutted string. */ function sysSubStr($String,$Length,$Append = false) { if (strlen($String) < = $Length ) { return $String; } else { $I = 0; while ($I < $Length) { $StringTMP = substr($String,$I,1); if ( ord($StringTMP) >=224 ) { $StringTMP = substr($String,$I,3); $I = $I + 3; } elseif( ord($StringTMP) >=192 ) { $StringTMP = substr($String,$I,2); $I = $I + 2; } else { $I = $I + 1; } $StringLast[] = $StringTMP; } $StringLast = implode('',$StringLast); if($Append) { $StringLast .= '...'; } return $StringLast; } } $String = 'CodeBit.cn -- 簡(jiǎn)單、精彩、通用'; $Length = '18'; $Append = false; echo sysSubStr($String,$Length,$Append); ?>

標(biāo)簽: PHP
主站蜘蛛池模板: 免费观看视频成人国产 | 无内丝袜透明在线播放 | 黄色毛片网 | 精品日韩二区三区精品视频 | 日本无卡无吗中文免费 | 亚洲欧美日韩综合 | 九九视频高清视频免费观看 | 色噜噜国产精品视频一区二区 | 亚洲一区图片 | 亚洲午夜网 | 韩国一级特黄清高免费大片 | 黄色片免费在线观看视频 | 日本黄色小视频在线观看 | 免费一级成人毛片 | 黄 在线播放 | 亚洲免费在线播放 | 91色在线观看国产 | 欧美综合偷拍在线另类卡通小说 | 91精品国产9l久久久久 | 国产最新自拍视频 | 高清在线不卡 | 国产成人精品免费视 | 日本在线网 | 亚洲欧美久久婷婷爱综合一区天堂 | wwwxxxx美国| 国产精品日本一区二区不卡视频 | 久草久在线 | 1024你懂的国产日韩欧美 | 国产精品臀控福利在线观看 | 1024你懂的国产日韩欧美 | 国产精品福利资源在线 | 在线91精品国产免费 | 亚洲国产一区二区三区综合片 | redtube日本| 国产综合第一页在线视频 | 狠狠色丁香婷婷久久综合2021 | 免费观看黄色网 | 香蕉大黄香蕉在线观看 | 亚洲六月丁香婷婷综合 | 国产一二区视频 | 日韩一区二区国色天香 |