您好,欢迎访问一九零五行业门户网

php如何隐藏实际文件下载地址

php隐藏实际文件下载地址的方法:使用header与【file_get_contents】方法,代码为【header(content-type: $mimetype);echo file_get_contents($pathto)】。
php隐藏实际文件下载地址的方法:
涉及php中header与file_get_contents方法的相关使用技巧,非常具有实用价值,需要的朋友可以参考下:
实现方法一:
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);}
实现方法二:
<?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如何隐藏实际文件下载地址的详细内容。
其它类似信息

推荐信息