How many @ symbol can be in an email address?

前端 未结 6 1273
旧巷少年郎
旧巷少年郎 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:54

    To check for a valid email adress I should use the filter_var function. It will validate the string and return true or false. You don't have to think about regular expressions.

提交回复
热议问题