我需要指定字符串的类型是否以 3 个数字、3 个字母或组合开头。用户键入的字符串。
我的代码适用于字母和数字,但不适用于组合。我应该怎么办?
$type = substr($value, 0, 3);
if(is_numeric($type)){
echo 'starts with 3 digits';
}elseif(is_string($type)){
echo 'starts with 3 alphabetic characters';
}else{
echo 'undefined type?';
}