首页 > 代码库 > php文件hash算法,秒传原理
php文件hash算法,秒传原理
header(‘Content-type:text/html;Charset=UTF-8‘);define(‘blockSize‘, 4*1024*1024);var_dump(fileHash(‘test.wmv‘));var_dump(fileHash(‘asdf.wmv‘));function fileHash($file){ $f = fopen($file, "r"); if (!$f) exit("open $file error"); $fileSize = filesize($file); $buffer = ‘‘; $sha = ‘‘; // 一共有多少分片 $blkcnt = $fileSize/blockSize; if ($fileSize % blockSize) $blkcnt += 1; // 把数据装入一个二进制字符串 $buffer .= pack("L", $blkcnt); if ($fileSize <= blockSize) { $content = fread($f, blockSize); if (!$content) { fclose($f); exit("read file error"); } $sha .= sha1($content, TRUE); } else { for($i=0; $i<$blkcnt; $i+=1) { $content = fread($f, blockSize); if (!$content) { if (feof($f)) break; fclose($f); exit("read file error"); } $sha .= sha1($content, TRUE); } $sha = sha1($sha, TRUE); } $buffer .= $sha; $hash = urlSafeEncode(base64_encode($buffer)); fclose($f); return array($hash, null);}function urlSafeEncode($data){ $find = array(‘+‘, ‘/‘); $replace = array(‘-‘, ‘_‘); return str_replace($find, $replace, $data);}
php文件hash算法,秒传原理
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。