PHP md5_file() Function Last Updated : 11 Jul, 2025 Comments Improve Suggest changes 1 Likes Like Report The md5_file() function is an inbuilt function in PHP which is used to generate the md5 hash value of a given file. This function returns a string on success otherwise it returns FALSE. Syntax: md5_file( $file, $raw ) Parameters: This function accepts two parameters as mentioned above and described below. $file: It is a mandatory parameter which specifies the file for SHA1 hash. $raw: It is an optional parameter which specifies boolean values. TRUE - Raw 16 character binary format FALSE - By Default. 32 character long hex number. Return Value: This function returns a string of MD5 hash on success and returns FALSE otherwise. Supposed there is a file named "gfg.txt" which has below content: Publish your own articles and share knowledge with the world!! Below programs illustrate the md5_file() function: Program 1: php <?php // PHP program to illustrate // md5_file() function $gfg = md5_file("gfg.txt"); echo $gfg; ?> Output: 1d4e50ae1992ad8adf2f7bb6ee4dd0cd Program 2: With optional parameter $raw with different values TRUE and FALSE. php <?php // PHP program to illustrate // md5_file() function // Without optional parameter echo md5_file("gfg.txt") . "\n"; // with optional parameter $raw = FALSE (by default) // no changes in result echo md5_file("gfg.txt", FALSE) . "\n"; // with optional parameter $raw = TRUE // result changed echo md5_file("gfg.txt", TRUE) . "\n"; ?> Output: 1d4e50ae1992ad8adf2f7bb6ee4dd0cd 1d4e50ae1992ad8adf2f7bb6ee4dd0cd ????/{??M?? Reference: https://www.php.net/manual/en/function.md5-file.php Comment V Vishal_Khoda Follow 1 Improve V Vishal_Khoda Follow 1 Improve Article Tags : Misc Web Technologies PHP PHP-file-handling Explore PHP Tutorial 8 min read BasicsPHP Syntax 4 min read PHP Variables 5 min read PHP | Functions 8 min read PHP Loops 4 min read ArrayPHP Arrays 5 min read PHP Associative Arrays 4 min read Multidimensional arrays in PHP 5 min read Sorting Arrays in PHP 4 min read OOPs & InterfacesPHP Classes 2 min read PHP | Constructors and Destructors 5 min read PHP Access Modifiers 4 min read Multiple Inheritance in PHP 4 min read MySQL DatabasePHP | MySQL Database Introduction 4 min read PHP Database connection 2 min read PHP | MySQL ( Creating Database ) 3 min read PHP | MySQL ( Creating Table ) 3 min read PHP AdvancePHP Superglobals 6 min read PHP | Regular Expressions 12 min read PHP Form Handling 4 min read PHP File Handling 4 min read PHP | Uploading File 3 min read PHP Cookies 9 min read PHP | Sessions 7 min read Like