<?php
file_put_contents(
__DIR__.'/hash.class.php',
file_get_contents('https://raw.githubusercontent.com/emlog/emlog-ml/refs/heads/main/include/lib/passwordhash.php')
);
include (__DIR__.'/hash.class.php');
$password="1234";
$PHPASS = new PasswordHash(8, true);
$password = $PHPASS->HashPassword($password);
echo $password;
Комментарий: