Edit
by Hillina - 9 years ago (2015-05-13)
I need a code to identify the file format of uploaded file
| I need a code to identify the file format of uploaded file. I need only .CSV and JSON files to be uploaded. Otherwise the user should receive a message to correct the file being uploaded. |
Ask clarification
5 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 can be used to generated and check the mime type of files. |
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 uploader |
This class can process image files uploaded via AJAX.
It takes a form submission request to upload a file via AJAX and returns messages to the browser to communicate the result of the file processing.
The class returns error messages in case no file was uploaded, or the file name extension is not in the list of accepted extensions, or the file size was exceeded the allowed limit, or the file already exists in the destination directory.
If the file upload is valid, the class moves it to the destination directory and returns a HTML message to display the uploaded image file in the browser.
| by Ravi Kumar package author 100 - 9 years ago (2015-08-03) Comment
hope this helps you, if you find any difficulty ask here http://www.phpclasses.org/discuss/package/8649/ |
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
hi.
here is what you are looking for. this is a simple file uploader class in php |
HTTP Upload: Handle files uploaded via Web forms
This class can be used to handle files that are uploaded to a server via Web forms.
It supports applying upload filters to restrict the files that are accepted according to configurable criteria like: file name extension, MIME type, file size, width and height in case the files are images.
It also supports handling uploads of multiple files.
It can also add prefixes to the uploaded file names, giving unique names or changing the file name extension for security reasons.
| by Dave Smith 7620 - 9 years ago (2015-05-13) Comment
Here is one that filter file uploads by extension and mime type and has a high user rating. It should do the trick. |