Isn't Using the basename function with $_FILES['userFile']['name'] Redundant?

后端 未结 3 999
野性不改
野性不改 2021-01-01 06:15

According to the POST method uploads section of the PHP Manual, $_FILES[\'userfile\'][\'name\'] is the original name of the file on the client machine. Example

相关标签:
3条回答
  • 2021-01-01 06:35

    using basename() on a full path eg /path/mydir/file.txt, returns you file.txt. Its useful when you have a full path to parse and you just want to get the last part of the path.

    0 讨论(0)
  • 2021-01-01 06:40

    That is, using the basename function with $_FILES['userFile']['name'] seems rather redundant. Isn't it?

    No, first and foremost for security reasons as @Gumbo describes in his answer; secondly, because older versions of IE used to deliver the full path of the file on client side, like

    C:\Documents and Settings\Username\Desktop\Image_cropped.jpg
    

    that behaviour stopped as recently as IE8. From this MSDN blog entry discovered via this SO question:

    File Upload control

    Additionally, the “Include local directory path when uploading files” URLAction has been set to "Disable" for the Internet Zone. This change prevents leakage of potentially sensitive local file-system information to the Internet. For instance, rather than submitting the full path C:\users\ericlaw\documents\secret\image.png, Internet Explorer 8 will now submit only the filename image.png.

    0 讨论(0)
  • 2021-01-01 06:56

    HTTP requests can be forged and thus the filename provided in the header can also be manipulated.

    If you want to ensure that only a filename is given, validate the value or filter it with basename to just get the filename.

    0 讨论(0)
提交回复
热议问题