file corrupt when click download link

后端 未结 3 656
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-15 10:55

I try to use php to force the image jpg file download, I have implemented eth following code:

html



        
3条回答
  •  野的像风
    2021-01-15 11:29

    Try to use:

    header("Content-Disposition: attachment; filename=\"".basename($fullPath)."\";" );
    

提交回复
热议问题