Просмотр файла ViPTurbo 3.0/files/image_type.php

Размер файла: 274B
<?
function preview($type){  
        
   $imagetypes=array('gif'=>'IMG_GIF','jpg'=>'IMG_JPG','png'=>'IMG_PNG');
   if(imagetypes() & $imagetypes){
     if(array_key_exists($type,$imagetypes)){
       return true;          
     }        
   }
 return false;
}
?>