ホームページ  >  記事  >  バックエンド開発  >  PHP強制ダウンロードファイル実装コード_PHPチュートリアル

PHP強制ダウンロードファイル実装コード_PHPチュートリアル

WBOY
WBOYオリジナル
2016-07-13 10:25:47904ブラウズ

复制代码代码如下:

$file = 'monkey.gif';

if (file_exists($file)) {
header('Content-Description: ファイル転送');
header('Content-Type: application/octet-stream');
header('Content-Disposition:attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('有効期限: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flash();
readfile($file);
終了します。
}
?>
?
header("Content-Type: application/force-download");
header("Content-Disposition: 添付ファイル; filename=ins.jpg"); 
readfile("imgs/test_Zoom.jpg");
?>

www.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/824916.html技術記事复制代码代码如下: ?php $file = 'monkey.gif'; if (file_exists($file)) { header('Content-Description: ファイル転送'); header('Content-Type: application/octet-stream');頭...
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。