En son web geliştirme öğreticiler
 

PHP md5() Function

<PHP dize Başvuru

Örnek

Dize MD5 özetini hesaplar "Hello" :

<?php
$str = "Hello";
echo md5($str);
?>
»Run örnek

Tanımı ve Kullanımı

md5() işlevi, bir dizi MD5 karma hesaplar.

md5() fonksiyonu RSA Veri Güvenliği, Inc MD5 Mesaj Özet algoritması kullanır.

RFC 1321 - MD5 Mesaj Özet Algoritma: "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."

Bir dosyanın MD5 hash hesaplamak için kullanmak md5_file() fonksiyonu.


Sözdizimi

md5( string,raw )

Parametre Açıklama
string Gereklidir. dize hesaplanacak
raw İsteğe bağlı. onaltılık veya ikili çıkış biçimini belirtir:
  • DOĞRU - Ham 16 karakter ikili biçim
  • YANLIŞ - Standart. 32 karakter heks sayısı

Teknik detaylar

Geri dönüş değeri: başarısı üzerine hesaplanan MD5 hash döndürür, aksi takdirde YANLIŞ
PHP Sürümü: 4+
Değişiklikler: Ham parametre PHP 5.0 isteğe bağlı hale gelmiştir

Diğer Örnekler

Örnek 1

Sonucunu yazdır 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>";
?>
»Run örnek

Örnek 2

Sonucunu yazdır md5() test sonra ve:

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

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

<PHP dize Başvuru