Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Laravel 中,我如何验证电子邮件地址并强制它具有类似的后缀g.go.edu?
g.go.edu
如果您想接受所有带有 suffix 的电子邮件g.go.edu,您可以使用email和规则作为regex规则,例如:
email
regex
$rules['email'] = ['email', 'regex:/(.*)g\.go\.edu$/i'];