现在为此挣扎了几个小时,所以有时间问一个问题。
我使用 apachehttpclient jar 包将多部分 http 帖子从 android 发送到 php 服务器。
将信息发布到 php 后,我会尝试将图像保存到文件夹中,以便我可以使用它:
<?php
require("fpdf.php");
//Receive the data from android
$name = $_POST['email'];
$data = $_POST['data'];
//Receive the file
$file = $_FILES['image'];
//$newpath = "/";
//file_put_contents($newpath, $file);
if(move_uploaded_file($file, $newpath)) {
echo json_encode(
array(
'result'=>$data,
'msg'=>'Report added successfully.'
)
);
}else {
//something else
};
?>
我已经尝试过move_upload_file
如上所述file_put_contents($newpath, $file);
非常感谢任何帮助。