您的意思是HTTP标头,您正在寻找RFC 2616,http://www.w3.org/Protocols/rfc2616/rfc2616-sec19.html "内容处置".
发送以下标头以强制下载所有文件和类型:
header('Content-Disposition: attachment; filename="name.ext"');
header('Content-Type: application/octet-stream'); // or application/force-download
echo $the_file_content;
exit;
Run Code Online (Sandbox Code Playgroud)