donglingyi4679 2013-10-06 15:40
浏览 55
已采纳

表单字段验证自定义电子邮件要求

Looking to create a form validation on email text field. Have previously used validation to ensure correct email is produced.

But here looking to create a more custom rule which allows only emails ending in the format .ac.uk

Here a user would be able to provide any university/college/instituion as long as the last 6 characters in the string = .ac.uk with the general format for the mail as follows: email@university.ac.uk

Solution preferably in PHP, currently looking at employing a rule using the end part in this statement:

^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$

Making this part *(\.[a-z]{2,3}) relate to the .ac.uk

many thanks, much appreciated Jeanclaude

  • 写回答

1条回答 默认 最新

  • duan2477 2013-10-06 15:44
    关注

    I would first run the email through filter_var($email, FILTER_VALIDATE_EMAIL) rather than using a simple regex. It's not perfect (I've found a few edge cases that don't validate correctly) but it works well. Once you know it's a valid email address you can simply trust substr($email, -6) == '.ac.uk' and be done with it. Something like:

    if (filter_var($email, FILTER_VALIDATE_EMAIL) 
        && strtolower(substr(trim($email), -6))) === '.ac.uk') {
    
        // Valid
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统