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として bothemailとregexrules を使用できます。次に例を示します。
email
regex
$rules['email'] = ['email', 'regex:/(.*)g\.go\.edu$/i'];