php - mime 类型/扩展名
您好,如何只允许使用 Word 文档?我的意思是哑剧类型和扩展名?现在我有这些代码检查 .txt 文件的扩展名,我如何更改它以仅接受 word 文档。
if ($uploaded_type !=="text/plain")
和
if($ext !== 'txt')
Hi how do i allow only word documents? And i mean both mime-type and extension? Right now i have these codes checking extensions for .txt files, how do i change it to accept only word docs.
if ($uploaded_type !=="text/plain")
and
if($ext !== 'txt')
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
MS Word 文档为
application/msword
或application/vnd.openxmlformats-officedocument.wordprocessingml.document
mime 类型以及doc
或docx< /代码> 扩展名。
MS Word documents are
application/msword
orapplication/vnd.openxmlformats-officedocument.wordprocessingml.document
mime types anddoc
ordocx
extensions.application/msword
表示.doc
,application/vnd.openxmlformats-officedocument.wordprocessingml.document
表示.docx
。请参阅http://filex.com/faq/office_mime_types.php
application/msword
for.doc
andapplication/vnd.openxmlformats-officedocument.wordprocessingml.document
for.docx
.See http://filext.com/faq/office_mime_types.php
我相信 https://www.php.net/manual/en/ function.finfo-file.php 就是您要找的
I belive https://www.php.net/manual/en/function.finfo-file.php is what you are looking for