How to calculate the md5 hash of a string in PHP

2 Answers

0 votes
// string md5( string $str [, bool $raw_output = false ])

$s = "hash of a string";

echo md5($s);

/*
run: 

d5d901406a33c7c636a1d697f0915555   

*/

 



answered Jul 4, 2016 by avibootz
0 votes
// string md5( string $str [, bool $raw_output = false ])

$s = "hash of a string";
echo md5($s) . "<br />";

if (md5($s) === 'd5d901406a33c7c636a1d697f0915555') 
    echo "Correct";
else
    echo "Not Correct";

/*
run: 

d5d901406a33c7c636a1d697f0915555
Correct  

*/

 



answered Jul 4, 2016 by avibootz

Related questions

1 answer 133 views
133 views asked Sep 25, 2023 by avibootz
1 answer 183 views
1 answer 118 views
1 answer 109 views
2 answers 121 views
121 views asked Nov 20, 2023 by avibootz
2 answers 214 views
2 answers 199 views
...