Najnowsze tutoriale tworzenie stron internetowych
 

PHP md5() Function

<String referencyjny PHP

Przykład

Oblicz hash MD5 napisu "Hello" :

<?php
$str = "Hello";
echo md5($str);
?>
Uruchomić przykład »

Definicja i Wykorzystanie

md5() oblicza MD5 napisu.

md5() funkcja wykorzystuje RSA Data Security, Inc. MD5 Message-Digest Algorithm.

Z RFC 1321 - MD5 Message-Digest Algorithm: "The MD5 message-digest algorithm takes as input a message of arbitrary length and produces as output a 128-bit "fingerprint" or "message digest" of the input. The MD5 algorithm is intended for digital signature applications, where a large file must be "compressed" in a secure manner before being encrypted with a private (secret) key under a public-key cryptosystem such as RSA."

Aby obliczyć hash MD5 pliku, użyj md5_file() funkcji.


Składnia

md5( string,raw )

Parametr Opis
string Wymagany. Łańcuch należy obliczyć
raw Opcjonalny. Określa hex lub binarny format wyjściowy:
  • TRUE - Raw 16 znaków w formacie binarnym
  • False - domyślne. 32 znakowy numer hex

Szczegóły techniczne

Zwracana wartość: Zwraca obliczoną mieszania MD5 w przypadku powodzenia, FALSE w przypadku porażki
Wersja PHP: 4+
Lista zmian: Parametr surowy stały się opcjonalne w PHP 5.0

Więcej przykładów

Przykład 1

Wydrukować wynik md5() :

<?php
$str = "Hello";
echo "The string: ".$str."<br>";
echo "TRUE - Raw 16 character binary format: ".md5($str, TRUE)."<br>";
echo "FALSE - 32 character hex number: ".md5($str)."<br>";
?>
Uruchomić przykład »

Przykład 2

Wydrukować wynik md5() , a następnie przetestować go:

<?php
$str = "Hello";
echo md5($str);

if (md5($str) == "8b1a9953c4611296a827abf8c47804d7")
  {
  echo "<br>Hello world!";
  exit;
  }
?>
Uruchomić przykład »

<String referencyjny PHP