Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

php फ़ाइल अपलोड, फ़ाइल अपलोड प्रकार को कैसे प्रतिबंधित करें

फ़ाइल को सत्यापित करने के लिए नीचे केवल माइम प्रकारों का उपयोग करता है, फिर दोनों के आकार की जांच करता है। अधिकांश माइम प्रकारों की सूची के लिए यहां देखें। या गूगल।

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 स्प्लिट कॉमा सेपरेटेड स्ट्रिंग इन टेम्प टेबल

  2. mysql में प्रति समूह पंक्ति संख्या

  3. क्या MySQL में एक स्ट्रिंग निष्पादित करना संभव है?

  4. MySQL में कुल कार्य - सूची (जैसे Oracle में LISTAGG)

  5. स्टैक की रचना - MySQL कंटेनरों के डॉकर परिनियोजन को सरल बनाएं