当前位置:Gxlcms > PHP教程 > PHP下载文件的两种方法与代码分享_PHP教程

PHP下载文件的两种方法与代码分享_PHP教程

时间:2021-07-01 10:21:17 帮助过:35人阅读

方法一:


('Content-Description: File Transfer'('Content-Type: application/octet-stream'('Content-Disposition: attachment; filename='.(('Content-Transfer-Encoding: binary'(''Cache-Control: must-revalidate, post-check=0, pre-check=0('Pragma: public'('Content-Length: ' . ((?>

以上代码用到了php header函数,可以参考以下如下的文章:
php header()函数的简单例子
php header函数实现文件下载的实例代码
php中header函数的用法举例详解
php header 使用详解
php header函数 文件下载时直接提示保存的代码
php header函数实现文本文件下载的方法
php 文件头部(header)信息详解
php使用header发送各种类型文件下载的例子

了解php中header函数的用法。

方法二:


 = (('Content-type: application/x-'.['extension'('Content-Disposition: attachment; filename='.['basename'('Content-Length: '.((?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/440394.htmlTechArticle方法一: ? ('Content-Description: File Transfer' ('Content-Type: application/octet-stream' ('Content-Disposition: attachment; filename='. ( ('Content-Transfer-Encoding: binary'...

人气教程排行