PHP 숨겨진 경로 다운로드 구현 방법: 1. "download_document" 메소드를 통해 실제 파일 다운로드 주소를 숨깁니다. 2. "if (file_exists($file)) {...}"를 통해 실제 파일 다운로드 주소를 숨깁니다. 방법.
이 글의 운영 환경 : Windows 7 시스템, PHP 버전 7.1, DELL G3 컴퓨터
PHP에서 실제 파일 다운로드 주소를 숨기는 방법
이 글에서는 주로 실제 파일 다운로드 주소를 숨기는 방법을 소개합니다. php와 관련된 php의 파일 다운로드 주소 헤더와 file_get_contents 메소드의 관련 사용법은 매우 실용적인 가치가 있습니다. 도움이 필요한 친구는 다음을 참조할 수 있습니다.
구현 방법 1:
function download_document($filename,$path="",$mimetype="application/octet-stream") { header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Content-Disposition: attachment; filename = $filename"); header("Content-Length: " . filesize($pathto . $filename)); header("Content-Type: $mimetype"); echo file_get_contents($pathto . $filename); }
구현 방법 2:
<?php $file = "1.txt";// 文件的真实地址(支持url,不过不建议用url) 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; } ?>
[ 추천 학습: PHP 비디오 튜토리얼]
위 내용은 PHP에서 경로 다운로드를 숨기는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!