PHP字符串截取

Posted studyphp

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP字符串截取相关的知识,希望对你有一定的参考价值。

//字符串截取
function utf8_substr($str, $start, $length) {
    $i = 0;
    //完整排除之前的UTF8字符
    while($i < $start) {
        $ord = ord($str{$i});
        if($ord < 192) {
            $i++;
        } elseif($ord <224) {
            $i += 2;
        } else {
            $i += 3;
        }
    }
    //开始截取
    $result = ‘‘;
    while($i < $start + $length && $i < strlen($str)) {
        $ord = ord($str{$i});
        if($ord < 192) {
            $result .= $str{$i};
            $i++;
        } elseif($ord <224) {
            $result .= $str{$i}.$str{$i+1};
            $i += 2;
        } else {
            $result .= $str{$i}.$str{$i+1}.$str{$i+2};
            $i += 3;
        }
    }
    if($i < strlen($str)) {
        $result .= ‘...‘;
    }
    return $result;
}

 

以上是关于PHP字符串截取的主要内容,如果未能解决你的问题,请参考以下文章

PHP项目SmartySmarty截取字符串方法truncate

JavaScript实用功能代码片段

PHP截取并生成纯文本字符串

PHP 代码片段

php解决中文截取乱码问题

php提取字符串中网站url地址的方法