Returns an md5 hash for a file.
This function returns an 128-bit md5 hash of a file and can be used to verify the integrity of a file. If the call fails, FALSE is returned.
<?php
print "md5 hash for log.txt: " . md5_file("log.txt");
?> md5 hash for log.txt: 75efaab9a36ee3cd967d477865595a0f An md5 hash for log.txt is generated and printed.