xx.php 파일의 코드 시작 부분입니다
<?php //文件下载的封装(超链接的方式) function down_file($filename,$allowDownExt=array('zip','html','rar')){ if(!is_file($filename)||!is_readable($filename)){ return false; } $ext=strtolower(pathinfo($filename,PATHINFO_EXTENSION)); if(!in_array($ext, $allowDownExt)){ return false; } //发送请求头,告诉浏览器输出的是字节流 header('content-type:application/octet-stream'); //告诉浏览器文件是按照字节来计算的 header('Accept-Ranges:bytes'); //告诉浏览器文件的大小 header('Accept-Length:'.filesize($filename)); //告诉浏览器文件是按附件处理,并且告诉浏览器下载的文件的名称 header('Content-Disposition:attachment;filename='.basename($filename)); //读取文件的内容 readfile($filename); exit; } ?>
xx.php 파일의 코드 끝 부분입니다
index.html 파일의 코드 시작 부분입니다
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <a href="http://localhost:8081/download.php?filename=5.html">下载5.html</a> </body> </html>
index.html 파일의 코드 끝 부분입니다
download.php 파일의 코드 끝 부분입니다
<?php require_once('xx.php'); $filename=$_GET['filename']; down_file($filename); ?>
download.php 파일의 코드 끝 부분입니다
관련 권장사항:
위 내용은 PHP 다운로드 기능의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!