Chinaunix首页 | 论坛 | 博客
  • 博客访问: 246662
  • 博文数量: 76
  • 博客积分: 1410
  • 博客等级: 上尉
  • 技术积分: 745
  • 用 户 组: 普通用户
  • 注册时间: 2009-10-28 16:04
文章分类

全部博文(76)

文章存档

2013年(2)

2010年(21)

2009年(53)

我的朋友

分类:

2010-09-17 11:10:44

字符串截取:

function cutstr($str, $length, $dot='…',$charset='utf-8')
{
    if(strtolower($charset) == 'utf-8')
    {
        $str = mb_convert_encoding($str, 'gb2312', 'utf-8');
    }
    if($length >= strlen($str))
    {
        return mb_convert_encoding($str, 'utf-8', 'gb2312');;
    }
    for($i=0;$i<$length-2;$i++)
    {
        $str_new .= $str[$i];
    }
    if(strtolower($charset) == 'utf-8')
    {
        $str_new = mb_convert_encoding($str_new, 'utf-8', 'gb2312');
    }
    //ord()
    return $str_new.$dot;
}


阅读(696) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~