使用CURL和PHP将文件发送到HTTPS URL

时间:2011-01-20 18:21:47

标签: php curl upload

我正在尝试使用以下代码将文件发送到Https网址:

$file_to_upload = array('file_contents'=>'@'.$target_path); 
$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, $target_url); 
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSER, FALSE);
curl_setopt($ch, CURLOPT_UPLOAD, TRUE);
curl_setopt($ch, CURLOPT_POST,1); 
curl_setopt($ch, CURLOPT_POSTFIELDS, 'file='.$file_to_upload); 
$result = curl_exec($ch); 
$error = curl_error($ch);
curl_close ($ch); 
echo " Server response: ".$result; 
echo " Curl Error: ".$error;

但出于某种原因,我得到了这样的答复:

Curl Error: Failed to open/read local data from file/application

任何建议都会有所帮助!

更新:当我取出CURLOPT_UPLOAD时,我从目标服务器获得响应,但它说有效负载中没有文件

2 个答案:

答案 0 :(得分:6)

你向CURLOPT_POSTFIELDS传递了一个相当奇怪的论点。尝试更像:

<?
$postfields = array('file' => '@' . $target_path);
// ...
curl_setopt($ch, CURLOPT_POSTFIELDS, $postfields);
?>

此外,您可能希望CURLOPT_RETURNTRANSFERtrue,否则$ result将无法获得输出,而是直接发送到缓冲区/浏览器。

来自php.net的

This example也可能有用:

<?php

$ch = curl_init();

$data = array('name' => 'Foo', 'file' => '@/home/user/test.png');

curl_setopt($ch, CURLOPT_URL, 'http://localhost/upload.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

curl_exec($ch);
?>

答案 1 :(得分:2)

除了核心回答之外:

根据how to upload file using curl with php,从php 5.5开始,你需要使用curl_file_create($path)而不是"@$path"

经过测试:它确实有效。

使用@方式无法上传文件。