Laravel validator and excel files error

后端 未结 7 1811
后悔当初
后悔当初 2020-12-09 12:31

I have an input field who allaow peoples to upload files. I want that they can upload, word files like doc, and files like csv,xlsx.

When i try with a .doc no proble

7条回答
  •  我在风中等你
    2020-12-09 13:11

    I tried validators provided by laravel but all doesnt seems to work.. That gave me an idea to try to validate using normal php and it works like a cham

    $extensions = array("xls","xlsx","xlm","xla","xlc","xlt","xlw");
    
            $result = array($request->file('import_file')->getClientOriginalExtension());
    
    if(in_array($result[0],$extensions)){
    // Do something when Succeeded 
    }else{
     // Do something when it fails
    }
    

提交回复
热议问题