En son web geliştirme öğreticiler
 

PHP md5_file() Function

<PHP dize Başvuru

Örnek

Metin dosyası MD5 özetini hesaplar "test.txt" :

<?php
$filename = "test.txt";
$md5file = md5_file($filename);
echo $md5file;
?>

kodun çıktısını göreceğiz:

d41d8cd98f00b204e9800998ecf8427e


Tanımı ve Kullanımı

md5_file() işlevi, bir dosyanın MD5 karma hesaplar.

md5_file() 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 dize MD5 hash hesaplamak için kullanmak md5() fonksiyonu.


Sözdizimi

md5_file( file,raw )

Parametre Açıklama
file Gereklidir. Dosya hesaplanacak
raw İsteğe bağlı. onaltılık veya ikili çıkış biçimini belirten bir Boole değeri:
  • 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.2.0+
Değişiklikler: Ham parametre PHP 5.0 ilave edildi

PHP 5.1 itibariyle, kullanmak mümkündür md5_file() mahfazalar ile, örneğin md5_file("http://w3ii.com/..")

Diğer Örnekler

Örnek 1

MD5 hash Mağaza "test.txt" bir dosyada:

<?php
$md5file = md5_file("test.txt");
file_put_contents("md5file.txt",$md5file);
?>

Eğer Testi "test.txt" (yani MD5 hash değiştirildi ise) değiştirilmiştir:

<?php
$md5file = file_get_contents("md5file.txt");
if (md5_file("test.txt") == $md5file)
  {
  echo "The file is ok.";
  }
else
  {
  echo "The file has been changed.";
  }
?>

kodun çıktısı yukarıda olabilir:

The file is ok.


<PHP dize Başvuru