Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

PHP sha1_file — Calculate the sha1 hash of a file

<?php
foreach(glob('/home/Kalle/myproject/*.php') as $ent)
{
    if(is_dir($ent))
    {
        continue;
    }

    echo $ent . ' (SHA1: ' . sha1_file($ent) . ')', PHP_EOL;
}
?>
 
PREVIOUS NEXT
Tagged: #PHP #Calculate #hash #file
ADD COMMENT
Topic
Name
6+5 =