時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)
1、截取GB2312字符用的函數(shù)
php //截取中文字符串 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; } ?> |
2. 截取utf8編碼的多字節(jié)字符串
php //截取utf8字符串 function?utf8Substr($str, $from, $len) { ?? return?preg_replace('#^(?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,'.$from.'}'. ?? '((?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,'.$len.'}).*#s', ?? '$1',$str); } ?> |
3. UTF-8、GB2312都支持的漢字截取函數(shù)
php /* Utf-8、gb2312都支持的漢字截取函數(shù) cut_str(字符串, 截取長度, 開始長度, 編碼); 編碼默認(rèn)為 utf-8 關(guān)鍵詞標(biāo)簽:PHP,截取字符串函數(shù) 相關(guān)閱讀
熱門文章 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 2021年最好用的10款php開發(fā)工具推薦 php利用淘寶IP庫獲取用戶ip地理位置 在 PHP 中使用命令行工具 相關(guān)下載 人氣排行 詳解ucenter原理及第三方應(yīng)用程序整合思路、方法 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 PHP中防止SQL注入攻擊 PHP會話Session的具體使用方法解析 PHP運行出現(xiàn)Notice : Use of undefined constant 的解決辦法 PHP如何清空mySQL數(shù)據(jù)庫 CakePHP程序員必須知道的21條技巧 PHP采集圖片實例(PHP采集)
|