php 下載保存文件保存到本地的兩種實(shí)現(xiàn)方法
第一種:
<?php function downfile() { $filename=realpath("resume.html"); //文件名 $date=date("Ymd-H:i:m"); Header( "Content-type: application/octet-stream "); Header( "Accept-Ranges: bytes "); Header( "Accept-Length: " .filesize($filename)); header( "Content-Disposition: attachment; filename= {$date}.doc"); echo file_get_contents($filename); readfile($filename); } downfile(); ?>
或
<?php function downfile($fileurl) { ob_start(); $filename=$fileurl; $date=date("Ymd-H:i:m"); header( "Content-type: application/octet-stream "); header( "Accept-Ranges: bytes "); header( "Content-Disposition: attachment; filename= {$date}.doc"); $size=readfile($filename); header( "Accept-Length: " .$size); } $url="url地址"; downfile($url); ?>
第二種:
<?php function downfile($fileurl) { $filename=$fileurl; $file = fopen($filename, "rb"); Header( "Content-type: application/octet-stream "); Header( "Accept-Ranges: bytes "); Header( "Content-Disposition: attachment; filename= 4.doc"); $contents = ""; while (!feof($file)) { $contents .= fread($file, 8192); } echo $contents; fclose($file); } $url="url地址"; downfile($url); ?>
PHP實(shí)現(xiàn)下載文件的兩種方法。分享下,有用到的朋友看看哦。
方法一:
<?php /** * 下載文件 * header函數(shù) * */ header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename='.basename($filepath)); 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($filepath)); readfile($file_path); ?>
了解php中header函數(shù)的用法。
方法二:
<?php //文件下載 //readfile $fileinfo = pathinfo($filename); header('Content-type: application/x-'.$fileinfo['extension']); header('Content-Disposition: attachment; filename='.$fileinfo['basename']); header('Content-Length: '.filesize($filename)); readfile($thefile); exit(); ?>
- PHP常用的文件操作函數(shù)經(jīng)典收藏
- php常用文件操作函數(shù)匯總
- PHP編程中八種常見(jiàn)的文件操作方式
- 真正的ZIP文件操作類(php)
- PHP目錄與文件操作技巧總結(jié)(創(chuàng)建,刪除,遍歷,讀寫(xiě),修改等)
- 一個(gè)經(jīng)典的PHP文件上傳類分享
- php+ajax實(shí)現(xiàn)圖片文件上傳功能實(shí)例
- PHP實(shí)現(xiàn)視頻文件上傳完整實(shí)例
- php遍歷、讀取文件夾中圖片并分頁(yè)顯示圖片的方法
- PHP實(shí)現(xiàn)適用于文件內(nèi)容操作的分頁(yè)類
- PHP文件操作實(shí)例總結(jié)【文件上傳、下載、分頁(yè)】
相關(guān)文章
php htmlspecialchars加強(qiáng)版
加強(qiáng)版htmlspecialchars2010-02-02PHP實(shí)現(xiàn)廣度優(yōu)先搜索算法(BFS,Broad First Search)詳解
這篇文章主要介紹了PHP實(shí)現(xiàn)廣度優(yōu)先搜索算法(BFS,Broad First Search),簡(jiǎn)單描述了廣度優(yōu)先搜索算法的原理并結(jié)合具體實(shí)例分析了php實(shí)現(xiàn)廣度優(yōu)先搜索算法的步驟與相關(guān)操作技巧,需要的朋友可以參考下2017-09-09PHP開(kāi)發(fā)中常用的三個(gè)表單驗(yàn)證函數(shù)使用小結(jié)
PHP Web開(kāi)發(fā)中常用的三個(gè)表單驗(yàn)證函數(shù),這些都是一些經(jīng)常用到的判斷函數(shù)。2010-03-03ThinkPHP實(shí)現(xiàn)遞歸無(wú)級(jí)分類——代碼少
這篇文章通過(guò)一段簡(jiǎn)短的代碼實(shí)現(xiàn)了ThinkPHP實(shí)現(xiàn)遞歸無(wú)級(jí)分類,,需要的朋友可以參考下2015-07-07PHP實(shí)現(xiàn)的比較完善的購(gòu)物車類
這篇文章主要介紹了PHP實(shí)現(xiàn)的比較完善的購(gòu)物車類,包含了針對(duì)商品常見(jiàn)的增加、刪除與修改等功能,非常具有實(shí)用價(jià)值,需要的朋友可以參考下2014-12-12php設(shè)計(jì)模式 Prototype (原型模式)代碼
用原型實(shí)例指定創(chuàng)建對(duì)象的種類.并且通過(guò)拷貝這個(gè)原型來(lái)創(chuàng)建新的對(duì)象2011-06-06