<?php // 生成新密码的哈希(比如把密码设为 admin123) $new_password = 'admin123'; $new_hash = password_hash($new_password, PASSWORD_BCRYPT); echo "新哈希值:$new_hash"; // 类似输出:$2y$10$xxxxx...
You have javascript disabled. You will not be able to edit any code.