检查手机号码是否在 PHP 字符串中
Check Moblie Number or Not in PHP String
我是 PHP 的新人。我知道如何检查字符串号码或不使用 is_numeric
但我想检查手机号码添加 +
就我而言
$mobile = "+15666886345" ;
if($mobile) {
// Valid Mobile Number
}
else {
// Not Valid Mobile Number
}
如何检查这个案例
您可以使用php preg_match()函数来匹配如下字符串
if(!preg_match('/^[0-9 +-]*$/', $mobile)){
// Valid Mobile Number
}else{
// Not Valid Mobile Number
}
我是 PHP 的新人。我知道如何检查字符串号码或不使用 is_numeric
但我想检查手机号码添加 +
就我而言
$mobile = "+15666886345" ;
if($mobile) {
// Valid Mobile Number
}
else {
// Not Valid Mobile Number
}
如何检查这个案例
您可以使用php preg_match()函数来匹配如下字符串
if(!preg_match('/^[0-9 +-]*$/', $mobile)){
// Valid Mobile Number
}else{
// Not Valid Mobile Number
}