真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php修改下載文件名的方法-創(chuàng)新互聯(lián)

這篇文章將為大家詳細(xì)講解有關(guān)php修改下載文件名的方法,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

柴桑ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書未來市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書合作)期待與您的合作!

php修改下載文件名的方法:首先創(chuàng)建一個(gè)PHP示例文件;然后下載本地文件;接著通過“is_readable”等函數(shù)方法實(shí)現(xiàn)下載文件名的修改即可。

php修改下載文件名的方法

php文件下載并重命名

1.下載本地文件

$file_url = “./本地路徑”
 $out_filename = ‘下載后自動(dòng)保存的名字’;
 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.下載遠(yuǎn)程文件

$file_ur = ‘遠(yuǎn)程文件地址’;
$out_filename='下載后自動(dòng)保存的文件名';
            $file = @fopen($file_url, "r");
            if($file){
                $content="";
                while(!feof($file)){//測(cè)試文件指針是否到了文件結(jié)束的位置
                    $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 "文件不存在";
            }

關(guān)于php修改下載文件名的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。


新聞名稱:php修改下載文件名的方法-創(chuàng)新互聯(lián)
本文來源:http://weahome.cn/article/dophso.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部