免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1898 | 回复: 2
打印 上一主题 下一主题

奇怪,Firefox可以上传jpg图片,但IE不行[已解决] [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-11-06 23:17 |只看该作者 |倒序浏览
IE哪里与Firefox不同啊?

[ 本帖最后由 qingmedia 于 2006-11-7 16:31 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2006-11-07 16:28 |只看该作者
找到原因了,原来是MS IE别出心裁,由他上传的文件类型image/jpeg变成了image/pjpeg,弄得我程序不认识。

正好发现有位老兄有同样问题:

http://www.webmasterworld.com/forum88/5931.htm


I have an instance in PHP where I need to grab the extension for a certain mime type. So what I did was just grab all of the mime types and extensions from the mime.types file on my apache server. Well the mime.types file does not have image/pjpeg it has image/jpeg. Why would I need image/pjpeg? Well because when uploading a jpg in IE $_FILES['field_name']['type'] = image/pjpeg.

This is a problem because when I upload a jpg in every other browser besides IE $_FILES['field_name']['type'] = image/jpeg like it supposed to. When I upload a jpg in IE $_FILES['field_name']['type'] = image/pjpeg. So it goes through the mime.types file and doesnt find image/pjeg and doesnt return an extension. I use this extension for many things. Is there anyways to solve this problem without having hack together my code so it accepts image/pjpeg?

Thanks for your help.

You could maintain your own mime-types file and append them to the Apache mime-types in your script (I'm assuming you are reading them into an array or something).

Another option is to simply read the first five characters of the type to see if it is an image

if (substr($_FILES['field_name']['type'], 0, 5) == 'image')) {

and use the existing extension as you said.

论坛徽章:
0
3 [报告]
发表于 2006-11-10 15:50 |只看该作者
还真没有碰到过这个问题
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP