php截取中文字符串
作者:liaolliso 日期:2007-11-13 23:12:48
程序一:PHP截取中文字符串方法
程序二:PHP截取UTF-8字符串,解决半字符问题
php utf-8 字符串截取
截取utf-8字符串函数
为了支持多语言,数据库里的字符串可能保存为UTF-8编码,在网站开发中可能需要用php截取字符串的一部分。为了避免出现乱码现象,编写如下的UTF-8字符串截取函数
关于utf-8的原理请看 UTF-8 FAQ
UTF-8编码的字符可能由1~3个字节组成, 具体数目可以由第一个字节判断出来。(理论上可能更长,但这里假设不超过3个字节)
第一个字节大于224的,它与它之后的2个字节一起组成一个UTF-8字符
第一个字节大于192小于224的,它与它之后的1个字节组成一个UTF-8字符
否则第一个字节本身就是一个英文字符(包括数字和一小部分标点符号)。
以前为某网站设计的代码(也是现在用在首页的长度截取的函数)
Code:
1 | function msubstr($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;
}
|
程序二:PHP截取UTF-8字符串,解决半字符问题
1 | /******************************************************************
* PHP截取UTF-8字符串,解决半字符问题。
* 英文、数字(半角)为1字节(8位),中文(全角)为3字节
* @return 取出的字符串, 当$len小于等于0时, 会返回整个字符串
* @param $str 源字符串
* $len 左边的子串的长度
****************************************************************/
function utf_substr($str,$len)
{
for($i=0;$i<$len;$i++)
{
$temp_str=substr($str,0,1);
if(ord($temp_str) > 127)
{
$i++;
if($i<$len)
{
$new_str[]=substr($str,0,3);
$str=substr($str,3);
}
}
else
{
$new_str[]=substr($str,0,1);
$str=substr($str,1);
}
}
return join($new_str);
}
?>
|
php utf-8 字符串截取
1 | <?
function cutstr($string, $length)
{
preg_match_all("/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|\xe0[\xa0-\xbf][\x80-\xbf]|[\xe1-\xef][\x80-\xbf][\x80-\xbf]|\xf0[\x90-\xbf][\x80-\xbf][\x80-\xbf]|[\xf1-\xf7][\x80-\xbf][\x80-\xbf][\x80-\xbf]/", $string, $info);
for($i=0; $i<count($info[0]); $i++)
{
$wordscut .= $info[0][$i];
$j = ord($info[0][$i]) > 127 ? $j + 2 : $j + 1;
if ($j > $length - 3)
{
return $wordscut." ...";
}
}
return join('', $info[0]);
}
$string="242432反对感是456犯得上广泛大使馆地方7890";
for($i=0;$i<strlen($string);$i++)
{
echo cutstr($string,$i)."><br>";
}
?>
|
截取utf-8字符串函数
为了支持多语言,数据库里的字符串可能保存为UTF-8编码,在网站开发中可能需要用php截取字符串的一部分。为了避免出现乱码现象,编写如下的UTF-8字符串截取函数
关于utf-8的原理请看 UTF-8 FAQ
UTF-8编码的字符可能由1~3个字节组成, 具体数目可以由第一个字节判断出来。(理论上可能更长,但这里假设不超过3个字节)
第一个字节大于224的,它与它之后的2个字节一起组成一个UTF-8字符
第一个字节大于192小于224的,它与它之后的1个字节组成一个UTF-8字符
否则第一个字节本身就是一个英文字符(包括数字和一小部分标点符号)。
以前为某网站设计的代码(也是现在用在首页的长度截取的函数)
Code:
1 | <?php // Cut_Str;
//$sourcestr 是要处理的字符串
//$cutlength 为截取的长度(即字数)
function cut_str($sourcestr,$cutlength)
{
$returnstr='';
$i=0;
$n=0;
$str_length=strlen($sourcestr);//字符串的字节数
while (($n<$cutlength) and ($i<=$str_length))
{
$temp_str=substr($sourcestr,$i,1);
$ascnum=Ord($temp_str);//得到字符串中第$i位字符的ascii码
if ($ascnum>=224) //如果ASCII位高与224,
{
$returnstr=$returnstr.substr($sourcestr,$i,3); //根据UTF-8编码规范,将3个连续的字符计为单个字符
$i=$i+3; //实际Byte计为3
$n++; //字串长度计1
}
elseif ($ascnum>=192) //如果ASCII位高与192,
{
$returnstr=$returnstr.substr($sourcestr,$i,2); //根据UTF-8编码规范,将2个连续的字符计为单个字符
$i=$i+2; //实际Byte计为2
$n++; //字串长度计1
}
elseif ($ascnum>=65 && $ascnum<=90) //如果是大写字母,
{
$returnstr=$returnstr.substr($sourcestr,$i,1);
$i=$i+1; //实际的Byte数仍计1个
$n++; //但考虑整体美观,大写字母计成一个高位字符
}
else //其他情况下,包括小写字母和半角标点符号,
{
$returnstr=$returnstr.substr($sourcestr,$i,1);
$i=$i+1; //实际的Byte数计1个
$n=$n+0.5; //小写字母和半角标点等与半个高位字符宽...
}
}
if ($str_length>$cutlength){
$returnstr = $returnstr . "...";//超过长度时在尾处加上省略号
}
return $returnstr;
}
截取utf-8字符串函数
function FSubstr($title,$start,$len="",$magic=true)
{
/**
* powered by Smartpig
* mailto:d.einstein@263.net
*/
if($len == "") $len=strlen($title);
if($start != 0)
{
$startv = ord(substr($title,$start,1));
if($startv >= 128)
{
if($startv < 192)
{
for($i=$start-1;$i>0;$i--)
{
$tempv = ord(substr($title,$i,1));
if($tempv >= 192) break;
}
$start = $i;
}
}
}
if(strlen($title)<=$len) return substr($title,$start,$len);
$alen = 0;
$blen = 0;
$realnum = 0;
for($i=$start;$i<strlen($title);$i++)
{
$ctype = 0;
$cstep = 0;
$cur = substr($title,$i,1);
if($cur == "&")
{
if(substr($title,$i,4) == "><")
{
$cstep = 4;
$length += 4;
$i += 3;
$realnum ++;
if($magic)
{
$alen ++;
}
}
else if(substr($title,$i,4) == ">")
{
$cstep = 4;
$length += 4;
$i += 3;
$realnum ++;
if($magic)
{
$alen ++;
}
}
else if(substr($title,$i,5) == "&")
{
$cstep = 5;
$length += 5;
$i += 4;
$realnum ++;
if($magic)
{
$alen ++;
}
}
else if(substr($title,$i,6) == """)
{
$cstep = 6;
$length += 6;
$i += 5;
$realnum ++;
if($magic)
{
$alen ++;
}
}
else if(preg_match("/&#(\d+);?/i",substr($title,$i,8),$match))
{
$cstep = strlen($match[0]);
$length += strlen($match[0]);
$i += strlen($match[0])-1;
$realnum ++;
if($magic)
{
$blen ++;
$ctype = 1;
}
}
}else{
if(ord($cur)>=252)
{
$cstep = 6;
$length += 6;
$i += 5;
$realnum ++;
if($magic)
{
$blen ++;
$ctype = 1;
}
}elseif(ord($cur)>=248){
$cstep = 5;
$length += 5;
$i += 4;
$realnum ++;
if($magic)
{
$ctype = 1;
$blen ++;
}
}elseif(ord($cur)>=240){
$cstep = 4;
$length += 4;
$i += 3;
$realnum ++;
if($magic)
{
$blen ++;
$ctype = 1;
}
}elseif(ord($cur)>=224){
$cstep = 3;
$length += 3;
$i += 2;
$realnum ++;
if($magic)
{
$ctype = 1;
$blen ++;
}
}elseif(ord($cur)>=192){
$cstep = 2;
$length += 2;
$i += 1;
$realnum ++;
if($magic)
{
$blen ++;
$ctype = 1;
}
}elseif(ord($cur)>=128){
$length += 1;
}else{
$cstep = 1;
$length +=1;
$realnum ++;
if($magic)
{
if(ord($cur) >= 65 && ord($cur) <= 90)
{
$blen++;
}else{
$alen++;
}
}
}
}
if($magic)
{
if(($blen*2+$alen) == ($len*2)) break;
if(($blen*2+$alen) == ($len*2+1))
{
if($ctype == 1)
{
$length -= $cstep;
break;
}else{
break;
}
}
}else{
if($realnum == $len) break;
}
}
unset($cur);
unset($alen);
unset($blen);
unset($realnum);
unset($ctype);
unset($cstep);
return substr($title,$start,$length);
}
|
平均得分
(0 次评分)
评论: 28 | 查看次数: 1079
发表评论
订阅
上一篇
|

文章来自:
标签:
手机窃听器
窃听器
手机监听器
监听器
手机窃听器
窃听器
手机监听器
监听器
手机窃听器
窃听器
手机窃听器
窃听器
手机监听器
监听器
手机窃听器
手机窃听器
手机窃听器
手机窃听器
手机窃听器
手机窃听器
手机窃听器
手机窃听器
手机窃听器
手机窃听器
手机窃听器
手机窃听器
手机窃听器
窃听器
Beyond knowing your limitations. apple ipod it's important to be able to size up opponents . Bluetooth Headset at a glance. Bluetooth Headsets Knowing their class is the first step, understanding. canon digital camera your places in a rock-paper-scissors scenario. cell phone accessories More important, however, is the estimation . digital camcorder of gear. digital camcorders. As much as skill and class balance . digital camera plays a part in the outcome . digital cameras of combat, gear is a major differentiator that makes up for shortcomings in other areas. dvd player In fact, with . dvd players the introduction of Resilience, gear more than . ipod shuffle ever plays a more substantial part in PvP. ipod touch In an Arena match, the very first thing we . mp3 scope out is gear. mp3 mp4 player Through quick tab-selection viewing . mp3 mp4 player of character portraits, we generally . mp3 mp4 player have a good idea of the classes we're up against if they keep their helm graphic on. mp3 player accessories If they are wearing Season 3 shoulders, then we know . mp3 player accessory their relative experience. mp3 player kaufen This is why the visual i. mp3 player mpact of Arena shoulders is so important. mp4 It immediately gives you a general idea of how tough the match will be. portable dvd player Players in full S3 will likely have over 10k hp and over. portable dvd players 400 Resilience, depending on the class and spec. zubehoer mp3 player A full S3 SL/SL Warlock, for example, will easily have. about 12-13k hp and over 400 Resilience. Identifying weapons is slightly more . difficult but will also give a general idea of an enemy's strength. Season 1 and 2 weapons share the same graphics, so it's harder to identify. Season 3 weapons, on the other 最新免费网络游戏 hand, are distinctive and share models with Black Temple and Mount Hyjal weapons. which have relatively the same power. A review of Brutal Gladiator weapons will come in handy because these will be the most common way to identify opponents of relative skill. With the new mechanics. in place for Arenas, Season 4 will more . or . less weed out the chaff from the grain.
In my experience, I have found that the Peacekeepers around . mp4 player the Shattered Sun Staging Area have . mp4 players been slacking off. portable mp3 players In fact, my wife's toon was ganked right in front . wow of the building and the so-called Peacekeepers . wow gold did absolutely nothing. wow gold Sensing a bug, my wife . wow gold wrote a ticket and got a somewhat rude e-mail response saying that -- you guessed it -- it was working as intended. wow gold An Alliance . wow leveling guild on my server seemed to be aware of the fact and exploited it to full effect, killing solo players who could seek no refuge under the apathetic -- or even hostile -- Peacekeepers. wow oro According to reports, it's a known bug -- one player even . wow powerleveling made a video to document it -- but 网络游戏 so far Blizzard . has turned a blind eye to it. I got a more sympathetic response from my GM who at least. mentioned he'd look into the situation. An in-game GM even reset the Peacekeepers 网游in order to see if it would change anything (it didn't). I don't mind gankage.
1GB MP3 PLAYER My wife is a shrewd little fox. 2GB MP3 PLAYER She knows just how much I love the fact. 2GB MP3 PLAYER that she plays the game with me so sometimes, when we have our little domestic arguments, she makes sure. 4GB MP3 PLAYER to cancel her WoW account just to drive home a point. 4GB MP3 PLAYER Of course, it doesn't mean much since we're both paid up for the next few months, but the message is clear -- "we make up (or you see things my way). baladeur MP3 or I'm quitting the game!" Of course, we don't reconcile merely because I'll be losing my . baladeurs MP3 favorite playing partner, but I have to confess that it doesn't make . cell phones me happy one bit. cheap cell phones For parents, World of Warcraft can be a . digital mp3 player useful bargaining chip for their kids with the parental . ipod controls feature. ipod nano It's easy enough to control WoW time if kids aren't doing their homework, floundering in school, or simply not. ipods doing their chores. lecteur mp3 Conversely, a friend . lecteurs mp3 of mine gave his son a WoW subscription when . mp3 mp4 he did well in school. mp3 mp4 player World of Warcraft can be so. mp3 mp4 player much fun and addicting that it's . mp3 player often used as a social tool, and it's often upsetting when our. mp3 player kaufen friends quit playing the game. mp3 player wholesale How many of us have . mp3 players had friends whose significant others have "allowed" them to. mp4 player play the game after, say, a wonderful date. phones cell I'm not sure if it only applies to me, but . portable mp3 player because I play the game with many of my RL friends . and my family, I use the 免费网络游戏 lure of WoW . to full effect. I once had my brother do a specific task for . the promise of an upgrade to The Burning Crusade. A little before he finished what I asked him to do, I secretly upgraded his account. so he could finally make his Blood Elf Priest. Kind of manipulative, I know, but we did end up having . a lot of fun leveling our alts together. How about you. How much 最新网游 a part of your life is WoW and has it . ever been used as a bargaining . chip in your social life.
oct00nn
wow gold
wow power leveling
wow gold
wow power leveling
brogame
brogame
buy worhammer gold
buy worhammer gold
大金空调
大金空调
空调
空调
格力空调
格力空调
美的空调
美的空调
东方医院
东方医院
英语口语
英语口语
油泵
油泵
真空泵
真空泵
胶体磨
胶体磨
中央空调
中央空调
商用中央空调
商用中央空调
螺杆泵
螺杆泵
brogame
brogame
brogame
brogame
brogame
brogame
brogame
wow gold
wow gold
oct00nn
wow gold
wow power leveling
wow gold
wow power leveling
brogame
brogame
buy worhammer gold
buy worhammer gold
大金空调
大金空调
空调
空调
格力空调
格力空调
美的空调
美的空调
东方医院
东方医院
英语口语
英语口语
油泵
油泵
真空泵
真空泵
胶体磨
胶体磨
中央空调
中央空调
商用中央空调
商用中央空调
螺杆泵
螺杆泵
brogame
brogame
brogame
brogame
brogame
brogame
brogame
wow gold
wow gold
10wo8wo10
wow gold
wow power leveling
wow gold
wow power leveling
brogame
brogame
oofay.com
buy warhammer online gold
buy warhammer online gold
大金空调
大金空调
空调
空调
格力空调
格力空调
美的空调
美的空调
上海展览公司
上海展览公司
留学新加坡
留学新加坡
螺杆泵
螺杆泵
上海水泵
上海水泵
家用中央空调
家用中央空调
新加坡留学
新加坡留学
上海新加坡留学
上海新加坡留学
螺杆泵
螺杆泵
brogame
brogame
brogame
brogame
wow gold
wow gold
上海展览公司
美的中央空调
新加坡留学
留学新加坡
隔膜泵
磁力泵
ythygcy05
卷板机
弯管机
婚纱摄影
变压吸附制氮机
变压吸附制氮机
石墨
碳素
婚纱摄影
Graphite
Carbon
铣边机
折边机
剪板机
亚克力展示架
英格索兰气动工具
货架
搬场公司
上海搬场公司
上海搬家公司
搬家公司
北京翻译公司
北京婚庆
婚庆公司
北京婚庆公司
乳腺癌
食道癌
肺癌
直肠癌
胃癌
结肠癌
肝癌
珍香胶囊
清肺散结丸
Google排名
汽车网
喜来健
喜来健
喜来健
喜来健
喜来健
楼梯
楼梯
货架
光盘印刷
光盘刻录
光盘制作
货架
北京长途搬家
北京长途搬家公司
长途搬家
长途搬家公司
翻译公司
写字楼
显示屏
电子显示屏
Led显示屏
礼品
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
货架
搬场公司
上海搬场公司
上海搬家公司
搬家公司
北京翻译公司
北京婚庆
婚庆公司
北京婚庆公司
乳腺癌
食道癌
肺癌
直肠癌
胃癌
结肠癌
肝癌
珍香胶囊
清肺散结丸
Google排名
汽车网
喜来健
喜来健
喜来健
喜来健
喜来健
楼梯
楼梯
货架
光盘印刷
光盘刻录
光盘制作
货架
北京长途搬家
北京长途搬家公司
长途搬家
长途搬家公司
翻译公司
写字楼
显示屏
电子显示屏
Led显示屏
礼品
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
gtg10y
wow power leveling
wow power leveling
wow power leveling
wow power leveling
wow power leveling
wow power leveling
wow gold
wow gold
gonaseal
gonaseal
gonaseal
gonaseal
gonaseal
lomenxi
lomenxi
lomenxi
lomenxi
wow gold
wow gold
phone games
phone games
mobile Games
mobile Games
上海厂房
上海厂房
厂房出租
厂房出租
厂房租赁
厂房租赁
办公楼租赁
厂房
厂房
泵
水泵
环保设备
泵
泵
水泵
水泵
水泵
水泵
齿轮输油泵
齿轮输油泵
环保设备
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
wow gold
厂房租赁
厂房出租
水泵
齿轮输油泵
环保设备
北京婚庆
婚庆公司
北京婚庆公司
搬场公司
上海搬场公司
搬家公司
上海搬家公司
货架
汽车网
Google排名
北京猎头公司
直肠癌
胃癌
结肠癌
肝癌
乳腺癌
食道癌
肺癌
珍香胶囊
清肺散结丸
quilting machine
quilting machine
货架
喜来健
喜来健
喜来健
北京猎头
猎头公司
猎头
光盘刻录
光盘印刷
北京长途搬家
北京长途搬家
北京长途搬家公司
长途搬家
长途搬家公司
北京搬家公司
显示屏
电子显示屏
Led显示屏
翻译公司
写字楼
管道疏通
北京疏通管道
北京疏通下水道
北京管道疏通
北京高压清洗
清洗管道
北京海淀区管道疏通
北京密云区管道疏通
管理咨询
礼品
礼品公司
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
喜来健
World of Warcraft online audiencewow gold
wow gold
wow gold for the other exchanges, discussions, wow power leveling
wow power leveling
Rolexto express their point of view, the region responsible wow gold
World of Warcraft gold
wow power levelingfor the release of Warcraft in China Sifu global information, conversionof goldwow power leveling
wow power leveling
wow power leveling
wow power leveling
wow power leveling coins If the coins into cash, this is our site, please interested in online information, now we are rolex replica
replica rolex
Watches Rolexconducting activities If you are still not want to have money to buy gold coins, then we will be in the stands, the fastest time to your conversion, to strengthen the confidentiality of customer information, and to give you more convenience,
And online gamers can discount so on, Rolex Watches
Watch Rolex
Rolex Watchreplaced by two to 500 yuan Xiangpeng after a 1,000 yuan, not only can the efforts. Dianka in gold coins for the ling I was not successful things, the success of the concept is very empty.rs gold
Runescape Gold
RuneScape Money But the concept of a win, that is, how kind stay ahead of the competition. Gold coin into money wilal be mailed to the system of Warcraft gold
机票,深圳机票0755-88866618
http://www.szpiaopiao.cn
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
飞机票
深圳特价机票
深圳特价机票
深圳打折机票
深圳打折机票
深圳飞机票查询
深圳飞机票查询
深圳国际机票
深圳国际机票
深圳机票
深圳机票
深圳到北京机票
深圳到北京机票
深圳到上海机票
深圳到上海机票
深圳到成都机票
深圳到成都机票
深圳到重庆机票
深圳到重庆机票
深圳到哈尔滨机票
深圳到哈尔滨机票
深圳到南昌机票
深圳到南昌机票
深圳到福州机票
深圳到福州机票
深圳到三亚机票
深圳到三亚机票
深圳到桂林机票
深圳到桂林机票
深圳到贵阳机票
深圳到贵阳机票
深圳到海口机票
深圳到海口机票
深圳到合肥机票
深圳到合肥机票
深圳到昆明机票
深圳到昆明机票
深圳到济南机票
深圳到济南机票
深圳到乌鲁木齐机票
深圳到乌鲁木齐机票
深圳到太原机票
深圳到太原机票
深圳到西安机票
深圳到西安机票
深圳到沈阳机票
深圳到沈阳机票
深圳到长春机票
深圳到长春机票
深圳到兰州机票
深圳到兰州机票
深圳到大连机票
深圳到大连机票
深圳到郑州机票
深圳到郑州机票
深圳到呼和浩特机票
深圳到呼和浩特机票
深圳到天津机票
深圳到天津机票
深圳到重庆特价机票
深圳到长春特价机票
深圳到哈尔滨特价机票
深圳到沈阳特价机票
深圳到昆明特价机票
深圳到西安特价机票
深圳到北京特价机票
深圳到太原特价机票
深圳到上海特价机票
深圳到武汉特价机票
深圳到成都特价机票
深圳到石家庄特价机票
深圳到呼和浩特特价机票
深圳到兰州特价机票
深圳到合肥特价机票
深圳到乌鲁木齐特价机票
深圳到郑州飞机票
深圳到大连飞机票
深圳到北京飞机票
深圳到北京飞机票