Detect if a file is an audio file in PHP without mime type – Apache
I am allowing users to upload files to my server, so I need to detect if a file is an audio file. I attempted to check based on the MIME type using mime_content_type($path) but often times it returns application/octet-stream. If…