2020-04-21 / 3032阅
网页开发中,我们会用到修改密码的功能,在wordpress中我们可以通过登录函数判断用户密码是否正确,也可以使用下面的代码检测用户输入的密码是否正确。
global $current_user; require_once( ABSPATH.'/wp-includes/class-phpass.php'); $wp_hasher = new PasswordHash(8, TRUE); $password_hashed = $current_user->user_pass; //获取当前用户的密码 $plain_password = 'admin'; //用户输入的密码 if($wp_hasher->CheckPassword($plain_password, $password_hashed)) { //开始比对密码 echo "密码正确"; } else { echo "密码不正确"; }
阅读文章或者观看视频过程中有任何问题,请下方留言或者联系我Q248758228