PHP +允许上传JPG文件

时间:2012-09-09 00:21:54

标签: php jpeg

我有一些PHP代码检查用户上传的文件类型:

  $fileType = $_FILES['file']['type'];
  $allowedFileTypes = array('image/jpeg','image/gif','image/png','image/jpg');
  if(!in_array($fileType, $allowedFileTypes)) {echo 'fileTypeNotAllowed'; exit;}

我找到了gif& png文件上传时没有触发回显,但jpg文件触发回声。

下面的

是触发回声的文件示例:

enter image description here

对于我在这里做错了什么建议吗?

THX

1 个答案:

答案 0 :(得分:1)

好吧,你想检查一下他们上传的内容......所以我会使用in_array(strtlower($ fileType,$ allowedFileTypes))in_array。

那应该清除一切。