Home  >  Article  >  Backend Development  >  How to modify download file name in php

How to modify download file name in php

藏色散人
藏色散人Original
2020-08-19 09:08:533888browse

How to modify the downloaded file name in php: first create a PHP sample file; then download the local file; then modify the downloaded file name through "is_readable" and other function methods.

How to modify download file name in php

Recommended: "PHP Video Tutorial"

php file download and rename

1.Download local files

$file_url = “./本地路径”
 $out_filename = ‘下载后自动保存的名字’;
 if(!file_exists($file_url)) {
     echo "不存在";
 }else{
           header('Accept-Ranges: bytes');
           header('Accept-Length: ' . filesize( $file_url ));
           header('Content-Transfer-Encoding: binary');
           header('Content-type: application/octet-stream');
           header('Content-Disposition: attachment; filename=' . $out_filename);
           header('Content-Type: application/octet-stream; name=' . $out_filename);
           if(is_file($file_url) && is_readable($file_url)){
                $file = fopen($file_url, "r");
                 echo fread($file, filesize($file_url));
                 fclose($file);
            }

2.Download remote files

$file_ur = ‘远程文件地址’;
$out_filename='下载后自动保存的文件名';
            $file = @fopen($file_url, "r");
            if($file){
                $content="";
                while(!feof($file)){//测试文件指针是否到了文件结束的位置
                    $data=fread($file,1024);
                    $content.=$data;
                }
                fclose($file);
                $filesize = strlen($content);
                header('Accept-Ranges: bytes');
                header('Accept-Length: ' . $filesize);
                header('Content-Transfer-Encoding: binary');
                header('Content-type: application/octet-stream');
                header('Content-Disposition: attachment; filename=' . $out_filename);
                header('Content-Type: application/octet-stream; name=' . $out_filename);
                echo $content;
                die();  
            }else{
                echo "文件不存在";
            }

The above is the detailed content of How to modify download file name in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn