验证php中的id号

时间:2015-04-22 07:46:24

标签: php regex validation

html格式的形式如下所示:

 <tr style="height:15px;"><td></td></tr>
 <tr>
   <td>ID Card No<br /></td>
 </tr>
 <tr>
 <td><input class="input" style="width:300" size="20" type="text" name="id" maxlength="5"/></td>
 </tr>

如何以PHP格式验证身份证号码(例如A1234)?

1 个答案:

答案 0 :(得分:3)

接受one upper char and four digits的正则表达式应该是:

$str = 'A1234';
$result = preg_match('~^[A-Z]\d{4}$~', $str);
print_r($result); // true | false