我正在开发一个应用程序,用于将图像从Android手机上传到网络服务器。 在android方面,我正在使用此处链接中提到的代码 Android file uploader with server-side php
在服务器端,当我尝试接收文件时,它在move_uploaded_file函数中失败。 apache服务器端的php代码是
$ target_path = “上传/”;
$ target_path = $ target_path.basename($ _ FILES [ 'UploadedFile的'] [ '名称']);
if(move_uploaded_file($ _ FILES ['uploadedfile'] ['tmp_name'],$ target_path)){
回音“OK”;
}否则{
回声“失败”; }问题是文件没有被复制到uploads文件夹中。有人可以帮忙吗?
RGDS, 萨班