header("Content-type:img/jpeg");
header("Content-Disposition: attachment; filename=./images/logo_03.gif");
这样另存后,没有后缀了
而且不能指定另外的文件名
谁有更加好的办法?可以帮我解决一下吗?【论坛浏览】
相关评论作者: Jaycn 发布日期: 2006-10-07没人懂?
发现村子里的人气越来越不行了.....作者: 迎风 发布日期: 2006-10-07Content-type:image/jpeg作者: Jaycn 发布日期: 2006-10-07不懂说啥,麻烦说清楚一点作者: 迎风 发布日期: 2006-10-07你mime头写错了,浏览器无法识别,Content-type:img/jpeg改成Content-type:image/jpeg作者: cfz_548 发布日期: 2006-10-07[php]
Header("Cache-control: private");
Header("Pragma: ");
Header("Content-type: application/octet-stream");
Header("Accept-Ranges: bytes");
Header("Content-Length: $filesize");
Header("Content-Disposition: attachment; filename=".$filename."");
exit;
[/php]共有评论数 5/每页显示数 10(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/php/)