Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,892 questions

51,823 answers

573 users

How to generate a hash value from a string in PHP

2 Answers

0 votes
// string hash ( string $algo , string $data [, bool $raw_output = false ] )
// algo - Name of hashing algorithm (e.g. "md5", "sha256", "haval160,4", etc..)

echo hash('ripemd160', 'A vertical search engine focuse on a specific topic');


/*
run:

580f7bd33cc3c1ae35de139bbacfd980cbcfa46d

*/

 



answered Jun 26, 2016 by avibootz
0 votes
// string hash ( string $algo , string $data [, bool $raw_output = false ] )
// algo - Name of hashing algorithm (e.g. "md5", "sha256", "haval160,4", etc..)

echo hash('tiger192,3', 'A vertical search engine focuse on a specific topic');


/*
run:

13e4a0815fdcdb2522301fc8a0db48c9d7014ffcd49614e3

*/

 



answered Jun 26, 2016 by avibootz

Related questions

1 answer 161 views
2 answers 167 views
167 views asked Oct 12, 2019 by avibootz
1 answer 180 views
1 answer 167 views
167 views asked Jul 19, 2016 by avibootz
...