getimagesize()方法下的类型(索引2)与图像类型有何不同?

时间:2019-07-24 10:28:00

标签: php image

getimagesize($_FILES['user_profile_photo']['tmp_name']);

函数getimagesize给出以下结果

Array ( [0] => 1024 [1] => 1012 [2] => 3 [3] => width="1024" height="1012" [bits] => 8 [mime] => image/png ) 

其中索引2的值为“ 3”,这与下面的链接中定义的图像类型有何不同。

  

返回一个对应于支持的图像格式的位域   链接到PHP的GD版本。返回以下位,   IMG_BMP | IMG_GIF | IMG_JPG | IMG_PNG | IMG_WBMP | IMG_XPM | IMG_WEBP。

https://www.php.net/manual/en/function.imagetypes.php

0 个答案:

没有答案