PHP技术分享--实现中文字串截取无乱码的函数(适用于utf-8)

305 阅读1分钟
原文链接: click.aliyun.com

PHP技术分享--实现中文字串截取无乱码的函数(适用于utf-8)

vip1888 2018-02-25 23:31:38 浏览60 评论0
  • 编程语言
  • 系统研发与运维
  • linux
  • php
  • 深度学习
  • 帮助
  • 函数
  • 测试
  • charset
  • utf-8
  • PHP技术分享
  • 中文字串截取
  • 无乱码

摘要: <?php // 实现中文字串截取无乱码的函数(适用于utf-8) function substr_text($str, $start=0, $length, $charset="utf-8", $suffix="") { if(function_exists("mb_substr")) { // 判断中文长度,超过指定长度超出部分显示.

<?php // 实现中文字串截取无乱码的函数(适用于utf-8) function substr_text($str, $start=0, $length, $charset="utf-8", $suffix="") { if(function_exists("mb_substr")) { // 判断中文长度,超过指定长度超出部分显示... if (mb_strlen($str,$charset)>$length) { return mb_substr($str, $start, $length, $charset).$suffix.'...'; } else { return mb_substr($str, $start, $length, $charset).$suffix; } } elseif(function_exists('iconv_substr')) { // 判断中文长度,超过指定长度超出部分显示... if (mb_strlen($str,$charset)>$length) { return iconv_substr($str,$start,$length,$charset).$suffix.'...'; } else { return iconv_substr($str,$start,$length,$charset).$suffix; } } $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 $slice.$suffix; }
echo substr_text('菜单测试',0,2); ?>

用云栖社区APP,舒服~

【云栖快讯】直播推荐——现在预约2月28日14:00 VPN网关新品发布会直播,即可赢取SSL-VPN网关一个月免费试用,尽享安全、稳定、快捷的企业级服务!先到先得哦!  详情请点击
分享到:

相关文章

网友评论

作者关闭了评论