Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

unggah file php, cara membatasi jenis unggahan file

Di bawah ini hanya menggunakan tipe mime untuk memvalidasi file, lalu memeriksa ukuran keduanya. Untuk daftar sebagian besar tipe pantomim, lihat di sini atau 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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. MySQL dan PHP:UTF-8 dengan karakter Cyrillic

  2. SQL Buddy – Alat Administrasi MySQL Berbasis Web

  3. Pengumuman MySQL 5.6 EOL

  4. Mencapai Failover &Failback MySQL di Google Cloud Platform (GCP)

  5. Bekerja dengan Kursor SQL