从文件数组PHP中获取元素



好吧,这可能是超级容易,但我不知道如何从以下数组中抓取项目:

array(1) {
  ["test"]=>
  array(5) {
    ["name"]=>
    string(8) "204.docx"
    ["type"]=>
    string(71) "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
    ["tmp_name"]=>
    string(14) "/tmp/php57NIMV"
    ["error"]=>
    int(0)
    ["size"]=>
    int(13249)
  }
}

我的目标只是通过使用- echo $_FILES['test']['name']之类的东西来抓取数据,但这不起作用。谢谢你。

有时是因为php.ini配置

max_file_size
post_max_size

不从表单发送值。检查配置

相关内容

  • 没有找到相关文章

最新更新