首页 > 开发 > PHP > 正文

从C/C++迁移到PHP——判断字符类型的函数

2024-05-04 22:59:12
字体:
来源:转载
供稿:网友

在c/c++中,头文件ctype.h中定义了关于字符类型一组宏,可以得到给定字符的类型。
而php中没有相关函数。前些天发现在www.mm4.de下载的php中提供了一个名为php_ctype.dll的扩展库,
加载后发现提供一部分此类的函数,特整理出来供大家参考。
在php中正确加载php_ctype.dll文件后,用<?php phpinfo();?>可以看到以下信息:
ctype
ctype functions enabled (experimental)
然后就可以使用它所提供的函数了。所有函数的用法同c/c++基本相同,区别在于在c/c++中函数的参数是
字符型(char),而在php中函数的参数可以是字符串(string)。例如:

<?php
$string="123adaadad";
if(isalnum($string))
{
echo "只有大小写字母和数字!";
}

?>

附:php_ctype.dll支持的函数
bool isalnum(string)
bool isalpha(string)
bool iscntrl(string)
bool isdigit(string)
bool isgraph(string)
bool islower(string)
bool isprint(string)
bool ispunct(string)
bool isspace(string)
bool isupper(string)
bool isxdigit(string)


 

国内最大的酷站演示中心!
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表