To ensure security, before saving an uploaded file, which of the following PHP functions can be used to check if the uploaded file is an expected type?
- file_exists()
- is_uploaded_file()
- file_get_contents()
- mime_content_type()
The correct function to check the uploaded file's type is mime_content_type(). This function retrieves the MIME type of a file, which is crucial for security, as it helps prevent malicious file uploads.
Loading...
Related Quiz
- How do you define a namespace in a PHP script?
- What can be potential issues when working with Regular Expressions in PHP?
- In PHP, $GLOBALS is a superglobal array that contains references to all ______ that are currently defined in the global scope of the script.
- How can you open a file in PHP?
- In PHP forms, you can check if a required field is empty using the empty() function.