PHP上传失败

时间:2016-01-28 19:24:58

标签: php file-upload

每当我上传任何文件时,

文件是图片 - image / png.Sorry,上传文件时出错。

我正在使用post方法和enctype =" multipart / form-data"。我的图片文件也很合适。

LocalDateTime d = LocalDateTime.of(2016, Month.JANUARY, 28, 0, 0, 0);
System.out.println(d);
System.out.println(d.minusMonths(1));

1 个答案:

答案 0 :(得分:1)

您的文件无法移动。

  • 检查要移至
  • 的路径
  • 检查目录的权限
  • 检查您对tmp目录
  • 的访问权限

您使用相对路径:$target_dir = "pics/";

将您的路径更改为:

$target_dir = $_SERVER['DOCUMENT_ROOT'] . '/pics/';
相关问题