当前位置:Gxlcms > PHP教程 > php上传文件类型判断函数(避免上传漏洞)_PHP教程

php上传文件类型判断函数(避免上传漏洞)_PHP教程

时间:2021-07-01 10:21:17 帮助过:8人阅读

代码如下:
function ($file_name,$pass_type=array('jpg','jpeg','gif','bmp','png')){
$yx_file = $pass_type;
$kzm = substr(strrchr($file_name,"."),1);
$is_img = in_array(strtolower($kzm),$yx_file);
if($is_img){
return true;
}else{
return false;
}
}

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/321984.htmlTechArticle 代码如下:

function ($file_name,$pass_type=array('jpg','jpeg','gif','bmp','png')){ $yx_file = $pass_type; $kzm = substr(strrchr($file_name,"."),1); $is_img = in_arr...

人气教程排行