我正在创建要上传 JSON 文件的上传功能。
我在文件中的 JSON 字符串是:{"name":"John"}
我的 PHP 代码:
$fileType = $_FILES['uploaded']['type'];
if ($fileType != "application/json") {
print 'Not valid JSON file';
}
也试过:
$fileType = $_FILES['uploaded']['type'];
if ($fileType != "text/json") {
print 'Not valid JSON file';
}
当我尝试上传 JSON 文件时,它显示“无效 JSON 文件”错误。
请帮助我这段代码有什么问题。