Skip to content

有害部落格同好會

2007/09/22 / php

UTF-8編碼時擷取字串和計算長度的函數

資料轉貼自: Lukin zone

改寫討論區程式時剛好需要用到

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
< ?php
// 支援中文的 substr(string,length[,start])
function cnsubstr($l1,$l2,$l3=0)
{
$I2 = "/[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]/";
preg_match_all($I2,$l1,$I3);
if (count($I3[0]) - $l3 > $l2) {
return implode('',array_slice($I3[0],$l3,$l2))."...";
}
return implode('',array_slice($I3[0],$l3,$l2));
}
 
// 計算中文字串長度
function len($l1)
{
$I2 = "/[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]/";
preg_match_all($I2,$l1,$I3);
return count($I3[0]);
}
?>

< ?php // 支援中文的 substr(string,length[,start]) function cnsubstr($l1,$l2,$l3=0) { $I2 = "/[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]/"; preg_match_all($I2,$l1,$I3); if (count($I3[0]) - $l3 > $l2) { return implode('',array_slice($I3[0],$l3,$l2))."..."; } return implode('',array_slice($I3[0],$l3,$l2)); } // 計算中文字串長度 function len($l1) { $I2 = "/[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]/"; preg_match_all($I2,$l1,$I3); return count($I3[0]); } ?>

Post navigation

Previous Post:

計算 pi

Next Post:

年輕漂亮MM想嫁有錢人….

分類

  • 新奇有趣の搶先報導
    • Raspberry Pi
    • 手機相關
    • 推薦軟體
    • 新鮮有趣
    • 生活資訊
  • 想破腦袋の程式技巧
    • Oracle EBS
    • Database
    • Excel, VBA
    • php
    • JavaScript, VBScript
    • VS.NET
    • Others
    • Windows
    • SAP
  • 撩動心弦の短文小品
  • 聚沙成塔の理財守則
  • 不可不知の職場實錄
  • 剎那永恆の生活翦影

近期文章

  • 受保護的內容: 如何透過Personalize功能呼叫另一form來回傳值
  • Win10 / 8 / 7 無法安裝 SSD
  • 受保護的內容: 樹梅派+遠端連線
  • EBS R12 取得客戶的phone, email, URL資料
  • 受保護的內容: 管控Workflow Administrator Role

友站

  • Masaya396's 協奏曲
  • 老塗的咁仔店

其他操作

  • 登入
  • 訂閱網站內容的資訊提供
  • 訂閱留言的資訊提供
  • WordPress.org 台灣繁體中文

Tag Cloud

你目前使用的瀏覽器不支援 HTML5 的 CANVAS 標籤。

  • 管理
  • MySql
  • Oracle DB
  • CSS
  • Win7
  • php
  • LDAP
  • WinXP
  • HTC
  • excel
  • VB6
  • Oracle EBS
  • VB.Net
  • 感情
  • SAP
  • EBS 11.5.10
  • javascript
  • SQL
  • EBS 12.1.3
  • VBA
© 2025 有害部落格同好會 - Powered by SimplyNews