码迷,mamicode.com
首页 > Web开发 > 详细

php中文截取无乱码

时间:2014-08-07 07:39:10      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:php字符串截取

<?php
header(‘Content-Type:text/html;charset=utf-8‘);
function cutstr($str,$len){
    if($len<0){return null;}
    $chars = 0; //字符数量
    $offset = 0;
    $res = ‘‘;

        while($chars < $len){
            $high = decbin(ord(substr($str,$offset,1)));
            
            if(strlen($high) < 8){
                $count = 1;
            }else if(substr($high,0,3) == ‘110‘){
                $count = 2;
            }else if(substr($high,0,4)== ‘1110‘){
                $count = 3;
            }
            echo $count.‘<br/>‘;
            $res .= substr($str,$offset,$count);
            $chars += 1;
            $offset += $count;
        }
        return $res;
    }
$str = ‘你好aaaaa‘;
echo cutstr($str,2);

 ?>


php中文截取无乱码,布布扣,bubuko.com

php中文截取无乱码

标签:php字符串截取

原文地址:http://stoneryan.blog.51cto.com/4534150/1536428

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!