Php doesn't return the correct mime type

css, javascript, mime, mime-types, php

Solution

I'm not intimately familiar with the workings of fileinfo, but I think this is normal. Text files (and that's what CSS and JS are) provide no clear pointers as to what content it has. They have no header bytes, no defined structure. So all poor `fileinfo` can do is guess - with poor results, as you can see.

I think to successfully verify the contents of .js and .css files, you have to either rely on the extension, or actually parse them with the correct, appropriate parser.

Problem

The `finfo` function is returning crazy mime types. Look the following code, what is going on? ``` <?php $files = array ("css.css", "index.html", "js.js", "png.png"); $info = finfo_open (FILEINFO_MIME_TYPE); for ($i = 0; $i < count ($files); $i ++) { $type = finfo_file ($info, $files[$i]); $files[$i] = $type; } finfo_close ($info); echo $files[0]; // text/x-c -> WHAT ?! echo $files[1]; // text/html -> Ok ! echo $files[2]; // text/x-c++ -> WHAT ?! echo $files[3]; // image/png -> Ok ! ?> ``` Thanks

Original source