PHP ctype函数总结
时间:2011-03-28 来源:confusing
今天翻PHP的文档 偶然看到ctype函数 觉得很好用 记录下来以备后用:
Ctype 函数
Table of Contents
- ctype_alnum — Check for alphanumeric character(s) 检查字符串中只包含数字或字母,相当于正则[A-Za-z0-9]. 有返回值。
- ctype_alpha — Check for alphabetic character(s) 检查字符串中只包含字母。 有返回值。
- ctype_cntrl — Check for control character(s) 检查字符串中是否只包含" '\n' '\r' '\t' " 这样的控制字符。 有返回值
- ctype_digit — Check for numeric character(s) 检查字符串中是否只包含数字。 有返回值。
- ctype_graph — Check for any printable character(s) except space 检查字符串中是否只包含可以输出的字符。 有返回值。
- ctype_lower — Check for lowercase character(s) 检查字符串中是否只包含小写的英文字母。 有返回值。
- ctype_print — Check for printable character(s) 检查字符串中是否只包含可以打印的字符。 有返回值。
- ctype_punct — Check for any printable character which is not whitespace or an alphanumeric character 检查字符串中是否只包含可以打印的字符,并且这样字符不能是非空格、数字、字符。 有返回值。
- ctype_space — Check for whitespace character(s) 检查字符串中是否只包含空格或者" " . 有返回值
- ctype_upper — Check for uppercase character(s) 检查字符串中是否只包含大写的英文字母。 有返回值。
- ctype_xdigit — Check for character(s) representing a hexadecimal digit 检查字符串中是否是16进制的字符串。
相关阅读 更多 +