function ChgTitle($title)
{
$length = 46;
if (strlen($title)>$length) {
$temp = 0;
for($length) {
$temp = 0;
for($ i=0; $iif (ord($title[$i]) > 128)
$temp ;
if ($temp%2 == 0)
$title = substr($title,0,$length)."...";
else
$title = substr($title,0,$length 1)."...";
}
return $title;
}
原理就是截斷一個字符,看看其ascII碼是不是大於128,如果是,說明截斷的是一個全角漢字,那麼就退後一個截斷。用$length控制長度
備註:循環判斷字串裡面的>128 的字元數,如果半角字元為偶數,則表示位置剛好為整個漢字,如果為奇數,則為半個漢字,需要取下一個字元
function ChgTitle($title) { $length = 46; if (strlen($title)$length) { $length) { $$ temp = 0; for($i=0; $i$length; $i ) if (ord($title[$i]) 128) $temp ; if ($temp%2 == 0) $title = substr( $tit...