CedeeCQ
CedeeCQ

Reputation: 45

Hashing a string in php

This is the hashed output "bWNgAQW2FLc" I want to possibly hash a specific string into that. Is there any method or coding that can possibly do the work?

Thank you very much for the replies!

PS: I do not know what hash type is that in the first place

Upvotes: 2

Views: 17739

Answers (1)

Precious Tom
Precious Tom

Reputation: 495

You can do this Using Simple inbuild Hash Function Available in PHP

<?php
  echo hash('ripemd160', 'Your text goes here');
?>

Source http://php.net/manual/en/function.hash.php

Upvotes: 8

Related Questions