JSlip  1.0
chk_pw.php
Go to the documentation of this file.
1 <?php
2 function chkPasswd($passwd) {
3  echo $passwd . ' : ' . password_hash($passwd, PASSWORD_DEFAULT) . "\n";
4 }
5 
6 chkPasswd('root66');
7 chkPasswd('guest');
chkPasswd
chkPasswd($passwd)
Definition: chk_pw.php:2