简体   繁体   中英

Laravel php controller for pdf

I am wondering what to write in my laravel controller to allow me work with a pdf document posted from the front end by an AJAX request. I have found code online to check if an image is uploaded, but anyone have an idea what I need to do if it's a pdf document.

Please see my code below.

public function postUpload() {
    $file = Input::file('image');
    do something here.....     
}

An example from documentation :

public function postUpload(Request $request) {
    if ($request->hasFile('file')) {
        $file = $request->file('file');
        do something here.....
    }
}

To check if file is PDF, use validation rules, like:

$rules  = [
    "file" => "mimes:pdf"
]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM