Validate that a file is a picture in PHP

后端 未结 5 690
孤城傲影
孤城傲影 2020-12-11 02:06

If a file is uploaded to the server, is there a way using PHP, to make sure that it\'s actually a picture and not just a file with a .jpg or .gif extension?

5条回答
  •  一整个雨季
    2020-12-11 02:27

    The most efficient way would be to look at the beginning bytes of the file and test for 'magic number' file specifier. Here is a list of magic numbers.

提交回复
热议问题