php檔案在線壓縮程式類(1/2)_PHP教程

來源:互聯網
上載者:User
php檔案在線壓縮程式類 提供一款超完美的php檔案在線壓縮程式,原理很簡單就是把檔案以二進位形式儲存了,以前用過利用rar的核心程式,這是php內建的壓縮功能。

php教程檔案在線壓縮程式類
提供一款超完美的php檔案在線壓縮程式,原理很簡單就是把檔案以二進位形式儲存了,以前用過利用rar的核心程式,這是php內建的壓縮功能。
*/

set_time_limit(0);
class phpzip{

var $file_count = 0 ;
var $datastr_len = 0;
var $dirstr_len = 0;
var $filedata = ''; //該變數只被類外部程式訪問
var $gzfilename;
var $fp;
var $dirstr='';

/*
返迴文件的修改時間格式.
只為本類內建函式調用.
*/
function unix2dostime($unixtime = 0) {
$timearray = ($unixtime == 0) ? getdate() : getdate($unixtime);

if ($timearray['year'] < 1980) {
$timearray['year'] = 1980;
$timearray['mon'] = 1;
$timearray['mday'] = 1;
$timearray['hours'] = 0;
$timearray['minutes'] = 0;
$timearray['seconds'] = 0;
}

return (($timearray['year'] - 1980) << 25) | ($timearray['mon'] << 21) | ($timearray['mday'] << 16) |
($timearray['hours'] << 11) | ($timearray['minutes'] << 5) | ($timearray['seconds'] >> 1);
}
/*
初始設定檔案,建立檔案目錄,
並返迴文件的寫入許可權.
*/
function startfile($path = 'faisun.zip'){
$this->gzfilename=$path;
$mypathdir=array();
do{
$mypathdir[] = $path = dirname($path);
}while($path != '.');
@end($mypathdir);
do{
$path = @current($mypathdir);
@mkdir($path);
}while(@prev($mypathdir));

if($this->fp=@fopen($this->gzfilename,"w")){
return true;
}
return false;
}
/*
添加一個檔案到 zip 壓縮包中.
*/

1 2

http://www.bkjia.com/PHPjc/444846.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/444846.htmlTechArticlephp檔案在線壓縮程式類 提供一款超完美的php檔案在線壓縮程式,原理很簡單就是把檔案以二進位形式儲存了,以前用過利用rar的核心程式,這...

  • 聯繫我們

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