该header()
函数将原始HTTP标头发送到客户端。
header(string,replace,resp_code)
string-要发送的标题字符串。
replace-指示标头应替换先前的标头还是添加第二个标头。
resp_code-将HTTP响应代码强制为指定值
该header()
函数不返回任何内容。
以下是保存生成的PDF的示例-
<?php header("Content-type:application/pdf"); header("Content-Disposition:attachment;filename=output.pdf'"); readfile("demo.pdf"); ?>
下载的文件将是“ output.pdf”,而输入的是“ demo.pdf”。