function generalStrLength($str){ if(function_exists('mb_strlen')){ return mb_strlen( $str , 'utf-8' ); } return count(preg_split('//u', $str)) - 2; }