Query: sha1_file
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
SHA1_FILE(3) 1 SHA1_FILE(3) sha1_file - Calculate the sha1 hash of a fileSYNOPSISstring sha1_file (string $filename, [bool $raw_output = false])DESCRIPTIONCalculates the sha1 hash of the file specified by $filename using the US Secure Hash Algorithm 1, and returns that hash. The hash is a 40-character hexadecimal number.PARAMETERSo $filename - The filename of the file to hash. o $raw_output - When TRUE, returns the digest in raw binary format with a length of 20.RETURN VALUESReturns a string on success, FALSE otherwise.EXAMPLESExample #1 sha1_file(3) example <?php foreach(glob('/home/Kalle/myproject/*.php') as $ent) { if(is_dir($ent)) { continue; } echo $ent . ' (SHA1: ' . sha1_file($ent) . ')', PHP_EOL; } ?>CHANGELOG+--------+---------------------------------------------------+ |Version | | | | | | | Description | | | | +--------+---------------------------------------------------+ | 5.1.0 | | | | | | | Changed the function to use the streams API. It | | | means that you can use it with wrappers, like | | | sha1_file('http://example.com/..') | | | | +--------+---------------------------------------------------+SEE ALSOsha1(3), md5_file(3), crc32(3). PHP Documentation Group SHA1_FILE(3)
Related Man Pages |
---|
is_dir(3) - php |
hash_final(3) - php |
hash_hmac_file(3) - php |
sha1(1) - linux |
sha1(1) - opendarwin |
Similar Topics in the Unix Linux Community |
---|
Removing prefix from multiple files and renaming file extension |
Preserve trailing whitespace in variable |