Friday, September 5, 2025
HomeLanguagesPHP | hash_file( ) Function

PHP | hash_file( ) Function

The hash_file() function is an inbuilt function in PHP which is used to generate a hash value using the contents of a given file.

Syntax:

string hash_file( $algo, $file, $raw_opt )

Parameters: This function accept three parameters as mention above and describe below.

  • $algo: It is the required parameter which specifies the selected hashing algorithm.
  • $file: This parameter is used to hold the file url to be hashed.
  • $raw_opt: If the parameter is set to true then output will be raw binary data and if the parameter is set to False then output will be lowercase hexits.

Return Value: This function returns a string containing the calculated message digest as lowercase hexits.

Below programs uses the file gfg.txt and contents of the file are:

neveropen
A Computer Science Portal for Geeks

Below programs illustrate the hash_file() function in PHP:
Program 1:




<?php
  
// PHP program to illustrate
//  hash_file function
  
  
// Create a file to calculate hash of
file_put_contents('gfg.txt', 'GFG');
  
// Display Result
echo hash_file('md5', 'gfg.txt') . "</br>";
?>


Output:

083de2341fd19dce0de9e60f3e9a8e0d

Program 2:




<?php
  
// PHP program to illustrate
//  hash_file function
  
  
// Create a file to calculate hash of
file_put_contents('gfg.txt', 'SUDO PLACEMENT');
  
// Display Result
echo hash_file('md5', 'gfg.txt') . "</br>";
  
  
// Create a file to calculate hash of
file_put_contents('gfg.txt', 'GCET');
  
// Display Result
echo hash_file('sha1', 'gfg.txt');
?>


Output:

083de2341fd19dce0de9e60f3e9a8e0d
a287a6ac47afec4140253a10b8a4c9c1e4f7a45e

Reference: http://php.net/manual/en/function.hash-file.php

RELATED ARTICLES

Most Popular

Dominic
32267 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6635 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11865 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7026 POSTS0 COMMENTS
Thapelo Manthata
6703 POSTS0 COMMENTS
Umr Jansen
6720 POSTS0 COMMENTS