仅上传txt文件

Ale*_*ndt 2 php upload file text-files

怎么做检查只有.txt文件上传到服务器而不是PHP中的其他文件.

Cro*_*iDB 8

您可以测试文件类型:

if ($_FILES['file']['type'] == 'text/plain') // this file is TXT
Run Code Online (Sandbox Code Playgroud)

此外,您可以使用函数mime_content_type验证文件的mime类型.