使用外部网址使用CodeIgniter上传图像

时间:2015-06-02 16:34:57

标签: codeigniter

我需要使用外部网址更改upload_path。 而不是使用下面的脚本

$config['upload_path'] = 'assets/images/shop_images';

我需要将图片上传到不同的网址

$url = 'www.mydomain.com/images/upload';
$config['upload_path'] = $url;

我该怎么做?

1 个答案:

答案 0 :(得分:0)

这不是正确的方法,但您可以尝试以下方法:

$ch = curl_init("http://www.remotepage.com/upload.php"); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CUROPT_POSTFIELDS, array('fileupload' => '@'.$_FILES['theFile'] ['tmp_name'])); 
echo curl_exec($ch); 
  

此外,你需要在远程服务器上有一个php脚本   允许(允许)您将文件上传到远程服务器上的所需位置,因为这可能是一个安全问题。

您可以参考:Remote Server File Upload