Home  >  Article  >  php教程  >  PHP截取中英文混合防止乱码

PHP截取中英文混合防止乱码

PHP中文网
PHP中文网Original
2016-05-25 17:11:521031browse

php代码

 function utf8_substr($str, $from, $len = 180, $suffix = '') { 
        $str     = trim($str);
        $str     = strip_tags($str);
        $pre_len = strlen($str);
        $str     = preg_replace('#^(?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,'. $from .'}'.'((?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,'. $len .'}).*#s', '$1', $str);
        if ($pre_len != strlen($str)) {
            $str .= $suffix;
        }
        return $str;
    }
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn