PHP图像上传到远程服务器

时间:2014-10-07 06:15:43

标签: php

我想将图片保存到此'http://198.164.241.108/~bss/api/images/upload_images';位置

我尝试了以下

$url = 'http://198.164.241.108/~bss/api/images/upload_images';

$img = $_FILES['image']['tmp_name'];

file_put_contents($img, file_get_contents($url));

使用卷曲

$ch = curl_init();

curl_setopt($ch, CURLOPT_POST, true);

curl_setopt($ch, CURLOPT_POSTFIELDS, array('file' => $_FILES["image"]["tmp_name"]));

curl_setopt($ch, CURLOPT_URL, '`http://198.164.241.108/~bss/api/images/upload_images`');

curl_exec($ch);
curl_close($ch);

但这两个都不起作用

1 个答案:

答案 0 :(得分:0)

据我所知,它是远程服务器,因此您必须连接到该服务器并使用ftp_put()。另外,要使用$_FILES全局变量,您需要先使用一些HTML表单(我希望您在问题中跳过这个明显的部分)。