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
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.