Calculating MD5 hash value of a file
Syntax:
string md5_file ( string $filename [, bool $raw_output] )
md5_file funtion is used to calculates MD5 hash of the specified value.
Example:
<?php
$filename = “file1.txt”;
$md5val = md5_file($filename);
echo $md5val;
?>
