PHP实现文件(资源)下载功能

$url:文件地址

$filename:文件名称


function fileDownload($url,$filename)
{
    $file = file_get_contents($url);
    header('pragma:public');
    header("Content-Disposition:attachment;filename=$filename");
    echo $file;
}

 

你可能感兴趣的:(PHP实现文件(资源)下载功能)