sql >> データベース >  >> RDS >> Mysql

phpファイルのアップロード、ファイルのアップロードの種類を制限する方法

    以下では、mimeタイプを使用してファイルを検証し、両方のサイズをチェックします。ほとんどのmimeタイプのリストについては、こちら を参照してください。 またはグーグル。

    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. SQLServerでテーブル名の名前を変更する方法

    2. SQLServerデータベースオブジェクトの統計

    3. SQLServerのユーザー定義関数の概要

    4. 日時値(SQL Server)の時間部分を削除するにはどうすればよいですか?