コード例 #1
0
 /**
  * Return md5 signature of a file
  *
  * @param string $FilePath
  * @return string
  */
 function Read($FilePath)
 {
     $Content = parent::Read($FilePath);
     if ($Content !== false) {
         $Content = md5($Content);
     }
     return $Content;
 }