日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程语言 > php >内容正文

php

php保存流文件到本地,php下载保存文件保存到本地的两种实现方法

發(fā)布時(shí)間:2024/7/5 php 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php保存流文件到本地,php下载保存文件保存到本地的两种实现方法 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

第一種:<?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í)現(xiàn)方法相關(guān)文章請(qǐng)關(guān)注PHP中文網(wǎng)!

本條技術(shù)文章來源于互聯(lián)網(wǎng),如果無意侵犯您的權(quán)益請(qǐng)點(diǎn)擊此處反饋版權(quán)投訴

本文系統(tǒng)來源:php中文網(wǎng)

總結(jié)

以上是生活随笔為你收集整理的php保存流文件到本地,php下载保存文件保存到本地的两种实现方法的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。