问答详情
源自:2-4 PHP多文件上传案例实战

Notice: getimagesize(): Read error!

为什么会报这个错误,Notice: getimagesize(): Read error!?

提问者:我可以ping 2017-06-05 11:38

个回答

  • 鸥耶
    2018-04-12 23:53:48

    因为你选择的文件有一些扩展名不是图片类型的

    if ($flag&&in_array($ext,$allowExt)) {
       if (!getimagesize($fileInfo['tmp_name'])) {
           $res['mes'] = $fileInfo['name'].'不是真实图片类型';
       }

    加上in_array($ext,$allowExt)就行了,希望采纳谢谢

  • 白砂糖K
    2017-06-19 11:10:46

    大哥,贴代码呀,