This is not the fault of PHP - but the client used to upload the file. Checking the manual shows that the ['type'] value is set by the client.
An alternative is to pass through mime_content_type() or finfo_file() in PHP 5.3 or newer - these use a 'magic' file on your server to determine the file's MIME type.
Note, that even this is not infallible, as the functions search for fingerprints in the files to determine the MIME type (example, I've often had CSS files detected as C# because I had a /* comment at the top of the file).
application/vnd.openxmlformats-officedocument.wordprocessingml.document– jprofitt Dec 7 '11 at 22:19