OP vroeg hoe dit te doen in php. Zo doe je het in php:
function sqlPassword($input) {
$pass = strtoupper(
sha1(
sha1($input, true)
)
);
$pass = '*' . $pass;
return $pass;
}
Toegevoegd voor het nageslacht (geen reden waarom je dit zou gebruiken, gebruik het als mysql besluit het PASSWORD
af te schaffen functie?, alleen voor informatieve doeleinden) het mysql-equivalent van het php-equivalent
SELECT
UPPER(
CONCAT('*', SHA1(UNHEX(SHA1('password'))))
)
Zie ook MySQL Hashing Function Implementation