md5
Description
Syntax
md5( string $string, bool $binary = false ): string
Parameters
string
The string.
binary
If the optional binary is set to true, then the md5 digest is instead returned in raw binary format with a length of 16.
Return
Returns the hash as a 32-character hexadecimal number.
Examples
1 · string
<? $string = 'hello'; $return = md5($string); echo $return; ?>
5d41402abc4b2a76b9719d911017c592
2 · binary
<? $string = 'hello'; $binary = true; $return = md5($string, $binary); echo $return . PHP_EOL; $unpack = unpack('H*', $return); $array_pop = array_pop($unpack); echo $array_pop; ?>
]A@*�K*v�q��Œ 5d41402abc4b2a76b9719d911017c592
Links
Related
String
- addcslashes
- addslashes
- bin2hex
- chop
- chr
- chunk_split
- convert_uudecode
- convert_uuencode
- count_chars
- crc32
- crypt
- echo
- explode
- fprintf
- get_html_translation_table
- hebrev
- hebrevc
- hex2bin
- html_entity_decode
- htmlentities
- htmlspecialchars
- htmlspecialchars_decode
- implode
- join
- lcfirst
- levenshtein
- localeconv
- ltrim
- md5_file
- metaphone
- nl_langinfo
- nl2br
- number_format
- ord
- parse_str
- printf
- quoted_printable_decode
- quoted_printable_encode
- quotemeta
- rtrim
- setlocale
- sha1
- sha1_file
- similar_text
- soundex
- sprintf
- sscanf
- str_contains
- str_decrement
- str_ends_with
- str_getcsv
- str_increment
- str_ireplace
- str_pad
- str_repeat
- str_replace
- str_rot13
- str_shuffle
- str_split
- str_starts_with
- str_word_count
- strcasecmp
- strchr
- strcmp
- strcoll
- strcspn
- strip_tags
- stripcslashes
- stripos
- stripslashes
- stristr
- strlen
- strnatcasecmp
- strnatcmp
- strncasecmp
- strncmp
- strpbrk
- strpos
- strrchr
- strrev
- strripos
- strrpos
- strspn
- strstr
- strtok
- strtolower
- strtoupper
- strtr
- substr
- substr_compare
- substr_count
- substr_replace
- trim
- ucfirst
- ucwords
- vfprintf
- vprintf
- vsprintf
- wordwrap