在php中使用preg_match()函数判断字符串是否有大写字母,具体方法如下:
preg_match()函数作用:
php中preg_match()函数的作用是使用正则表达式匹配字符串中的值。
preg_match()函数语法:
int preg_match(string,$pattern)
参数:
string:需要判断的字符串。
$pattern:判断条件。
preg_match()函数使用方法:
if(preg_match('/[A-Z]/', $domain)){
echo TRUE;
}else{
echo FALSE;
}
}
如返回结果为TRUE,表示字符串中包含大写字母,返回结果为FALSE,则表示字符串中不包含大写字母。