织梦dedecms php常用函数
function checkStr($str){
$output=”;
$a=ereg(‘[‘.chr(0xa1).’-‘.chr(0xff).’]’, $str);
$b=ereg(‘[0-9]’, $str);
$c=ereg(‘[a-zA-Z]’, $str);
if($a && $b && $c){ $output=’1′;}
elseif($a && $b && !$c){ $output=’2′;}
elseif($a && !$b && $c){ $output=’3′;}
elseif(!$a && $b && $c){ $output=’4′;}
elseif($a && !$b && !$c){ $output=’5′;}
elseif(!$a && $b && !$c){ $output=’6′;}
elseif(!$a && !$b && $c){ $output=’7′;}
else{ $output = 8;}
return $output;
}
1 : 汉字数字英文的混合字符串
2 : 汉字数字的混合字符串
3 : 汉字英文的混合字符串
4 : 数字英文的混合字符串
5 : 纯汉字
6 : 纯数字
7 : 纯英文
8 : 其它
☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦dedecms php常用函数
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦dedecms php常用函数