关于邮箱验证的有关问题,请高手帮忙看一下
程序员文章站
2024-02-15 11:48:22
...
关于邮箱验证的问题,请高手帮忙看一下
if (!ereg("^[a-zA-Z0-9_.]+@([a-zA-Z0-9_]+.)+[a-zA-Z]{2,3}$", $email)){
帮看看这个有问题吗?能验证所有规则的邮箱吗?
[email protected]
[email protected]
[email protected]
另外邮箱中一般都是下划线“_”,但今天有人提出也有“-”这种划线的邮箱,请问以上代码如何修改可以让带有“-”这种划线的邮箱也通过?
[email protected]
------解决方案--------------------
if (!ereg("^[a-zA-Z0-9_.-]+@([a-zA-Z0-9_]+.)+[a-zA-Z]{2,3}$", $email)){
if (!ereg("^[a-zA-Z0-9_.]+@([a-zA-Z0-9_]+.)+[a-zA-Z]{2,3}$", $email)){
帮看看这个有问题吗?能验证所有规则的邮箱吗?
[email protected]
[email protected]
[email protected]
另外邮箱中一般都是下划线“_”,但今天有人提出也有“-”这种划线的邮箱,请问以上代码如何修改可以让带有“-”这种划线的邮箱也通过?
[email protected]
------解决方案--------------------
if (!ereg("^[a-zA-Z0-9_.-]+@([a-zA-Z0-9_]+.)+[a-zA-Z]{2,3}$", $email)){
相关文章
相关视频
上一篇: js和php邮箱地址验证的实现方法
下一篇: Select*一定不走索引是否正确?