Bcrypt hashes cannot be decrypted. To verify a password against a stored hash, use:
if (password_verify($input_password, $stored_hash)) { // Password is correct } else { // Incorrect password }
This lets you safely compare a user's input without ever storing or revealing the original password.