/*
我们在处理中文数据时,经常要处理一些情况,下面就是针对
这些情况,我做的一些函数,已经用在了实践中
如果有问题,请与我联系
OICQ: 86804
*/
# 判断某个位置是中文字符的左还是右半部分,或不是中文
# 返回值 -1 左 0 不是中文字符 1 右
# 用法
/*
$a = 'this is 中文';
print is_chinese($a, 1); // 0
print is_chinese($a,8); // -1
print is_chinese($a,9); // 1
*/
以下为引用的内容: function is_chinese(&$str, $location) { $ch = true; $i = $location; while(ord($str[$i])>0xa0 && $i >= 0) { $ch = !$ch; $i --; } if($i != $location) { $f_str = $ch ? 1: -1; } else { $f_str = false; } return $f_str; } |
以下为引用的内容: function cstrrev(&$str) { $long = strlen($str); for( $f_str='', $chinese=false, $i= $long-1; $i>=0; $i--) { if(ord($str[$i]) > 0xa0) { $chinese = !$chinese; if($chinese == false) { $f_str .= $str[$i].$str[$i 1]; } } else { $f_str .= $str[$i]; } } return $f_str; } |
以下为引用的内容: function csubstr(&$str, $start=0, $long=0, $ltor=true, $cn_len=2) { if($long == 0) $long = strlen($str); if($ltor == false) $str = cstrrev($str); if($cn_len == 1) { for($i=0, $fs=0; $i<$start; $fs ) $i = (ord($str[$fs]) <= 0xa0) ? 1 : 0.5; for($i=0, $fe=$fs; $i<$long; $fe ) $i = (ord($str[$fe]) <= 0xa0) ? 1 : 0.5; $long = $fe - $fs; } else { $fs = (is_chinese( $str, $start) == 1) ? $start - 1 : $start; $fe = $long $start - 1; $end = ( is_chinese($str, $fe) == -1 ) ? $fe -1 : $fe; $long = $end - $fs 1; } $f_str = substr($str, $fs, $long); if($ltor == false) $f_str = cstrrev($f_str); return $f_str; } |
以下为引用的内容: function cleft(&$str, $long, $cn_len=2) { $f_str = csubstr($str, 0, $long, true, $cn_len); return $f_str; } |
以下为引用的内容: function cright(&$str, $long, $cn_len=2) { $f_str = cstrrev($str); $f_str = csubstr($f_str, 0, $long, true, $cn_len); $f_str = cstrrev($f_str); return $f_str; } |
以下为引用的内容: function ctext_wrap(&$text, $width=60, $br="<BR>") { $lines = explode("n",$text); $rows = count($lines); for($i=0; $i<$rows; $i ) { $len = strlen($lines[$i]); for($j=0; $j<$len; $j =$width) { $p = $j $width - 1; $k = 0; if($p<$len) { while(!is_chinese($lines[$i], $p) && $lines[$i][$p] != ' ' && $p>$j) { $k ; $p --; } if($p == $j) $k = 0; } $f_str .= csubstr($lines[$i], $j, $width- $k) . $br; $j -= $k; } } return $f_str; } |