Home >> PHP >> md5() function in PHP

md5() function in PHP

Calculate the md5 hash of a string and used for RSA Data Security, Inc. MD5 Message-Digest Algorithm.

Syntax

md5(string,raw)

Example

$string="Hellobro";
echo md5($string);

Output

dc44f1404e6e147f92362f80ea43bec0

Post Your Comment

Next Questions
metaphone() function
money_format() function
nl2br() function
number_format() function
ord() function
parse_str() function
printf() function
quotemeta() function
rtrim() function
sha1() function
sha1_file() function
similar_text() function
str_ireplace() function
str_pad() function
str_repeat() function
str_replace() function
str_shuffle() function
str_split() function
str_word_count() function
strcasecmp() function
strchr() function
strcmp() function
strcspn() function
strip_tags() function
stripslashes() function

Copyright ©2022 coderraj.com. All Rights Reserved.