A-A+
php实现文件下载
使用PHP实现文件下载,需要使用header头来指定下载文件类型,不知道下载文件类型可以使用application/octet-stream 二进制流方式来代替
<?php
header("Content-type: application/octet-stream");
header('Content-Disposition: attachment; filename=test.png');
header("Content-Length: " . filesize($file));
readfile($file);
?>