What is the functionality of MD5 function in PHP?

What is the functionality of MD5 function in PHP?

View Answers

November 15, 2010 at 6:41 PM

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









Related Tutorials/Questions & Answers:
Advertisements