tutorial pengembangan web terbaru
 

PHP md5() Function

<PHP String Reference

Contoh

Hitung MD5 hash dari string "Hello" :

<?php
$str = "Hello";
echo md5($str);
?>
Menjalankan contoh »

Definisi dan Penggunaan

The md5() fungsi menghitung MD5 hash dari string.

The md5() fungsi menggunakan RSA Data Security, Inc MD5 Message-Digest Algorithm.

Dari RFC 1321 - The 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."

Untuk menghitung hash MD5 dari sebuah file, gunakan md5_file() fungsi.


Sintaksis

md5( string,raw )

Parameter Deskripsi
string Wajib. String yang akan dihitung
raw Pilihan. Menentukan hex atau format output biner:
  • BENAR - Bahan 16 karakter format biner
  • SALAH - default. nomor hex 32 karakter

Rincian teknis

Kembali Nilai: Mengembalikan MD5 hash dihitung pada keberhasilan, atau FALSE pada kegagalan
PHP Versi: 4+
changelog: Parameter baku menjadi opsional di PHP 5.0

Contoh lebih

contoh 1

Cetak hasil 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>";
?>
Menjalankan contoh »

contoh 2

Cetak hasil md5() dan kemudian mengujinya:

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

if (md5($str) == "8b1a9953c4611296a827abf8c47804d7")
  {
  echo "<br>Hello world!";
  exit;
  }
?>
Menjalankan contoh »

<PHP String Reference