56游戏网 - 努力做内容最丰富最安全的下载站!

56游戏网

当前位置:56游戏 > 编程开发 > 网站开发 > php实现改变图片直接打开为下载的方法

php实现改变图片直接打开为下载的方法

发表时间:2015-04-24 10:00:23作者:zhao人气:更新时间:2026-02-18 19:36:00

本文实例讲述了php实现改变图片直接打开为下载的方法。分享给大家供大家参考。具体如下:

process.php文件如下:

$file = $_GET['file'];

header("Content-type: octet/stream");

header("Content-disposition:attachment;filename=".$file.";");

header("Content-Length:".filesize($file));

readfile($file);

exit;

html文件如下:

<a href="process.php?file=pic.jpg">Image goes Here</a>

希望本文所述对大家的php程序设计有所帮助。

标签php,实现,改变,图片,直接,打开,下载,方法,本文,实例

相关下载

查看所有评论+

网友评论

网友
您的评论需要经过审核才能显示

公众号