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 146 views
146 views asked Sep 25, 2023 by avibootz
1 answer 194 views
1 answer 132 views
1 answer 122 views
2 answers 135 views
135 views asked Nov 20, 2023 by avibootz
2 answers 227 views
2 answers 218 views
...