How to calculate the sha1 hash of a string in PHP

2 Answers

0 votes
$s = "programming"; 

echo sha1($s);


/*
run:
    
5b07397be4f36b2f3141c15eb8e7f5350250c48a 
       
*/

 



answered Jul 17, 2016 by avibootz
0 votes
$s = "programming"; 

if (sha1($s) == '5b07397be4f36b2f3141c15eb8e7f5350250c48a')
    echo "success";


/*
run:
    
success 
       
*/

 



answered Jul 17, 2016 by avibootz

Related questions

2 answers 199 views
2 answers 221 views
2 answers 248 views
1 answer 30 views
...