How many @ symbol can be in an email address?

前端 未结 6 1265
旧巷少年郎
旧巷少年郎 2020-11-30 11:05

Is there any rule for having a specified amount of @ symbol in any email id. Just come to my mind if we\'re to check if an email id is valid or not using PHP.

6条回答
  •  無奈伤痛
    2020-11-30 11:59

    There can be any number (within the size limits of an email address) except that the last one must be the separator between the domain name and the "local part".

    If an @ or any other "unusual" characters (as defined by RFC 5322) exist in the local part it MUST appear in quotes, e.g: "user@something"@example.com

提交回复
热议问题