36459-vm/test_password.php
2026-05-27 14:29:58 +05:30

6 lines
154 B
PHP

<?php
$plain = "rs@123"; // nee type panna password
$hash = "$2y$10$abcdefghijklmnopqrstuv"; // DB password
var_dump(password_verify($plain, $hash));