您的位置:首页 > 数码常识数码常识
php截取字符串长度(php获取字符串长度函数)
2025-05-16人已围观
php截取字符串长度(php获取字符串长度函数)
function msubstr($str, $start=0, $length, $charset="utf-8", $suffix=true) {
if(function_exists("mb_substr"))
$slice=mb_substr($str, $start, $length, $charset);
elseif(function_exists('iconv_substr')) {
$slice=iconv_substr($str,$start,$length,$charset);
}else{
$re['utf-8']="/[x01-x7f]|[xc2-xdf][x80-xbf]|[xe0-xef][x80-xbf]{2}|[xf0-xff][x80-xbf]{3}/";
$re['gb2312']="/[x01-x7f]|[xb0-xf7][xa0-xfe]/";
$re['gbk']="/[x01-x7f]|[x81-xfe][x40-xfe]/";
$re['big5']="/[x01-x7f]|[x81-xfe]([x40-x7e]|xa1-xfe])/";
preg_match_all($re[$charset], $str, $match);
$slice=join("",array_slice($match[0], $start, $length));
}
return ($suffix && (mb_strlen($str,$charset) > $length)) ? $slice.'...' : $slice;
}
上面就是小居数码小编今天给大家介绍的关于(php获取字符串长度函数)的全部内容,希望可以帮助到你,想了解更多关于数码知识的问题,欢迎关注我们,并收藏,转发,分享。
94%的朋友还想知道的:
cad中如何测量长度方法步骤(cad如何测量长度)
告诉你2种方法解决(excel怎么批量删除文本右侧指定长度的空格)
PHP数组转字符串教程(php字符串转字节)
php随机输出(php随机字符串)
155478
function msubstr($str, $start=0, $length, $charset="utf-8", $suffix=true) {
if(function_exists("mb_substr"))
$slice=mb_substr($str, $start, $length, $charset);
elseif(function_exists('iconv_substr')) {
$slice=iconv_substr($str,$start,$length,$charset);
}else{
$re['utf-8']="/[x01-x7f]|[xc2-xdf][x80-xbf]|[xe0-xef][x80-xbf]{2}|[xf0-xff][x80-xbf]{3}/";
$re['gb2312']="/[x01-x7f]|[xb0-xf7][xa0-xfe]/";
$re['gbk']="/[x01-x7f]|[x81-xfe][x40-xfe]/";
$re['big5']="/[x01-x7f]|[x81-xfe]([x40-x7e]|xa1-xfe])/";
preg_match_all($re[$charset], $str, $match);
$slice=join("",array_slice($match[0], $start, $length));
}
return ($suffix && (mb_strlen($str,$charset) > $length)) ? $slice.'...' : $slice;
}
上面就是小居数码小编今天给大家介绍的关于(php获取字符串长度函数)的全部内容,希望可以帮助到你,想了解更多关于数码知识的问题,欢迎关注我们,并收藏,转发,分享。
94%的朋友还想知道的:
cad中如何测量长度方法步骤(cad如何测量长度)
告诉你2种方法解决(excel怎么批量删除文本右侧指定长度的空格)
PHP数组转字符串教程(php字符串转字节)
php随机输出(php随机字符串)
155478
很赞哦! ()