PHP에서 다운로드 주소를 숨기는 방법: PHP에서 헤더 메소드를 사용하세요. 코드는 [header("Cache-Control: must-revalidate, post-check=0, pre-check=0");]입니다.
php 다운로드 주소 숨기기 방법:
php 실제 파일 다운로드 주소 숨기기 방법은 php
구현 방법 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!