计算字符串的长度(汉字按照两个字符计算) <? function str_len($str) { $length = strlen(preg_replace('/[\x00-\x7F]/', '', $str)); if ($length) { return strlen($str) - $length + intval($length / 3) * 2; } else { return strlen($str); } } ?> 分类: PHP Tags: PHP 函数PHP字符串操作 寒林 www.3code.cn 专注WordPress企业主题