我制作了一个基于this tutorial的REST服务。我还制作了一个基于this tutorial的REST请求库。 (基本上,switch
上有一堆$_SERVER['REQUEST_METHOD']
。 api也用cURL发出请求。
protected function executePost ($ch)
{
if (!is_string($this->requestBody))
{
$this->buildPostBody();
}
curl_setopt($ch, CURLOPT_POSTFIELDS, $this->requestBody);
curl_setopt($ch, CURLOPT_POST, 1);
$this->doExecute($ch);
}
protected function doExecute (&$curlHandle)
{
$this->setCurlOpts($curlHandle);
$this->responseBody = curl_exec($curlHandle);
$this->responseInfo = curl_getinfo($curlHandle);
curl_close($curlHandle);
}
我有2个简单的HTML表单,一个带有get方法,另一个带有post方法。当我使用其中一个简单的输入文本,工作正常。我没有问题地获取/返回服务中的值。
但我需要从HTML表单发送图像,在我的服务中接收它,然后将其保存在服务器上。
以下是我午餐时对服务进行查询的部分。
print_r($_FILES);
//move_uploaded_file( $_FILES["image1"]["tmp_name"], "Images/" . $_FILES["image1"]["name"] ); when uncommented, This line actually works and save the image in my folder.
include("RestUtils.php");
$request = new RestRequestOperator('http://localhost:8080/REST/RestControler.php/user/1', 'POST', $_FILES);
$request->execute();
在我的服务中,我收到图像信息,即tmp_name和名称。当我尝试使用move_uploaded_file保存图像时(和正确的参数,它不起作用。
我意识到在tmp文件夹中将图像文件保存为“短圈时间”会有某种魔力。当我打电话给我的服务时,图像已被删除?
总结:我想知道是否可以将图像发送到PHP REST API并将它们保存在服务器上。
编辑:我在服务中添加了。if(file_exists($_POST["image1"]["tmp_name"] )){
echo "file EXISTS<br>";
}else echo "NOPE.<br>";
if(is_uploaded_file($_POST["image1"]["tmp_name"] )){
echo "is_uploaded_file TRUE<br>";
}else echo "is_uploaded_file FALSE<br> .";
if(move_uploaded_file( $_POST["image1"]["tmp_name"], "Images/" .$_POST["image1"]["name"] )){
echo "move_uploaded_file SUCCESS ";
}else echo "NOT move_uploaded_file";
输出:文件EXISTS,is_uploaded_file FALSE,NOT move_uploaded_file 这意味着文件实际上仍然存在于服务中,但上传文件返回falses,可能因为我在服务中使用POST数组而不是$ _FILES数组,这在我的服务中是空的.......
答案 0 :(得分:1)
找到它,适用于本地wamp PHP 5.3.4!
public static function processRequest()
{
case 'post':
if(move_uploaded_file($_FILES["uploaded_file"]["tmp_name"] , "Images/" . $_FILES["uploaded_file"]["name"] )){
echo "move_uploaded_file SUCCESS ";
......................................
}
......................................
protected function executePost ($ch)
{
$tmpfile = $_FILES['image1']['tmp_name'];
$filename = basename($_FILES['image1']['name']);
$data = array(
'uploaded_file' => '@' . $tmpfile . ';filename='.$filename,
);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
//no need httpheaders
$this->doExecute($ch);
}
感谢。戴夫
答案 1 :(得分:0)
检查POST的编码类型。在一个表单中,它需要是“multipart / form-data”,所以我假设您的POST REST调用需要具有类似的编码类型才能使文件上传正常工作。