3v4l.org

run code in 500+ PHP versions simultaneously
<?php // 生成新密码的哈希(比如把密码设为 admin123) $new_password = 'admin123'; $new_hash = password_hash($new_password, PASSWORD_BCRYPT); echo "新哈希值:$new_hash"; // 类似输出:$2y$10$xxxxx...

preferences:
47.13 ms | 764 KiB | 5 Q