这篇文章主要为大家详细介绍了php 截取GB2312中文字符串函数,具有一定的参考价值,可以用来参考一下。
感兴趣php 截取GB2312中文字符串函数的小伙伴,下面一起跟随四海网的小编罗X来看看吧。<br>
# 四海网网 (www.q1010.com)
//截取中文字符串
function mysubstr($str, $start, $len) {
$tmpstr = "";
$strlen = $start + $len;
for($i = 0; $i < $strlen; $i++) {
if(ord(substr($str, $i, 1)) > 0xa0) {
$tmpstr .= substr($str, $i, 2);
$i++;
} else
$tmpstr .= substr($str, $i, 1);
}
return $tmpstr;
}
# End 512.笔记 www.q1010.com
本文来自:http://www.q1010.com/173/2701-0.html
注:关于php 截取GB2312中文字符串函数的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:截取函数
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。