PHP에서 파일을 다운로드하는 두 가지 방법과 코드.
PHP에서 파일을 다운로드하는 두 가지 방법을 공유합니다. 유용하다고 생각하는 친구들이 살펴볼 수 있도록 공유하세요.
방법 1:
<?php /*** 下载文件* header函数**/header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename='.basename($filepath)); 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($filepath)); readfile($file_path); ?>
위 코드는 php 헤더 함수를 사용합니다.
php 헤더() 함수의 간단한 예
php 헤더 기능 파일 다운로드를 구현하는 코드 예시
php의 헤더 기능 사용 예
php 헤더파일 다운로드 시 저장된 코드를 직접 프롬프트하는
php 헤더 기능 사용에 대한 자세한 설명
PHP 헤더 기능을 이용한 텍스트 파일 다운로드 구현 방법
PHP 파일 헤더 정보에 대한 자세한 설명
PHP에서 헤더를 사용하여 다양한 형태의 파일 다운로드를 보내는 예
PHP에서 헤더 기능의 사용법을 이해합니다.
방법 2:
<?php//文件下载//readfile $fileinfo = pathinfo($filename); header('Content-type: application/x-'.$fileinfo['extension']); header('Content-Disposition: attachment; filename='.$fileinfo['basename']); header('Content-Length: '.filesize($filename)); readfile($thefile);exit(); ?>