LoginSignup
1
0

More than 1 year has passed since last update.

PHPのreadfile()でファイルサイズが大きいzipファイルをダウンロードできなかったためfopen()-fread()にした話

Last updated at Posted at 2022-03-22

PHPのreadfile()でファイルサイズが大きいzipファイルをダウンロードできなかったためfopen()-fread()にした話

#修正前

readfile($zip_name);

#修正後

$handle = fopen($zip_name, 'rb');
while (!feof($handle)){
    echo fread($handle, 4096);
    ob_flush();
    flush();
}
fclose($handle);
1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0