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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *