返回列表 回復 發帖

PHP強制下載各種的檔案格式

  1. <?php
  2. if($_GET['f']!=null){
  3.         $file=$_GET['f'];//檔案名稱
  4.         $url="http://photo.minwt.com/file/sampleView/php/download/"; //路徑位置
  5.         $num=date("Ymds");       
  6.         header("Content-type:application");
  7.         header("Content-Disposition: attachment; filename=".$num.$file);       
  8.         readfile($url.str_replace("@","",$file));       
  9.         exit(0);
  10. }else{
  11.         echo "找不到相關檔案....";
  12. }
  13. ?>
複製代碼
返回列表 回復 發帖