sql >> Database >  >> RDS >> Mysql

php-bestandsupload, hoe het bestandsuploadtype te beperken

Het onderstaande gebruikt alleen de mime-typen om een ​​bestand te valideren en controleert vervolgens de grootte van beide. Voor een lijst met de meeste mime-types, zie hier of google.

function allowed_file(){

//Add the allowed mime-type files to an 'allowed' array 
 $allowed = array('application/doc', 'application/pdf', 'another/type');

//Check uploaded file type is in the above array (therefore valid)  
    if(in_array($_FILES['resume']['type'], $allowed) AND in_array($_FILES['reference']['type'], $allowed)){

   //If filetypes allowed types are found, continue to check filesize:

  if($_FILES["resume"]["size"] < 400000 AND $_FILES["reference"]["size"] < 400000 ){

    //if both files are below given size limit, allow upload
    //Begin filemove here....

    }

    }

}


  1. oracle sql:update indien bestaat, anders invoegen

  2. Verschil in MySQL JOIN versus LEFT JOIN

  3. Oracle Data Integrator (ODI)

  4. SQL Server COALESCE() uitgelegd