お世話になっております
Ubuntu上からフォルダをダウンロードしたいのですがうまくいきません...
参考サイト
https://www.findxfine.com/programming/php/995560196.html
Ubuntuサーバーのフォルダ構造
php
1 <?php 2 3 $fileName = 'LIFE.zip'; 4 5 $dir = '/var/www/html/GameList'; 6 $command = 'cd ' . $dir . ';' . 7 'zip -r ' . $fileName . ' ./LIFE/'; 8 exec($command); 9 10 $zipPath = $dir . '/' . $fileName; 11 12 header("Content-Type: application/zip"); 13 header("Content-Disposition: attachment; filename=" . basename($zipPath)); 14 header("Content-Length: " . filesize($zipPath)); 15 ob_clean(); 16 flush(); 17 readfile($zipPath); 18 19 unlink($zipPath); 20 exit(0); 21 22 ?>
現状の状態
->Zipでダウンロードは成功するのですが中身が無い状態です...
回答2件
あなたの回答
tips
プレビュー