如何在php 5.2.9中检查文件是图像还是视频类型?

前端之家收集整理的这篇文章主要介绍了如何在php 5.2.9中检查文件是图像还是视频类型?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在PHP 5.2.9版中检查文件是图像还是视频类型
$mime = mime_content_type($file);
if(strstr($mime,"video/")){
    // this code for video
}else if(strstr($mime,"image/")){
    // this code for image
}

应该适用于大多数文件扩展.

原文链接:https://www.f2er.com/php/138527.html

猜你在找的PHP相关文章