我需要一点帮助我想检查输入是否与掩码匹配
掩码是这样的:12.345.678/9012-34 (xx.xxx.xxx/xxxx-xx)
到目前为止我尝试过的是这个
$string = '12.345.678/9012-34';
if(!preg_match('/^[0-9]{2}.[0-9]{3}.[0-9]{3}/[0-9]{4}-[0-9]{2}$/', $string)) {
echo 'Doesnt match the mask!';
}
它没有成功。谢谢你的帮助。