主页 M

php定义下载文件后的名字格式

2015-08-10 网页编程网 网页编程网
<?php
$filename = '路径+实际文件名';
//文件的类型
header('Content-type: application/pdf');
//下载显示的名字
header('Content-Disposition: attachment; filename="保存时的文件名.pdf"');
readfile("$filename");
exit();
阅读原文
阅读 3763
123 显示电脑版