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.
可能重复: 如何检查电子邮件是否有效?
filter_var('test@test.com', FILTER_VALIDATE_EMAIL)
验证电子邮件的简单方法只需使用 type="email"
例子
<form> <input type="email" name="email"> <input type="submit" name="submit"> </form>