PHP에서 실제 파일 다운로드 주소를 숨기는 방법: 헤더와 [file_get_contents] 메소드를 사용하세요. 코드는 [header("Content-Type: $mimetype");echo file_get_contents($pathto)]입니다.
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 training 칼럼에 주목해주세요!
위 내용은 PHP에서 실제 파일 다운로드 주소를 숨기는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!