订阅所有JSP/Servlet的日志 订阅 | 这是最新一篇日志 上一篇 | 下一篇日志 下一篇 ]
php

php截取中文字符串

程序一:PHP截取中文字符串方法
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/******************************************************************
* 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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?
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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<?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 次评分)





文章来自: guoguo1980
标签: php 中文字符串 
评论: 28 | 查看次数: 1079
  • 共有 28 条评论
  • 1
  • 2
  • |
  • >>
游客 [2008-12-08 22:25:45]
游客 [2008-11-06 11:31:43]
8GB MP3 PLAYER
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.
游客 [2008-11-06 11:25:50]
1GB MP3 PLAYER A couple of people . 1gb mp3 players have posted about the Shattered Sun Peacekeepers slacking off on their jobs lately. best mp3 player quite possibly thanks . buy mp3 player to something Blizzard fed them . buy mp3 players in PatchIn their reports, they complain about Peacekeepers. cheap mp3 player attacking them for no reason, sometimes not even in retaliation for attacking (or defending yourself against). cheap mp3 players a member of the opposing faction. eve isk I can actually empathize with this as. gold wow I encountered the ill-placed wrath of the Peacekeepers myself when I rezzed my wife's toon in front of . hdro gold the Staging Area. lotro gold Without having done anything other. lotro gold than rezz, the Peacekeepers promptly charged . mp3 player and made short work of me. mp3 players
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.
游客 [2008-11-06 11:19:29]
buy wow gold Remember the WoW account hacking. buying gold world of warcraft If you're a WoW player. cheap wow gold you couldn't have missed . cheap wow gold any of the articles posting this issue. cheap wow gold Well, as it turns out, an article posted by . cheapest wow gold grimwell says that someone might have found the problem behind all the . eve isk account hacking, stealing and selling even 5 year's worth items. free online games A piece of the BBC news article says:"Analysis [. free online war games mp3 mp3 player ] showed that. mp3 players it lay dormant on a victims . mp4 machine until . online games they ran World of Warcraft (WoW) at which point it captured login data and sent it to. play war games the hacking group. sell wow gold The group's enthusiastic use of the cursor flaw suggests it is trying to . world of warcraft gold do the same again. wow The online fantasy game . wow gold now has more than eight million active players around the world. wow gold Research by security firm Symantec . wow gold suggests that the raw value of a WoW account is now higher. wow gold than a credit card and its associated verification data. wow gold "Normally, as a WoW player, you'd know about the risks involved魔兽 when creating an online account, yet some were . wow gold lazy enough not to check on their accounts every once in a while, thus resulting in their items . wow gold kaufen and WoW currency being stolen. wow gold kaufen Everyone knows that . stuff like that happen, some. even managed to hack the 游戏 Superbowl website and use it . to host code for spyware, so monitor the hell out of your computer!In an article I wrote yesterday about hackers seeing console users as the new target, there is a comment coming from Stefana Muller.
游客 [2008-10-29 15:38:46]
游客 [2008-10-29 15:37:46]
游客 [2008-10-29 13:56:23]
螺旋输送机螺旋输送机|除尘器布袋急救箱|医用纱布|医用绷带 加密狗加密狗分割器|凸轮|凸轮分割器|间歇分割器钢结构钢结构|住宅钢结构衬衫衬衫衬衫拖链拖链|软管|垫铁|输送链|排屑机|排屑器|钢制拖链垫铁软管离心风机|屋顶风机离心风机私人侦探|婚姻调查|调查私人侦探婚姻调查拉力机|拉力试验机|万能材料试验机|万能试验机|材料试验机|电子拉力试验机|万能材料拉力机万能材料拉力试验机水处理设备水处理设备液压千斤顶千斤顶|液压千斤顶|油缸|液压缸|液压工具|电动泵冷却塔冷却塔冷气毯冷气毯心理咨询婚外情心理咨询|婚外情kwh meter kwh meter|energy meter|electricity meter|prepayment meterenergy meter electricity meter 粉碎机|分级机粉碎机电子秤|衡器整流器滤布|筛网|无纺布|不锈钢冲孔网无纺布滤布|筛网|涤纶滤布|不锈钢筛网滤布筛网搅拌机|搅拌器|混合机|搅拌装置混合机搅拌机器 guangzhou hotel|hotels in Guangzhou|garden hotel guangzhou|dongfang hotel guangzhouhotels in Guangzhou北京商铺北京商铺 离心风机日语培训日语培训卷帘门卷帘门讨债讨债龙猫生产线输送机生产线|输送机|涂装设备涂装设备仿古家具仿古家具点钞机启闭机|卷扬机启闭机闸门闸门风机 老虎机上分器|老虎机定位器|水果机定位器|水果机上分器|老虎机破解器|老虎机干扰器|游戏机破解器|游戏机干扰器|老虎机遥控器老虎机上分器|老虎机定位器|老虎机干扰器|老虎机遥控器|游戏机上分器|游戏机干扰器|老虎机上分器干扰器|游戏机干扰器上分器北京厂房北京厂房北京厂房 老化试验箱减速电机|减速器 同声传译同声传译 无转子硫化仪|硫化仪|电脑硫化仪|橡胶硫化仪平板硫化机门尼粘度计|门尼粘度仪门尼粘度计仪强力机|电子拉力机|电脑拉力机|橡胶拉力机 熔体流动速率仪|熔指仪 拉力测试机拉力测试机开炼机开炼机开幅机|瓶盖滴塑机 北京私家侦探 玻璃钢风机凸轮分割器排烟风机排烟风机一体化净水器袜子紫铜管|H59-1黄铜管减速器风扇电机丝网印刷机丝印机齿轮减速机|减速机|蜗轮减速机 杭州监控山茶油
游客 [2008-10-28 11:00:47]
游客 [2008-10-25 13:47:46]
游客 [2008-10-20 15:25:25]
游客 [2008-10-20 15:25:25]
游客 [2008-10-15 15:52:55]
游客 [2008-10-13 22:21:49]
游客 [2008-09-27 15:02:25]
156ply
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
游客 [2008-09-25 00:33:09]
国庆节十一

机票,深圳机票0755-88866618
http://www.szpiaopiao.cn
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票
机票  
机票
飞机票
深圳特价机票
深圳特价机票
深圳打折机票
深圳打折机票
深圳飞机票查询
深圳飞机票查询
深圳国际机票
深圳国际机票
深圳机票
深圳机票
深圳到北京机票
深圳到北京机票
深圳到上海机票
深圳到上海机票
深圳到成都机票
深圳到成都机票
深圳到重庆机票
深圳到重庆机票
深圳到哈尔滨机票
深圳到哈尔滨机票
深圳到南昌机票
深圳到南昌机票
深圳到福州机票
深圳到福州机票
深圳到三亚机票
深圳到三亚机票
深圳到桂林机票
深圳到桂林机票
深圳到贵阳机票
深圳到贵阳机票
深圳到海口机票
深圳到海口机票
深圳到合肥机票
深圳到合肥机票
深圳到昆明机票
深圳到昆明机票
深圳到济南机票
深圳到济南机票
深圳到乌鲁木齐机票
深圳到乌鲁木齐机票
深圳到太原机票
深圳到太原机票
深圳到西安机票
深圳到西安机票
深圳到沈阳机票
深圳到沈阳机票
深圳到长春机票
深圳到长春机票
深圳到兰州机票
深圳到兰州机票
深圳到大连机票
深圳到大连机票
深圳到郑州机票
深圳到郑州机票
深圳到呼和浩特机票
深圳到呼和浩特机票
深圳到天津机票
深圳到天津机票
深圳到重庆特价机票
深圳到长春特价机票
深圳到哈尔滨特价机票
深圳到沈阳特价机票
深圳到昆明特价机票
深圳到西安特价机票
深圳到北京特价机票
深圳到太原特价机票
深圳到上海特价机票
深圳到武汉特价机票
深圳到成都特价机票
深圳到石家庄特价机票
深圳到呼和浩特特价机票
深圳到兰州特价机票
深圳到合肥特价机票
深圳到乌鲁木齐特价机票
深圳到郑州飞机票
深圳到大连飞机票
深圳到北京飞机票
深圳到北京飞机票
  • 共有 28 条评论
  • 1
  • 2
  • |
  • >>
发表评论
昵 称:  登录
内 容:
选 项:
字数限制 1000 字 | UBB代码 开启 | [img]标签 开启