check_password

過濾鉤子
apply_filters( 'check_password', $check, $password, $hash, $user_id )
引數
  • (bool) $check Whether the passwords match.
    Required:
  • (string) $password The plaintext password.
    Required:
  • (string) $hash The hashed password.
    Required:
  • (string|int) $user_id User ID. Can be empty.
    Required:
定義位置
相關勾子
check_passwordslost_passwordretrieve_passwordrandom_passwordpassword_hint
相關方法
wp_check_passwordcheck_password_reset_keyreset_passwordthe_post_passwordwp_set_passwordwp_hash_password
引入
2.5.0
棄用
-

check_password – 這是WordPress中的一個函式,用來檢查密碼的有效性: 該函式將使用者輸入的密碼與儲存的密碼雜湊進行比較,如果密碼匹配,則返回真。

過濾明文密碼是否與加密密碼相符。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
return apply_filters( 'check_password', $check, $password, $hash, $user_id );
return apply_filters( 'check_password', $check, $password, $hash, $user_id );
return apply_filters( 'check_password', $check, $password, $hash, $user_id );

常見問題

FAQs
檢視更多 >