Home > Backend Development > PHP Tutorial > php mb_substr函数截取中文字符问题

php mb_substr函数截取中文字符问题

WBOY
Release: 2016-06-23 14:13:44
Original
799 people have browsed it

使用php mb_substr函数截取一个变量的前2个与后2个字符,变量内容是中文字符,但只能输出前2个字符,无法输出后2个字符,是不是mb_substr函数不支持从尾部截取?还请高手指点。
$ip="广东省佛山市 电信 ";
echo mb_substr($ip,0,2,'utf-8');
echo mb_substr($ip,-2,'utf-8');
?>

当前输出结果:广东
希望输出结果:广东电信


谢谢!


回复讨论(解决方案)

第二句要报错。
string mb_substr ( string $str , int $start [, int $length [, string $encoding ]] )

 第二个参数 length

    str 中要使用的最大字符数。

mb_internal_encoding("UTF-8");
$ip="广东省佛山市 电信";
echo mb_substr($ip,0,2);
echo mb_substr($ip,-2);

晕,我在PPC也看到你了。。
问题比较纠结。$ip字符串中要考虑中文与空格,空格只会当成一个长度,所以想用strlen来确定字符长度进而截取字符是行不通的。

<?php$ip="广东省佛山市 电信 ";$ip=trim($ip);echo mb_substr($ip,0,2,'utf-8');echo gb_strrev(mb_substr(gb_strrev($ip),0,2,'utf-8')); function gb_strrev($str){  return implode('',  array_reverse(  preg_split('//u',$str)  )  );}?>
Copy after login

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template