PHP實現的大檔案切割與合并功能樣本講解

來源:互聯網
上載者:User
這篇文章主要介紹了PHP實現的大檔案切割與合并功能,涉及php針對檔案的讀寫、字串遍曆、分割等相關操作技巧,需要的朋友可以參考下

本文執行個體講述了PHP實現的大檔案切割與合并功能。分享給大家供大家參考,具體如下:

分割代碼

split.php

<?php$i  = 0;                 //分割的塊編號$fp  = fopen("hadoop.sql","rb");      //要分割的檔案$file = fopen("split_hash.txt","a");    //記錄分割的資訊的文字檔,實際生產環境存在redis更合適while(!feof($fp)){    $handle = fopen("hadoop.{$i}.sql","wb");    fwrite($handle,fread($fp,5242880));//切割的塊大小 5m    fwrite($file,"hadoop.{$i}.sql\r\n");    fclose($handle);    unset($handle);    $i++;}fclose ($fp);fclose ($file);echo "ok";

合并代碼

merge.php

<?php$hash = file_get_contents("split_hash.txt"); //讀取分割檔案的資訊$list = explode("\r\n",$hash);$fp = fopen("hadoop2.sql","ab");    //合并後的檔案名稱foreach($list as $value){  if(!empty($value)) {    $handle = fopen($value,"rb");    fwrite($fp,fread($handle,filesize($value)));    fclose($handle);    unset($handle);  }}fclose($fp);echo "ok";

您可能感興趣的文章:

PHP實現的簡單組詞演算法樣本講解

PHP實現的mongoDB資料庫操作類完整執行個體講解

ThinkPHP架構使用redirect實現頁面重新導向的方法執行個體講解

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.