PHP.nl

md5

md5

Calculate the md5 hash of a string

string **md5** string $string bool $binary

Calculates the MD5 hash of using the , and returns that hash. stringRSA Data Security, Inc. MD5 Message-Digest Algorithm

stringThe string.

binary If the optional is set to true, then the md5 digest is instead returned in raw binary format with a length of 16. binary

Returns the hash as a 32-character hexadecimal number.

Voorbeeld: A example

<?php
$str = 'apple';

if (md5($str) === '1f3870be274f6c49b3e31a0c6728957f') {
    echo "Would you like a green or red apple?";
}
?>

hash``password_hash