-2
私はそれが私は、ファイルを解凍しないのでfaulltを使用してファイルをダウンロードされるファイルPHPヘッダーのContent-Lengthの使用は何ですか?
$full_path_file=ctrl_options::GetSystemOption('sentora_root') . "etc/tmp/". basename($backup);
$file_for_user=basename($backup);
header('Content-Description: File Transfer');
header("Content-type: application/octet-stream");
header('Content-Disposition: attachment; filename="'.$file_for_user.'"');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($full_path_file));
readfile($full_path_file);
をダウンロードするために以下のコードを使用しています。 私はそれがうまく働いて、以下の行
header('Content-Length: ' . filesize($full_path_file));
コメントます。ヘッダー( 'Content-Length:'。filesize($ full_path_file));のクリアカット機能を教えてください;
"php header"の "http header" – jmattheis
Ok。ありがとう@jmattheis。 httpヘッダー( 'Content-Length:'。filesize($ full_path_file))の使用を教えてください。 ? –