curl - 发布请求从链接发送文件

时间:2012-09-22 19:40:54

标签: php curl

是否可以在curl post request中发送文件链接而不是内容?

$file_to_upload = array('file_contents'=>'@'.$file_name_with_full_path);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$target_url);
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $file_to_upload);
$result=curl_exec ($ch);
curl_close ($ch);
echo $result; 

我可以放一个链接而不是$ file_name_with_full_path吗?

1 个答案:

答案 0 :(得分:0)

您可以使用临时文件。 示例:http://php.net/manual/en/function.tmpfile.php#69419