我正在尝试使用 cURL 和 PUT 方法上传文件,我已经有一个使用 fsockopen 工作的函数,但我想将它迁移到 cURL。
使用 fsockopen 的函数接收文件内容、文件名和 auth 凭据并发出请求:
function put_file($content, $filename, $username, $pass)
{
$header = "PUT /upload?username=".urlencode(user_name)."&passwd=".urlencode($pass)."&filename=".urlencode($file_name)." HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($content) . "\r\n\r\n";
$fp = @fsockopen("ssl://URL", 443, $errno, $errstr, 30);
if(!$fp)
{
return "ERROR";
}
else
{
fputs ($fp, $header.$content);
while (!feof($fp))
{
$res .= fread ($fp, 1024);
}
fclose($fp);
}
}
我一直在尝试将该功能迁移到 cURL,但我不知道如何在不需要在我的文件系统上有一个“真实”文件的情况下做到这一点。我知道的唯一 cURL 选项是 CURLOPT_INFILE 和 CURLOPT_INFILESIZE,但我没有该文件(并且不想在打开它后将其写入磁盘)。
我需要的是发送文件的“内容”,就像 fsockopen 版本一样。如何使用 cURL 实现这一点?
提前谢谢你。