這篇文章將為大家詳細(xì)講解有關(guān)smarty中英文多編碼字符出現(xiàn)亂碼如何解決,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),大城企業(yè)網(wǎng)站建設(shè),大城品牌網(wǎng)站建設(shè),網(wǎng)站定制,大城網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷,網(wǎng)絡(luò)優(yōu)化,大城網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力。可充分滿足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。一般網(wǎng)站頁(yè)面的顯示都不可避免的會(huì)涉及子字符串的截取,這個(gè)時(shí)候truncate就派上用場(chǎng)了,但是它只適合英文用戶,對(duì)與中文用戶來(lái)說(shuō),使用 truncate會(huì)出現(xiàn)亂碼,而且對(duì)于中文英文混合串來(lái)說(shuō),截取同樣個(gè)數(shù)的字符串,實(shí)際顯示長(zhǎng)度上卻不同,視覺(jué)上會(huì)顯得參差不齊,影響美觀。這是因?yàn)橐粋€(gè)中文的長(zhǎng)度大致相當(dāng)于兩個(gè)英文的長(zhǎng)度。此外,truncate也不能同時(shí)兼容GB2312, UTF-8等編碼。
改良的smartTruncate: 文件名:modifier.smartTruncate.php
具體代碼如下:
<?php
function smartDetectUTF8($string)
{
static $result = array();
if(! array_key_exists($key = md5($string), $result))
{
$utf8 = "
/^(?:
[\x09\x0A\x0D\x20-\x7E] # ASCII
| [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
| \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
| [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
| \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
| \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
| [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
| \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
)+$/xs
";
$result[$key] = preg_match(trim($utf8), $string);
}
return $result[$key];
}
function smartStrlen($string)
{
$result = 0;
$number = smartDetectUTF8($string) ? 3 : 2;
for($i = 0; $i < strlen($string); $i += $bytes)
{
$bytes = ord(substr($string, $i, 1)) > 127 ? $number : 1;
$result += $bytes > 1 ? 1.0 : 0.5;
}
return $result;
}
function smartSubstr($string, $start, $length = null)
{
$result = '''';
$number = smartDetectUTF8($string) ? 3 : 2;
if($start < 0)
{
$start = max(smartStrlen($string) + $start, 0);
}
for($i = 0; $i < strlen($string); $i += $bytes)
{
if($start <= 0)
{
break;
}
$bytes = ord(substr($string, $i, 1)) > 127 ? $number : 1;
$start -= $bytes > 1 ? 1.0 : 0.5;
}
if(is_null($length))
{
$result = substr($string, $i);
}
else
{
for($j = $i; $j < strlen($string); $j += $bytes)
{
if($length <= 0)
{
break;
}
if(($bytes = ord(substr($string, $j, 1)) > 127 ? $number : 1) > 1)
{
if($length < 1.0)
{
break;
}
$result .= substr($string, $j, $bytes);
$length -= 1.0;
}
else
{
$result .= substr($string, $j, 1);
$length -= 0.5;
}
}
}
return $result;
}
function smarty_modifier_smartTruncate($string, $length = 80, $etc = ''...'',
$break_words = false, $middle = false)
{
if ($length == 0)
return '''';
if (smartStrlen($string) > $length) {
$length -= smartStrlen($etc);
if (!$break_words && !$middle) {
$string = preg_replace(''/\s+?(\S+)?$/'', '''', smartSubstr($string, 0, $length+1));
}
if(!$middle) {
return smartSubstr($string, 0, $length).$etc;
} else {
return smartSubstr($string, 0, $length/2) . $etc . smartSubstr($string, -$length/2);
}
} else {
return $string;
}
}
?>
以上代碼完整實(shí)現(xiàn)了truncate的原有功能,而且可以同時(shí)兼容GB2312和UTF-8編碼,在判斷字符長(zhǎng)度的時(shí)候,一個(gè)中文字符算1.0,一個(gè)英文字符算0.5,所以在截取子字符串的時(shí)候不會(huì)出現(xiàn)參差不齊的情況.
插件的使用方式?jīng)]有特別之處,這里簡(jiǎn)單測(cè)試一下:
{$content|smartTruncate:5:".."}($content等于"A中B華C人D民E共F和G國(guó)H")
顯示:A中B華C.. (中文符號(hào)長(zhǎng)度算1.0,英文符號(hào)長(zhǎng)度算0.5,并且考慮省略符號(hào)的長(zhǎng)度)
不管你是使用GB2312編碼還是UTF-8編碼,你會(huì)發(fā)現(xiàn)結(jié)果都正確,這也是為什么我在插件名字里加上smart字樣的原因之一。
關(guān)于smarty中英文多編碼字符出現(xiàn)亂碼如何解決就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
新聞標(biāo)題:smarty中英文多編碼字符出現(xiàn)亂碼如何解決-創(chuàng)新互聯(lián)
文章轉(zhuǎn)載:http://www.rwnh.cn/article40/dcpgho.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供建站公司、搜索引擎優(yōu)化、響應(yīng)式網(wǎng)站、動(dòng)態(tài)網(wǎng)站、定制網(wǎng)站、做網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容