How to validate PAN No and Bank account number usi

2019-08-18 02:40发布

I need to validate pan number and bank account number fields. How can I do that using php? I have to implement this validation in civicrm custom form. civicrm has any built in function for these two validations.

1条回答
老娘就宠你
2楼-- · 2019-08-18 03:35

Pan number validation regular expression

if (!preg_match("/^([a-zA-Z]){5}([0-9]){4}([a-zA-Z]){1}?$/", $pannumber)) {
  echo "Invalid pan number";
}
查看更多
登录 后发表回答