描述
更多类似的主题函数信息,请查看主题开发手册中的条件标签文章。
参数
-
(string)(必填) 检查是否存在的电子邮件。
返回
(int|false) 成功时为用户ID,失败时为false。
说明
此函数将检查给定的电子邮箱地址($email)是否已注册到用户名,并返回该用户ID(如果不存在,则返回false)。另见username_exists。
此函数通常在用户注册时使用,以确保用户试图注册的电子邮件地址尚未注册。
源码
更新日志
版本 | 描述 |
---|---|
2.1.0 | 开始引入 |
使用示例
示例
如果电子邮件存在,则回显电子邮件注册的ID号。否则,告诉查看者它不存在。$email = 'myemail@example.com'; $exists = email_exists( $email ); if ( $exists ) { echo "That E-mail is registered to user number " . $exists; } else { echo "That E-mail doesn't belong to any registered users on this site"; }
请记住:
SHORTINIT
中没有定义此函数