您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
<?php ini_set("memory_limit", "50M");//必须的,根据你环境的实际情况尽量大,防止报错 ini_set("max_execution_time", "100"); //file_exists() 函数检查文件或目录是否存在,存在则返回 true,否则返回 false。 //fread() 函数读取文件(可安全用于二进制文件)。fread() 从文件指针 file 读取最多 length 个字节。 //filesize() 函数返回指定文件的大小(字节)。本函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。 $orgFile = 'Fireworks8-chs.exe';//源文件 $cacheFileName = 'vbcache';//分割成的临时文件块 function cutFile($fileName,$block) {//分割 global $cacheFileName; if (!file_exists($fileName)) return false; $num = 1; $file = fopen($fileName, 'rb'); while ($content = fread($file,$block)) { $cacheFile = $cacheFileName . $num++ . '.dat'; $cfile = fopen($cacheFile, 'wb'); fwrite($cfile, $content); fclose($cfile); } fclose($file); } function mergeFile($targetFile) {//合并 global $cacheFileName; $num = 1; $file = fopen($targetFile, 'wb'); while ($num > 0) { $cacheFile = $cacheFileName . $num++ . '.dat'; if (file_exists($cacheFile)) { $cfile = fopen($cacheFile, 'rb'); $content = fread($cfile, filesize($cacheFile)); fclose($cfile); fwrite($file, $content); } else { $num = -1; } } fclose($file); } //调用 cutFile($orgFile, 10 * pow(2,20)); //10 * pow(2,20) 就等于 10M pow() 函数返回 x 的 y 次方 mergeFile('ok.exe'); ?>
×××:http://down.51cto.com/data/1081444
最近在研究php断点续传上传文件(要求不能使用swf插件),算是有点进展吧!
思路01:将文件分割成若干部分,后台一个一个接收合并,并记录下当前合并成功到了第几个。下此从这个开始合并,直到合并完成。判断:生成文件的大小和文件md5码是否一致。返回true or false。
思路02:文件流。通过记录指针写入文件。记录这次写到了第几针,下次从这里开始写。
继续研究中......
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。