What is the functionality of MD5 function in PHP?
Hi everyone,
The md5(string) function calculate the md5 hash of a string. The hash is a 32-character hexadecimal number.
Syntax :
md5(string,raw); string (required) : The string to be calculated raw (Optional) : Specifies hex or binary output format.
Thanks
Ads