How to validate a email address domain in Laravel?

左心房为你撑大大i 提交于 2019-12-07 15:57:34

问题


In Laravel, how do I validate an email address and force it to have a suffix like g.go.edu?


回答1:


If you want to accept all emails that have suffix g.go.edu, you can use as rule both email and regex rules, for example:

$rules['email'] = ['email', 'regex:/(.*)g\.go\.edu$/i'];


来源:https://stackoverflow.com/questions/29720750/how-to-validate-a-email-address-domain-in-laravel

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!