教程集 www.jiaochengji.com
教程集 >  脚本编程  >  php  >  正文 php 强制下载文件实例代码

php 强制下载文件实例代码

发布时间:2017-09-27   编辑:jiaochengji.com
分享一段php强制下载文件的代码,学习下php中使用header函数实现文件强制下载的方法,有需要的朋友参考下。

本节内容:
php 强制下载文件的实现代码。

例子:
 

复制代码 代码示例:

<?php
/**
* php实现文件强制下载
* edit: www.jbxue.com
*/
$file = 'monkey.gif';

if (file_exists($file)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.basename($file));
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    ob_clean();
    flush();
    readfile($file);
    exit;
}
 
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=ins.jpg"); 
readfile("imgs/test_Zoom.jpg");
?>

您可能感兴趣的文章:
PHP 强制下载文件示例代码
php 强制下载文件实例代码
php强制下载mp3文件的实现代码
php实现文件强制下载代码
php文件下载(防止中文文件名乱码)的示例代码
PHP强制下载文件方法浅析
PHP强制下载PDF文件的代码
php文件下载代码(多浏览器兼容、支持中文文件名)
php 强制文件下载的一段代码
php做下载文件的方法

关键词: PHP强制下载   
[关闭]
~ ~