The md5 method is used to convert the string value into md5 value.
The syntax is,
string md5 ( string $str [, bool $raw_output ] )
Parameters
str : The string.
raw_output : If the optional raw_output is set to TRUE, then the md5 digest is instead returned in raw binary format with a length of 16. Defaults to FALSE.
For Example,
echo “The MD5 value of ‘ForDevelopers’ is ” . md5(“ForDevelopers”);
Popularity: 1% [?]

November 21st, 2008
admin
Posted in 
