ctype---php中被遗忘字符串处理的函数

要用的地方还是比较多。

ctype_alnum -- Check for alphanumeric character(s)
检测是否是只包含[A-Za-z0-9]
函数原型: boll ctype_alnum(string text);

ctype_alpha -- Check for alphabetic character(s)
检测是否是只包含[A-Za-z]
函数原型: boll ctype_alpha(string text);

ctype_cntrl -- Check for control character(s)
检查是否是只包含类是“ ”之类的字符控制字符
函数原型: boll ctype_cntrl (string text);

ctype_digit -- Check for numeric character(s)
检查时候是只包含数字字符的字符串(0-9)
函数原型: boll ctype_digit (string text);

ctype_graph -- Check for any printable character(s) except space
检查是否是只包含有可以打印出来的字符(除了空格)的字符串
函数原型: boll ctype_graph (string text);

ctype_lower -- Check for lowercase character(s)
检查是否所有的字符都是英文字母,并且都是小写的
函数原型: boll ctype_lower (string text);

ctype_print -- Check for printable character(s)
检查是否是只包含有可以打印出来的字符的字符串
函数原型: boll ctype_print (string text);

ctype_punct -- Check for any printable character which is not whitespace or an alphanumeric character
检查是否是只包含非数字/字符/空格的可打印出来的字符
函数原型: boll ctype_punct (string text);

ctype_space -- Check for whitespace character(s)
检查是否是只包含类是“ ”之类的字符和空格
函数原型: boll ctype_space (string text);

ctype_upper -- Check for uppercase character(s)
检查是否所有的字符都是英文字母,并且都是大写的
函数原型: boll ctype_upper (string text);

ctype_xdigit -- Check for character(s) representing a hexadecimal digit
检查是否是16进制的字符串,只能包括“0123456789abcdef”
函数原型: boll ctype_xdigit (string text);

可以代替preg_match的一些应用,很不错,这样简单的正则可以不用写了直接用内部函数判断

来源:http://hi.baidu.com/devin_he/blog/item/248a3b11a996c8cda7ef3fb9.html

posted @ 2011-03-28 17:01  wgw8299  阅读(283)  评论(0)    收藏  举报