本文實(shí)例講述了php實(shí)現(xiàn)改變圖片直接打開為下載的方法。分享給大家供大家參考。具體如下:
process.php文件如下:
1
2
3
4
5
6
|
$file = $_GET [ 'file' ]; header( "Content-type: octet/stream" ); header( "Content-disposition:attachment;filename=" . $file . ";" ); header( "Content-Length:" . filesize ( $file )); readfile( $file ); exit ; |
html文件如下:
1
|
< a href = "process.php?file=pic.jpg" >Image goes Here</ a > |
希望本文所述對(duì)大家的php程序設(shè)計(jì)有所幫助。