开发者

Where does the "type" come from in $_FILES?

when开发者_运维百科 you upload files, you can then get the necessary data from $_FILES files contains the list of file inputs, where each one has a field like [type]

for example:

Array
(
    [file1] => Array
        (
            [name] => 'MyFile.txt'
            [type] => text/plain  //where does this come from?
            [tmp_name] => /tmp/php/php1h4j1o
            [error] => UPLOAD_ERR_OK
            [size] => 123
        )
)

does it come from within the file, or the file extension, or somewhere else? how does php get the type? where does the [type] come from and can I trust it as valid?


from the manual:

$_FILES['userfile']['type']

The mime type of the file, if the browser provided this information. An example would be "image/gif". This mime type is however not checked on the PHP side and therefore don't take its value for granted.


The browser attempts to determine the MIME type from the file name, possibly from its extension, then sends this as part of the upload request. Thus, in your example, the file extension .txt would correspond to a MIME type of text/plain. This depends on the browser's implementation though.

Since not only does every browser have its own way of determining the MIME type, but the MIME type can also be intentionally spoofed simply by changing the file extension (among a plethora of other methods), it should not be trusted as always correct.

In fact, you're much better off trying to read the contents of the file or something to validate it.


The type is determined and set by the browser. That means it'll be influenced by browser make, version, installed programs and a plethora of other things. In other words, it's pretty much useless to the server-side application.

(For example, this means that photos uploaded by MSIE will have type => image/pjpeg; while the most common MIME type for JPEGs is image/jpeg)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜