如何在php中为具有固定范围的数字preg_match?
我想在文本框中允许8位数字,而不以0开头。
例如12345678
以下是我的一段代码。
if(isset($_POST['submit1'])) {
if(empty($_POST["phone"]))
{
$error .= '<p><label class="text-danger">Please Enter your phone number</label></p>';
}
else{
if(!preg_match("/^[1-9][0-9]{8}$/",$PhNum))
{
$error .= '<p><label class="text-danger">Only 8 digit numbers are allowed</label></p>';
}
}
}
谢谢。
哆啦的时光机