Home >>PHP String Functions >PHP md5_file() Function

PHP md5_file() Function

PHP md5_file() Function

PHP md5_file() function is used to generate the md5 hash value of a given input file. On success of the operation this function returns a hash string otherwise it returns FALSE. It accepts two parameters out of which one is required, which is the given input file and other one is an optional parameter.

Syntax:-

  md5_file( $file, $raw );

Parameter Values

Parameter Description
String This is a required parameter. This parameter contains the file which is to be converted into hash.
RawOutput This is an optional parameter. This parameter specifies the hex or binary output format. It is of Boolean type.
  • TRUE - Raw 16 character binary format.
  • FALSE - 32 character hex format. (Default)

Here is an example of md5_file() function in PHP:

<html>
<body>

<?php
$file = "file.txt";
$md5file = md5_file($file);
echo $md5file;
?>
 
</body>
</html>
Output:
01b0553875b7fd8bf8daa0245607055c

Here is an example of using md5_file() function in PHP for file verification:

First we will store the md5 hash into the file.

<html>
<body>

<?php
$file = "file.txt";
$md5file = md5_file($file);
file_put_contents("md5file.txt",$md5file);      // storing the md5 hash file
?>  
 
</body>
</html>

Then get the md5 file & match it with the hash value.

<html>
<body>

<?php
$md5file = file_get_contents("md5file.txt");
if (md5_file("file.txt") == $md5file)
  {
  echo "The file is OK.";
  }
else
  {
  echo "The file has been altered.";
  }
?>
 
</body>
</html>
Output:
The file is OK.

PHP String Functions PHP addcslashes() Function PHP addslashes() Function PHP bin2hex() Function PHP chop() Function PHP chr() Function PHP chunk_split() Function PHP convert_cyr_string() Function PHP convert_uudecode() Function PHP convert_uuencode() Function PHP count_chars() Function PHP crc32() Function PHP crypt() Function PHP echo() Function PHP empty() function PHP explode() Function PHP strcmp() Function PHP fprintf() Function PHP strcoll() Function PHP get_html_translation_table() Function PHP strcspn() Function PHP hebrev() Function PHP strip_tags() Function PHP hebrevc() Function PHP hex2bin() Function PHP html_entity_decode() Function PHP htmlentities() Function PHP htmlspecialchars() Function PHP htmlspecialchars_decode() Function PHP implode() Function PHP join() Function PHP lcfirst() Function PHP levenshtein() Function PHP localeconv() Function PHP ltrim() Function PHP md5() Function PHP md5_file() Function PHP metaphone() Function PHP money_format() Function PHP nl_langinfo() Function PHP nl2br() Function PHP number_format() Function PHP ord() Function PHP parse_str() Function PHP print() Function PHP printf() Function PHP quoted_printable_decode() Function PHP quoted_printable_encode() Function PHP quotemeta() Function PHP rtrim() Function PHP setlocale() Function PHP sha1() Function PHP sha1_file() Function PHP similar_text() Function PHP soundex() Function PHP sprintf() Function PHP sscanf() Function PHP str_getcsv() Function PHP str_ireplace() Function PHP str_pad() Function PHP str_repeat() Function PHP str_replace() Function PHP str_rot13() Function PHP str_shuffle() Function PHP str_split() Function PHP str_word_count() Function PHP strcasecmp() Function PHP strchr() Function
No Sidebar ads