Upload any type of files #upload
Edit
by Bhaskar Krishnaswamy - 10 years ago (2015-02-25)
Check all the files based on the content
| I want the file to be checked based on magic no or type of content file not file extensions |
- 1 Clarification request
1.
by Manuel Lemos - 10 years ago (2015-03-04) Reply
Do you want a class that handles the actual upload process or just checks files to determine their types from the content data?
Ask clarification
3 Recommendations
This class can check a file to detect its MIME type.
It can take the path of a file as a parameter to determine its type.
The class can check the file name extension and contents using the MIME Magic or FileInfo PHP extension to determine the file MIME type.
The class can return the result stored in class variables that tell if the file is of a correct MIME type or the file MIME type is the same that it was requested to check.
| by wim niemans package author 55 - 2 years ago (2022-04-28) Comment
This freeware class checks any file using mime types. Additional checks on extension possible. |
PHP Multi File Uploader: Validate and process one or more file uploads
This class can validate and process one or more file uploads.
There is one class that can validate and process individual file uploads. It checks if the file name extension and MIME type is one of the allowed, as well if the file size is below the allowed size limit.
The class can create the destination directory if it does not exists and move the uploaded file to that directory.
Another class calls the first to validate and process multiple files being uploaded.
| by MOUSTAFA ELGAMMAL package author 215 - 9 years ago (2016-02-29) Comment
check this. |
This class can Validate and process uploaded files.
It takes an array entry of the $_FILES super-global variable for a given uploaded and file and the path of a directory to copy the uploaded file.
The class also provides a fluent interface to perform several types of validation like limiting the size of the uploaded file, or check if the file name extension or MIME type is one of the allowed, or check if a file already exists with same name in the destination directory.
A validated file is moved to the destination directory eventually renamed if there was already a file with the original name.
| by Pak Xpertz package author 55 - 9 years ago (2015-06-15) Comment
This is a simple uploader class which can check file for mime type as well as extension. If you want to check only its MIME type not extension then go for it |