亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用php怎么對文件進行下載

發布時間:2020-12-29 14:27:56 來源:億速云 閱讀:118 作者:Leah 欄目:開發技術

這篇文章給大家介紹使用php怎么對文件進行下載,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

<?php 

$file = 'monkey.gif';

if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
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($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>


以上代碼是下載代碼
接下來貼一段在線預覽pdf文件的代碼

復制代碼 代碼如下:


<?php
public function fddAction()
{
// get attachment location
$attachment_location = $_SERVER["DOCUMENT_ROOT"] . "/pdf/fdd/sample.pdf";

if (file_exists($attachment_location)) {
// attachment exists

// send open pdf dialog to user
header('Cache-Control: public'); // needed for i.e.
header('Content-Type: application/pdf');
header('Content-Disposition: inline; filename="sample.pdf"');
readfile($attachment_location);
die(); // stop execution of further script because we are only outputting the pdf

} else {
die('Error: File not found.');
}
}
?>

關于使用php怎么對文件進行下載就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

灵寿县| 江永县| 海城市| 兴安盟| 柳州市| 嵩明县| 安阳县| 南城县| 卢氏县| 东光县| 汉中市| 项城市| 万全县| 长治县| 神农架林区| 六安市| 肥西县| 新兴县| 合作市| 刚察县| 获嘉县| 兴和县| 株洲县| 怀来县| 深泽县| 昭通市| 鄢陵县| 连山| 新巴尔虎左旗| 油尖旺区| 五河县| 牙克石市| 运城市| 麻阳| 阳江市| 凤山县| 咸丰县| 黄石市| 开化县| 临江市| 淮滨县|