91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

使用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

额尔古纳市| 延寿县| 西峡县| 平邑县| 台湾省| 海宁市| 上高县| 天长市| 屏南县| 桦甸市| 门源| 新郑市| 连江县| 阳原县| 西吉县| 宜春市| 宜川县| 汪清县| 广宁县| 西乡县| 香港| 会理县| 保德县| 云安县| 威信县| 北辰区| 瓦房店市| 盐城市| 长岛县| 芦溪县| 濮阳县| 封开县| 南安市| 宁阳县| 青浦区| 芜湖市| 舒兰市| 黄大仙区| 聂拉木县| 北流市| 瑞安市|