合并二進位檔案:PHP大檔案儲存體樣本,各種檔案分割和合并(二進位分割與合并)

來源:互聯網
上載者:User

簡單樣本:
split.php
<?php
$i = 0; //分割的塊編號
$fp = fopen("abc.wmv","rb"); //要分割的檔案
$file = fopen("split_hash.txt","a"); //記錄分割的資訊的文字檔
while(!feof($fp))
{
$handle = fopen("abc.wmv.{$i}","wb");
fwrite($handle,fread($fp,5000000)); //5000000 可以自訂.就是每個所分割的檔案大小
fwrite($file,"qqdjz_002.wmv.{$i}\r\n");
fclose($handle);
unset($handle);
$i++;
}
fclose ($fp);
fclose ($file);
echo "ok";
?>
join.php
<?php
$mov = file_get_contents("abc.txt"); //讀取分割檔案的資訊
$list = explode("\r\n",$mov);
$fp = fopen("split.wmv","ab"); //合并後的檔案名稱
foreach($list as $value)
{
if(!empty($value)) {
$handle = fopen($value,"rb");
fwrite($fp,fread($handle,filesize($value)));
fclose($handle);
unset($handle);
}
}
fclose($fp);
?>
本文連結http://www.cxybl.com/html/wlbc/Php/20130326/37393.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.