被遗忘了的Character Type Functions
一直判断字符的时候都是自己写的函数,突然发现PHP其实内置了这些函数,有很多都是比较好的。
性能上没有去比较,但我想用内置的函数至少会减少开发时代码量吧,哈哈
ctype_alnum — Check for alphanumeric character(s)
检测是否是只包含[A-Za-z0-9]ctype_alpha — Check for alphabetic character(s)
检测是否是只包含[A-Za-z]ctype_cntrl — Check for control character(s)
检查是否是只包含类是“\r\b\t”之类的字符控制字符ctype_digit — Check for numeric character(s)
检查时候是只包含数字字符的字符串(0-9)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)
检查是否是只包含类是“\r\b\t”之类的字符和空格ctype_upper — Check for uppercase character(s)
检查是否所有的字符都是英文字母,并且都是大写的ctype_xdigit — Check for character(s) representing a hexadecimal digit
检查是否是16进制的字符串,只能包括“0123456789abcdef”
关于安装PHP手册是这样说的:
标签:Function, PHPBeginning with PHP 4.2.0 these functions are enabled by default. For older versions you have to configure and compile PHP with –enable-ctype. You can disable ctype support with –disable-ctype.
PHP 的 Windows 版本已经内置该扩展模块的支持。无需加载任何附加扩展库即可使用这些函数。
注意: Builtin support for ctype is available with PHP 4.3.0.