您需要 登录 才可以下载或查看,没有账号?立即注册
function get_image_info($target, $allowswf = false) { $ext = discuz_upload::fileext($target); $isimage = discuz_upload::is_image_ext($ext); if(!$isimage && ($ext != 'swf' || !$allowswf)) { return false; } elseif(!is_readable($target)) { return false; } elseif($imageinfo = @getimagesize($target)) { list($width, $height, $type) = !empty($imageinfo) ? $imageinfo : array('', '', ''); $size = $width * $height; if($size > 16777216 || $size < 16 ) { return false; } elseif($ext == 'swf' && $type != 4 && $type != 13) { return false; } elseif($isimage && !in_array($type, array(1,2,3,6,13))) { return false; } elseif(!$allowswf && ($ext == 'swf' || $type == 4 || $type == 13)) { return false; } return $imageinfo; } else { return false; } }
使用道具 举报
本版积分规则 发表回复 回帖后跳转到最后一页
14586
53080
67666
|最近更新|Archiver|手机版|小黑屋|DZ插件网! ( 鄂ICP备20010621号-1 )|网站地图 知道创宇云防御
您的IP:18.118.226.167,GMT+8, 2024-11-22 09:04 , Processed in 0.269487 second(s), 79 queries , Gzip On, Redis On.
Powered by Discuz! X5.0 Licensed
© 2001-2024 Discuz! Team.