tutoriais mais recente desenvolvimento web
 

PHP md5_file() Function

<PHP seqüência de referência

Exemplo

Calcule o hash MD5 do arquivo de texto "test.txt" :

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

A saída do código acima será:

d41d8cd98f00b204e9800998ecf8427e


Definição e Uso

O md5_file() calcula o hash MD5 de um arquivo.

O md5_file() função usa o RSA Data Security, Inc. MD5 Message-Digest Algorithm.

De RFC 1321 - O 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."

Para calcular o hash MD5 de uma cadeia, usar o md5() função.


Sintaxe

md5_file( file,raw )

Parâmetro Descrição
file Requeridos. O arquivo deve ser calculada
raw Opcional. Um valor booleano que especifica hex ou formato de saída binária:
  • TRUE - formato binário Raw de 16 caracteres
  • FALSE - Padrão. número hexadecimal de 32 caracteres

Detalhes técnicos

Valor de retorno: Retorna o hash MD5 calculado em sucesso, ou FALSE em caso de falha
PHP Versão: 4.2.0+
changelog: O parâmetro em bruto foi adicionado em PHP 5.0

A partir do PHP 5.1, é possível utilizar md5_file() com invólucros de, por exemplo, md5_file("http://w3ii.com/..")

mais Exemplos

Exemplo 1

Armazenar o hash MD5 de "test.txt" em um arquivo:

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

Teste se "test.txt" foi alterado (isto é, se o hash MD5 foi alterado):

<?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.";
  }
?>

A saída do código acima poderia ser:

The file is ok.


<PHP seqüência de referência