时间:2024-03-09
WordPress函数email_exists用于检测指定邮箱用户是否存在,如果存在就返回该用户的ID。
email_exists( string $email )
字符串
用户邮箱地址。
如果用户名存在,返回该用户的ID,否则返回false
$email = 'service@tiezhushuo.com'; $exists = email_exists($email); if($exists) { echo "用户的ID是:" . $exists; } else { echo "没有找到相关的用户"; }
email_exists()函数位于:wp-includes/user.php
相关函数:
get_user_by()
edit_user()
register_new_user()
wp_insert_user()
username_exists()
Copyright © 2019-2024 asp.cyou