exif_imagetype($filename
时间: 2023-12-13 16:05:12 浏览: 125
sc.rar_image upload php
`exif_imagetype($filename)`是一个PHP函数,用于确定给定文件的类型是否为图像,并返回相应的图像类型常量。如果文件是图像,则返回一个整数值,表示图像类型。如果文件不是图像,则返回false。以下是一个例子:
```php
$path_image = "example.jpg";
if (file_exists($path_image) && in_array(exif_imagetype($path_image), array(1, 2, 3, 6))) {
echo "The file is an image.";
} else {
echo "The file is not an image.";
}
```
上面的代码首先检查文件是否存在,然后使用`exif_imagetype()`函数检查文件是否为图像。如果文件是图像,则输出"The file is an image.",否则输出"The file is not an image."。
阅读全文