email_exists

函数
email_exists ( $email )
参数
  • (string) $email The email to check for existence.
    Required:
返回值
  • (int|false) The user ID on success, false on failure.
定义位置
相关方法
domain_existsterm_existstag_existsusername_existsmetadata_exists
引入
2.1.0
弃用
-

email_exists: 这个函数检查数据库中的电子邮件地址是否存在。它把电子邮件地址作为唯一的参数,如果电子邮件地址在数据库中存在,则返回用户ID,否则返回false。

确定给定的电子邮件是否存在。

关于这个和类似的主题函数的更多信息,请查看《主题开发者手册》中的{@link Conditional Tags}文章。

function email_exists( $email ) {
	$user = get_user_by( 'email', $email );
	if ( $user ) {
		$user_id = $user->ID;
	} else {
		$user_id = false;
	}

	/**
	 * Filters whether the given email exists.
	 *
	 * @since 5.6.0
	 *
	 * @param int|false $user_id The user ID associated with the email,
	 *                           or false if the email does not exist.
	 * @param string    $email   The email to check for existence.
	 */
	return apply_filters( 'email_exists', $user_id, $email );
}

常见问题

FAQs
查看更多 >