クラス作成ZIPファイル
ZIPアーカイブで本格的な作品を形成する非常に興味深いクラス
クラスオブジェクトを作成します。
$createZip = new createZip;
ファイルをアーカイブに追加します。
$file = "FILE";
$createZip - >addFile($file, "file.data");
スクリプトをテストし、サーバーにファイル(私の場合はfile.data)をアップロードし、それをzipアーカイブにパックしてディスクに保存しましょう。
//
$file = file_get_contents("file.data");
$createZip->addFile($file, "file.data");
$fileName = "file.zip";
$fd = fopen ($fileName, "wb");
$out = fwrite ($fd, $createZip -> getZippedfile());
fclose ($fd);
//
$createZip -> forceDownload($fileName);