php 判断文件类型的函数
程序员文章站
2022-03-10 22:01:51
...
1. php 判断文件类型的函数
public function types($file){
$files=array('jpg','png','JPG','PNG','gif','GIF','mp4','MP4','pdf','PDF','doc','docx','xlsx','xls');
for ($i=0;count($files);$i++){
if($file==$files[$i]){
return 1; //有返回1
}else{
if(count($files)==$i){
return 0;//没有返回 0
}
}
}
}
2. 不会的可以问我哟