PHP ctype函数总结

来源:互联网 发布:雅思写作解题思路知乎 编辑:程序博客网 时间:2024/04/29 12:40

今天翻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进制的字符串。
原创粉丝点击